ALSA: hda/sigmatel - Remove PCI id check in find_mute_led_cfg()

The PCI vendor ID check in find_mute_led_cfg() is now superfluous
because the function is called in the fixup table entries of HP
machines.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
Takashi Iwai 2013-01-15 11:12:18 +01:00
parent 372f8c7502
commit 89bb3e74b1

View file

@ -6219,9 +6219,7 @@ static int find_mute_led_cfg(struct hda_codec *codec, int default_polarity)
return 1;
}
if ((codec->subsystem_id >> 16) == PCI_VENDOR_ID_HP) {
while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING,
NULL, dev))) {
while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, NULL, dev))) {
if (sscanf(dev->name, "HP_Mute_LED_%d_%x",
&spec->gpio_led_polarity,
&spec->gpio_led) == 2) {
@ -6266,7 +6264,6 @@ static int find_mute_led_cfg(struct hda_codec *codec, int default_polarity)
spec->gpio_led_polarity = default_polarity;
return 1;
}
}
return 0;
}