Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932672AbbHDIwt (ORCPT ); Tue, 4 Aug 2015 04:52:49 -0400 Received: from terminus.zytor.com ([198.137.202.10]:49968 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932655AbbHDIwp (ORCPT ); Tue, 4 Aug 2015 04:52:45 -0400 Date: Tue, 4 Aug 2015 01:52:12 -0700 From: tip-bot for Vaishali Thakkar Message-ID: Cc: tglx@linutronix.de, hpa@zytor.com, peterz@infradead.org, vthakkar1994@gmail.com, linux-kernel@vger.kernel.org, torvalds@linux-foundation.org, acme@kernel.org, mingo@kernel.org Reply-To: mingo@kernel.org, torvalds@linux-foundation.org, acme@kernel.org, linux-kernel@vger.kernel.org, vthakkar1994@gmail.com, hpa@zytor.com, peterz@infradead.org, tglx@linutronix.de In-Reply-To: <20150717052759.GA6265@vaishali-Ideapad-Z570> References: <20150717052759.GA6265@vaishali-Ideapad-Z570> To: linux-tip-commits@vger.kernel.org Subject: [tip:perf/core] perf/x86/intel/uncore: Remove use of macro DEFINE_PCI_DEVICE_TABLE() Git-Commit-ID: 070a7cdfa4a0a799235d79e58e7b0b2d94dff190 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 Content-Length: 2183 Lines: 54 Commit-ID: 070a7cdfa4a0a799235d79e58e7b0b2d94dff190 Gitweb: http://git.kernel.org/tip/070a7cdfa4a0a799235d79e58e7b0b2d94dff190 Author: Vaishali Thakkar AuthorDate: Fri, 17 Jul 2015 10:57:59 +0530 Committer: Ingo Molnar CommitDate: Tue, 4 Aug 2015 10:16:52 +0200 perf/x86/intel/uncore: Remove use of 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 Signed-off-by: Peter Zijlstra (Intel) Cc: Arnaldo Carvalho de Melo Cc: H. Peter Anvin Cc: Linus Torvalds Cc: Peter Zijlstra Cc: Thomas Gleixner Link: http://lkml.kernel.org/r/20150717052759.GA6265@vaishali-Ideapad-Z570 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 6d6e85d..76a3feb 100644 --- a/arch/x86/kernel/cpu/perf_event_intel_uncore_snbep.c +++ b/arch/x86/kernel/cpu/perf_event_intel_uncore_snbep.c @@ -2215,7 +2215,7 @@ static struct intel_uncore_type *hswep_pci_uncores[] = { NULL, }; -static DEFINE_PCI_DEVICE_TABLE(hswep_uncore_pci_ids) = { +static const struct pci_device_id hswep_uncore_pci_ids[] = { { /* Home Agent 0 */ PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x2f30), .driver_data = UNCORE_PCI_DEV_DATA(HSWEP_PCI_UNCORE_HA, 0), -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/