aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci/ice1712/juli.c
diff options
context:
space:
mode:
Diffstat (limited to 'sound/pci/ice1712/juli.c')
-rw-r--r--sound/pci/ice1712/juli.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/sound/pci/ice1712/juli.c b/sound/pci/ice1712/juli.c
index 5176b41ea9d3..a7e779b7142a 100644
--- a/sound/pci/ice1712/juli.c
+++ b/sound/pci/ice1712/juli.c
@@ -207,19 +207,19 @@ static int __devinit juli_init(struct snd_ice1712 *ice)
207 */ 207 */
208 208
209static unsigned char juli_eeprom[] __devinitdata = { 209static unsigned char juli_eeprom[] __devinitdata = {
210 0x20, /* SYSCONF: clock 512, mpu401, 1xADC, 1xDACs */ 210 [ICE_EEP2_SYSCONF] = 0x20, /* clock 512, mpu401, 1xADC, 1xDACs */
211 0x80, /* ACLINK: I2S */ 211 [ICE_EEP2_ACLINK] = 0x80, /* I2S */
212 0xf8, /* I2S: vol, 96k, 24bit, 192k */ 212 [ICE_EEP2_I2S] = 0xf8, /* vol, 96k, 24bit, 192k */
213 0xc3, /* SPDIF: out-en, out-int, spdif-in */ 213 [ICE_EEP2_SPDIF] = 0xc3, /* out-en, out-int, spdif-in */
214 0x9f, /* GPIO_DIR */ 214 [ICE_EEP2_GPIO_DIR] = 0x9f,
215 0xff, /* GPIO_DIR1 */ 215 [ICE_EEP2_GPIO_DIR1] = 0xff,
216 0x7f, /* GPIO_DIR2 */ 216 [ICE_EEP2_GPIO_DIR2] = 0x7f,
217 0x9f, /* GPIO_MASK */ 217 [ICE_EEP2_GPIO_MASK] = 0x9f,
218 0xff, /* GPIO_MASK1 */ 218 [ICE_EEP2_GPIO_MASK1] = 0xff,
219 0x7f, /* GPIO_MASK2 */ 219 [ICE_EEP2_GPIO_MASK2] = 0x7f,
220 0x16, /* GPIO_STATE: internal clock, multiple 1x, 48kHz */ 220 [ICE_EEP2_GPIO_STATE] = 0x16, /* internal clock, multiple 1x, 48kHz */
221 0x80, /* GPIO_STATE1: mute */ 221 [ICE_EEP2_GPIO_STATE1] = 0x80, /* mute */
222 0x00, /* GPIO_STATE2 */ 222 [ICE_EEP2_GPIO_STATE2] = 0x00,
223}; 223};
224 224
225/* entry point */ 225/* entry point */