linux-fbdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/25] Replace DEFINE_PCI_DEVICE_TABLE macro use
@ 2014-07-18 15:26 Benoit Taine
  2014-07-18 16:22 ` John W. Linville
                   ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: Benoit Taine @ 2014-07-18 15:26 UTC (permalink / raw)
  To: linux-pci
  Cc: linux-mips, linux-fbdev, linux-mmc, dri-devel, linux-kernel,
	benoit.taine, ath5k-devel, linux-acenic, linux-scsi, linux-rdma,
	ath10k, linux-hippi, industrypack-devel, xen-devel,
	MPT-FusionLinux.pdl, virtualization, ath9k-devel, wil6210,
	linux-pcmcia, linux-can, platform-driver-x86, netdev,
	linux-wireless, users, e1000-devel, linux-crypto, devel

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>

I have 103 patches ready, and will only send a few for you to judge if
it is useful enough, and to prevent from spamming too much.

Thanks.

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2014-07-21  4:18 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-18 15:26 [PATCH 0/25] Replace DEFINE_PCI_DEVICE_TABLE macro use Benoit Taine
2014-07-18 16:22 ` John W. Linville
2014-07-18 16:43   ` Greg KH
2014-07-18 16:54     ` James Bottomley
2014-07-18 18:17       ` Greg KH
2014-07-18 18:50         ` James Bottomley
2014-07-18 18:05     ` Joe Perches
2014-07-18 16:28 ` James Bottomley
2014-07-21  4:18 ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).