aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci/ice1712/prodigy192.c
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2007-01-29 09:25:40 -0500
committerJaroslav Kysela <perex@suse.cz>2007-02-09 03:03:15 -0500
commit189bc171434e84797f586130fca8eb4df3746e3f (patch)
treea7acde978684639db7ddbb8ccda20e6f0f96d2e0 /sound/pci/ice1712/prodigy192.c
parentbcb4d788f573805c74ac4f39a622b30955b2f916 (diff)
[ALSA] ice1712 - Reorganize existing eeprom data
Reorganize EEPROM data (in C99 style). Signed-of-by: Philipp Matthias Hahn <pmhahn@pmhahn.de> Signed-off-by: Takashi Iwai <tiwai@suse.de> Signed-off-by: Jaroslav Kysela <perex@suse.cz>
Diffstat (limited to 'sound/pci/ice1712/prodigy192.c')
-rw-r--r--sound/pci/ice1712/prodigy192.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/sound/pci/ice1712/prodigy192.c b/sound/pci/ice1712/prodigy192.c
index 41b2605daa3a..b9b63179dbec 100644
--- a/sound/pci/ice1712/prodigy192.c
+++ b/sound/pci/ice1712/prodigy192.c
@@ -507,19 +507,19 @@ static int __devinit prodigy192_init(struct snd_ice1712 *ice)
507 */ 507 */
508 508
509static unsigned char prodigy71_eeprom[] __devinitdata = { 509static unsigned char prodigy71_eeprom[] __devinitdata = {
510 0x2b, /* SYSCONF: clock 512, mpu401, spdif-in/ADC, 4DACs */ 510 [ICE_EEP2_SYSCONF] = 0x2b, /* clock 512, mpu401, spdif-in/ADC, 4DACs */
511 0x80, /* ACLINK: I2S */ 511 [ICE_EEP2_ACLINK] = 0x80, /* I2S */
512 0xf8, /* I2S: vol, 96k, 24bit, 192k */ 512 [ICE_EEP2_I2S] = 0xf8, /* vol, 96k, 24bit, 192k */
513 0xc3, /* SPDIF: out-en, out-int, spdif-in */ 513 [ICE_EEP2_SPDIF] = 0xc3, /* out-en, out-int, spdif-in */
514 0xff, /* GPIO_DIR */ 514 [ICE_EEP2_GPIO_DIR] = 0xff,
515 0xff, /* GPIO_DIR1 */ 515 [ICE_EEP2_GPIO_DIR1] = 0xff,
516 0xbf, /* GPIO_DIR2 */ 516 [ICE_EEP2_GPIO_DIR2] = 0xbf,
517 0x00, /* GPIO_MASK */ 517 [ICE_EEP2_GPIO_MASK] = 0x00,
518 0x00, /* GPIO_MASK1 */ 518 [ICE_EEP2_GPIO_MASK1] = 0x00,
519 0x00, /* GPIO_MASK2 */ 519 [ICE_EEP2_GPIO_MASK2] = 0x00,
520 0x00, /* GPIO_STATE */ 520 [ICE_EEP2_GPIO_STATE] = 0x00,
521 0x00, /* GPIO_STATE1 */ 521 [ICE_EEP2_GPIO_STATE1] = 0x00,
522 0x00, /* GPIO_STATE2 */ 522 [ICE_EEP2_GPIO_STATE2] = 0x00,
523}; 523};
524 524
525 525