[alsa-devel] [PATCH] hda_intel: Fix multiple device support by incrementing device count
Fixes multiple device support by incrementing the static device counter at the end of the azx_probe() call. Without this, subsequent probes would always use the index specified for the first card.
Signed-off-by: Andrew Paprocki andrew@ishiboo.com
diff -r acdc98363786 -r bde9dbdbd2ba pci/hda/hda_intel.c --- a/pci/hda/hda_intel.c Fri Jan 11 18:15:26 2008 +0100 +++ b/pci/hda/hda_intel.c Sat Jan 12 18:59:58 2008 -0500 @@ -1933,6 +1933,7 @@ static int __devinit azx_probe(struct pc chip->running = 1; power_down_all_codecs(chip);
+ dev++; return err; }
At Sat, 12 Jan 2008 19:05:29 -0400, Andrew Paprocki wrote:
Fixes multiple device support by incrementing the static device counter at the end of the azx_probe() call. Without this, subsequent probes would always use the index specified for the first card.
Signed-off-by: Andrew Paprocki andrew@ishiboo.com
Oops, a stupid bug. Applied to HG tree. Thanks!
Takashi
participants (2)
-
Andrew Paprocki
-
Takashi Iwai