Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound:
ALSA: atmel/ac97c: using software reset instead hardware reset if not available

+4
+4
sound/atmel/ac97c.c
··· 899 899 /* AC97 v2.2 specifications says minimum 1 us. */ 900 900 udelay(2); 901 901 gpio_set_value(chip->reset_pin, 1); 902 + } else { 903 + ac97c_writel(chip, MR, AC97C_MR_WRST | AC97C_MR_ENA); 904 + udelay(2); 905 + ac97c_writel(chip, MR, AC97C_MR_ENA); 902 906 } 903 907 } 904 908