Commit ee5006c9 authored by Jaroslav Kysela's avatar Jaroslav Kysela Committed by Linus Torvalds

ALSA CVS update - Jaroslav Kysela <perex@suse.cz>

ICE1712 driver
From: Arjan van de Ven <arjanv@redhat.com>

ice1712.c: move 2 same structs to the top of the function; gcc won't share
the stackslots anyway
parent 69d6e852
...@@ -1511,10 +1511,10 @@ static void snd_ice1712_mixer_free_ac97(ac97_t *ac97) ...@@ -1511,10 +1511,10 @@ static void snd_ice1712_mixer_free_ac97(ac97_t *ac97)
static int __devinit snd_ice1712_ac97_mixer(ice1712_t * ice) static int __devinit snd_ice1712_ac97_mixer(ice1712_t * ice)
{ {
int err; int err;
ac97_t ac97;
ac97_bus_t bus, *pbus;
if (ice_has_con_ac97(ice)) { if (ice_has_con_ac97(ice)) {
ac97_bus_t bus, *pbus;
ac97_t ac97;
memset(&bus, 0, sizeof(bus)); memset(&bus, 0, sizeof(bus));
bus.write = snd_ice1712_ac97_write; bus.write = snd_ice1712_ac97_write;
bus.read = snd_ice1712_ac97_read; bus.read = snd_ice1712_ac97_read;
...@@ -1533,8 +1533,6 @@ static int __devinit snd_ice1712_ac97_mixer(ice1712_t * ice) ...@@ -1533,8 +1533,6 @@ static int __devinit snd_ice1712_ac97_mixer(ice1712_t * ice)
} }
if (! (ice->eeprom.data[ICE_EEP1_ACLINK] & ICE1712_CFG_PRO_I2S)) { if (! (ice->eeprom.data[ICE_EEP1_ACLINK] & ICE1712_CFG_PRO_I2S)) {
ac97_bus_t bus, *pbus;
ac97_t ac97;
memset(&bus, 0, sizeof(bus)); memset(&bus, 0, sizeof(bus));
bus.write = snd_ice1712_pro_ac97_write; bus.write = snd_ice1712_pro_ac97_write;
bus.read = snd_ice1712_pro_ac97_read; bus.read = snd_ice1712_pro_ac97_read;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment