From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932923AbbJAIz7 (ORCPT ); Thu, 1 Oct 2015 04:55:59 -0400 Received: from terminus.zytor.com ([198.137.202.10]:45796 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752766AbbJAIzt (ORCPT ); Thu, 1 Oct 2015 04:55:49 -0400 Date: Thu, 1 Oct 2015 01:55:02 -0700 From: tip-bot for Vaishali Thakkar Message-ID: Cc: vthakkar1994@gmail.com, mingo@kernel.org, tglx@linutronix.de, a.p.zijlstra@chello.nl, acme@kernel.org, torvalds@linux-foundation.org, linux-kernel@vger.kernel.org, hpa@zytor.com, peterz@infradead.org, efault@gmx.de Reply-To: peterz@infradead.org, hpa@zytor.com, efault@gmx.de, linux-kernel@vger.kernel.org, acme@kernel.org, torvalds@linux-foundation.org, a.p.zijlstra@chello.nl, mingo@kernel.org, tglx@linutronix.de, vthakkar1994@gmail.com In-Reply-To: <20151001085201.GA16939@localhost> References: <20151001085201.GA16939@localhost> To: linux-tip-commits@vger.kernel.org Subject: [tip:perf/core] perf/x86/intel/uncore: Do not use macro DEFINE_PCI_DEVICE_TABLE() Git-Commit-ID: c2365b9388e8ec19305e3f449c1826e7493d156d X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: c2365b9388e8ec19305e3f449c1826e7493d156d Gitweb: http://git.kernel.org/tip/c2365b9388e8ec19305e3f449c1826e7493d156d Author: Vaishali Thakkar AuthorDate: Thu, 1 Oct 2015 14:22:02 +0530 Committer: Ingo Molnar 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 Cc: Arnaldo Carvalho de Melo Cc: Linus Torvalds Cc: Mike Galbraith Cc: Peter Zijlstra Cc: Peter Zijlstra Cc: Thomas Gleixner Cc: linux-kernel@vger.kernel.org Link: http://lkml.kernel.org/r/20151001085201.GA16939@localhost Signed-off-by: Ingo Molnar --- 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),