Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ALSA: Replace DEFINE_PCI_DEVICE_TABLE macro use

We should prefer `const struct pci_device_id` over
`DEFINE_PCI_DEVICE_TABLE` to meet kernel coding style guidelines.
This issue was reported by checkpatch.

A simplified version of the semantic patch that makes this change is as
follows (http://coccinelle.lip6.fr/):

// <smpl>

@@
identifier i;
declarer name DEFINE_PCI_DEVICE_TABLE;
initializer z;
@@

- DEFINE_PCI_DEVICE_TABLE(i)
+ const struct pci_device_id i[]
= z;

// </smpl>

It has been tested by compilation.

Signed-off-by: Benoit Taine <benoit.taine@lip6.fr>
Signed-off-by: Takashi Iwai <tiwai@suse.de>

authored by

Benoit Taine and committed by
Takashi Iwai
6f51f6cf 13fd08a3

+1 -1
+1 -1
sound/pci/hda/hda_intel.c
··· 1724 1724 } 1725 1725 1726 1726 /* PCI IDs */ 1727 - static DEFINE_PCI_DEVICE_TABLE(azx_ids) = { 1727 + static const struct pci_device_id azx_ids[] = { 1728 1728 /* CPT */ 1729 1729 { PCI_DEVICE(0x8086, 0x1c20), 1730 1730 .driver_data = AZX_DRIVER_PCH | AZX_DCAPS_INTEL_PCH_NOPM },