diff options
author | Jaroslav Kysela <perex@suse.cz> | 2005-05-30 08:48:16 -0400 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2005-06-22 06:27:34 -0400 |
commit | 69ad07cf98d0ef65cac67bac2ea4381bb499bea8 (patch) | |
tree | 692fc1d61dd23ef6a7dcf3cb1d28d57c7b336d2d /include/sound | |
parent | 745cac56ba6b0222d97a4bf0e347149f20518bf1 (diff) |
[ALSA] AC97 - renamed vendor/device to subvendor/subdevice where appropriate
AC97 Codec,ATIIXP driver,VIA82xx driver
To avoid confusion, the structure members vendor/device were renamed
to subvendor/subdevice, because we compare them with PCI subsystem vendor
and subsystem device.
Signed-off-by: Jaroslav Kysela <perex@suse.cz>
Diffstat (limited to 'include/sound')
-rw-r--r-- | include/sound/ac97_codec.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sound/ac97_codec.h b/include/sound/ac97_codec.h index 996eeab683b0..1309c12b8f71 100644 --- a/include/sound/ac97_codec.h +++ b/include/sound/ac97_codec.h | |||
@@ -573,8 +573,8 @@ enum { | |||
573 | }; | 573 | }; |
574 | 574 | ||
575 | struct ac97_quirk { | 575 | struct ac97_quirk { |
576 | unsigned short vendor; /* PCI vendor id */ | 576 | unsigned short subvendor; /* PCI subsystem vendor id */ |
577 | unsigned short device; /* PCI device id */ | 577 | unsigned short subdevice; /* PCI sybsystem device id */ |
578 | unsigned short mask; /* device id bit mask, 0 = accept all */ | 578 | unsigned short mask; /* device id bit mask, 0 = accept all */ |
579 | unsigned int codec_id; /* codec id (if any), 0 = accept all */ | 579 | unsigned int codec_id; /* codec id (if any), 0 = accept all */ |
580 | const char *name; /* name shown as info */ | 580 | const char *name; /* name shown as info */ |