diff options
author | Grant Coady <gcoady@gmail.com> | 2005-09-28 20:40:52 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2005-10-28 18:36:59 -0400 |
commit | 4153812fc10ea91cb1a7b6ea4f4337dd211c1ef7 (patch) | |
tree | d56a554c172635f2d9e2fff7b8f30f8daa84d5ac /sound/oss/ymfpci.c | |
parent | b135c4815051bad6b2472e4ad0152f205918d2c5 (diff) |
[PATCH] pci_ids: macros: replace partial with whole symbols
pci_ids cleanup: replace symbols built by macros with whole symbols to
aid grep searches.
Signed-off-by: Grant Coady <gcoady@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/video/cirrusfb.c | 24 ++++++++++++------------
sound/oss/ymfpci.c | 17 +++++++++--------
sound/pci/bt87x.c | 11 +++++++----
3 files changed, 28 insertions(+), 24 deletions(-)
Diffstat (limited to 'sound/oss/ymfpci.c')
-rw-r--r-- | sound/oss/ymfpci.c | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/sound/oss/ymfpci.c b/sound/oss/ymfpci.c index 05203ad523f7..8dae59bd05a2 100644 --- a/sound/oss/ymfpci.c +++ b/sound/oss/ymfpci.c | |||
@@ -107,14 +107,15 @@ static LIST_HEAD(ymf_devs); | |||
107 | */ | 107 | */ |
108 | 108 | ||
109 | static struct pci_device_id ymf_id_tbl[] = { | 109 | static struct pci_device_id ymf_id_tbl[] = { |
110 | #define DEV(v, d, data) \ | 110 | #define DEV(dev, data) \ |
111 | { PCI_VENDOR_ID_##v, PCI_DEVICE_ID_##v##_##d, PCI_ANY_ID, PCI_ANY_ID, 0, 0, (unsigned long)data } | 111 | { PCI_VENDOR_ID_YAMAHA, dev, PCI_ANY_ID, PCI_ANY_ID, 0, 0, \ |
112 | DEV (YAMAHA, 724, "YMF724"), | 112 | (unsigned long)data } |
113 | DEV (YAMAHA, 724F, "YMF724F"), | 113 | DEV (PCI_DEVICE_ID_YAMAHA_724, "YMF724"), |
114 | DEV (YAMAHA, 740, "YMF740"), | 114 | DEV (PCI_DEVICE_ID_YAMAHA_724F, "YMF724F"), |
115 | DEV (YAMAHA, 740C, "YMF740C"), | 115 | DEV (PCI_DEVICE_ID_YAMAHA_740, "YMF740"), |
116 | DEV (YAMAHA, 744, "YMF744"), | 116 | DEV (PCI_DEVICE_ID_YAMAHA_740C, "YMF740C"), |
117 | DEV (YAMAHA, 754, "YMF754"), | 117 | DEV (PCI_DEVICE_ID_YAMAHA_744, "YMF744"), |
118 | DEV (PCI_DEVICE_ID_YAMAHA_754, "YMF754"), | ||
118 | #undef DEV | 119 | #undef DEV |
119 | { } | 120 | { } |
120 | }; | 121 | }; |