[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <tip-c2365b9388e8ec19305e3f449c1826e7493d156d@git.kernel.org>
Date: Thu, 1 Oct 2015 01:55:02 -0700
From: tip-bot for Vaishali Thakkar <tipbot@...or.com>
To: linux-tip-commits@...r.kernel.org
Cc: vthakkar1994@...il.com, mingo@...nel.org, tglx@...utronix.de,
a.p.zijlstra@...llo.nl, acme@...nel.org,
torvalds@...ux-foundation.org, linux-kernel@...r.kernel.org,
hpa@...or.com, peterz@...radead.org, efault@....de
Subject: [tip:perf/core] perf/x86/intel/uncore:
Do not use macro DEFINE_PCI_DEVICE_TABLE()
Commit-ID: c2365b9388e8ec19305e3f449c1826e7493d156d
Gitweb: http://git.kernel.org/tip/c2365b9388e8ec19305e3f449c1826e7493d156d
Author: Vaishali Thakkar <vthakkar1994@...il.com>
AuthorDate: Thu, 1 Oct 2015 14:22:02 +0530
Committer: Ingo Molnar <mingo@...nel.org>
CommitDate: Thu, 1 Oct 2015 10:53:03 +0200
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@...il.com>
Cc: Arnaldo Carvalho de Melo <acme@...nel.org>
Cc: Linus Torvalds <torvalds@...ux-foundation.org>
Cc: Mike Galbraith <efault@....de>
Cc: Peter Zijlstra <a.p.zijlstra@...llo.nl>
Cc: Peter Zijlstra <peterz@...radead.org>
Cc: Thomas Gleixner <tglx@...utronix.de>
Cc: linux-kernel@...r.kernel.org
Link: http://lkml.kernel.org/r/20151001085201.GA16939@localhost
Signed-off-by: Ingo Molnar <mingo@...nel.org>
---
arch/x86/kernel/cpu/perf_event_intel_uncore_snbep.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/x86/kernel/cpu/perf_event_intel_uncore_snbep.c b/arch/x86/kernel/cpu/perf_event_intel_uncore_snbep.c
index 694510a8..8cbb3f3 100644
--- a/arch/x86/kernel/cpu/perf_event_intel_uncore_snbep.c
+++ b/arch/x86/kernel/cpu/perf_event_intel_uncore_snbep.c
@@ -2444,7 +2444,7 @@ static struct intel_uncore_type *bdx_pci_uncores[] = {
NULL,
};
-static DEFINE_PCI_DEVICE_TABLE(bdx_uncore_pci_ids) = {
+static const struct pci_device_id bdx_uncore_pci_ids[] = {
{ /* Home Agent 0 */
PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x6f30),
.driver_data = UNCORE_PCI_DEV_DATA(BDX_PCI_UNCORE_HA, 0),
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists