diff options
author | Jon Mason <jdmason@us.ibm.com> | 2006-01-13 13:17:43 +0100 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2006-01-22 16:24:19 +0100 |
commit | ec6c8c3b2588261669c1b101338ab4fe43b1b9c0 (patch) | |
tree | 3f26869b0f6827e3f8d677073cecb4bf228ac6ca /sound/pci/ali5451 | |
parent | e3183ec9cd98db7800d078768b1c9edc2fd0425f (diff) | |
download | linux-3.10-ec6c8c3b2588261669c1b101338ab4fe43b1b9c0.tar.gz linux-3.10-ec6c8c3b2588261669c1b101338ab4fe43b1b9c0.tar.bz2 linux-3.10-ec6c8c3b2588261669c1b101338ab4fe43b1b9c0.zip |
[ALSA] ali5451: Add PCI_DEVICE and #defines in snd_ali_ids
Modules: ALI5451 driver
This patch uses #defines for the Vendor ID and Device ID and uses the
new PCI_DEVICE macro.
Signed-off-by: Jon Mason <jdmason@us.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/ali5451')
-rw-r--r-- | sound/pci/ali5451/ali5451.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/ali5451/ali5451.c b/sound/pci/ali5451/ali5451.c index bc4d1ef08ef..e264136e8fb 100644 --- a/sound/pci/ali5451/ali5451.c +++ b/sound/pci/ali5451/ali5451.c @@ -279,7 +279,7 @@ struct snd_ali { }; static struct pci_device_id snd_ali_ids[] = { - {0x10b9, 0x5451, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0, }, + {PCI_DEVICE(PCI_VENDOR_ID_AL, PCI_DEVICE_ID_AL_M5451), 0, 0, 0}, {0, } }; MODULE_DEVICE_TABLE(pci, snd_ali_ids); |