]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
perf/x86/intel/uncore: Do not use macro DEFINE_PCI_DEVICE_TABLE()
authorVaishali Thakkar <vthakkar1994@gmail.com>
Thu, 1 Oct 2015 08:52:02 +0000 (14:22 +0530)
committerIngo Molnar <mingo@kernel.org>
Thu, 1 Oct 2015 08:53:03 +0000 (10:53 +0200)
commitc2365b9388e8ec19305e3f449c1826e7493d156d
treee14c2b94ba869cf73efe97a3413f314705d98f96
parent4bc6a58fcbf63dc3da9870c41eeab1bd030bc585
perf/x86/intel/uncore: Do not use macro DEFINE_PCI_DEVICE_TABLE()

The DEFINE_PCI_DEVICE_TABLE() macro is deprecated. Use
'struct pci_device_id' instead of DEFINE_PCI_DEVICE_TABLE(),
with the goal of getting rid of this macro completely.

This Coccinelle semantic patch performs this transformation:

@@
identifier a;
declarer name DEFINE_PCI_DEVICE_TABLE;
initializer i;
@@
- DEFINE_PCI_DEVICE_TABLE(a)
+ const struct pci_device_id a[] = i;

Signed-off-by: Vaishali Thakkar <vthakkar1994@gmail.com>
Cc: Arnaldo Carvalho de Melo <acme@kernel.org>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: linux-kernel@vger.kernel.org
Link: http://lkml.kernel.org/r/20151001085201.GA16939@localhost
Signed-off-by: Ingo Molnar <mingo@kernel.org>
arch/x86/kernel/cpu/perf_event_intel_uncore_snbep.c