From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755945AbbGFQg0 (ORCPT ); Mon, 6 Jul 2015 12:36:26 -0400 Received: from terminus.zytor.com ([198.137.202.10]:50444 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753530AbbGFQgV (ORCPT ); Mon, 6 Jul 2015 12:36:21 -0400 Date: Mon, 6 Jul 2015 09:35:51 -0700 From: tip-bot for Andy Shevchenko Message-ID: Cc: mahesh.kumar.p@intel.com, torvalds@linux-foundation.org, mingo@kernel.org, tglx@linutronix.de, aubrey.li@linux.intel.com, peterz@infradead.org, rafael.j.wysocki@intel.com, hpa@zytor.com, andriy.shevchenko@linux.intel.com, linux-kernel@vger.kernel.org Reply-To: rafael.j.wysocki@intel.com, aubrey.li@linux.intel.com, peterz@infradead.org, tglx@linutronix.de, mingo@kernel.org, mahesh.kumar.p@intel.com, torvalds@linux-foundation.org, linux-kernel@vger.kernel.org, andriy.shevchenko@linux.intel.com, hpa@zytor.com In-Reply-To: <1436192944-56496-6-git-send-email-andriy.shevchenko@linux.intel.com> References: <1436192944-56496-6-git-send-email-andriy.shevchenko@linux.intel.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:x86/platform] x86/platform/intel/pmc_atom: Move the PMC-Atom code to arch/x86/platform/atom Git-Commit-ID: d3889467c221b5c40cd6499b805eacce4c739cd1 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: d3889467c221b5c40cd6499b805eacce4c739cd1 Gitweb: http://git.kernel.org/tip/d3889467c221b5c40cd6499b805eacce4c739cd1 Author: Andy Shevchenko AuthorDate: Mon, 6 Jul 2015 17:29:04 +0300 Committer: Ingo Molnar CommitDate: Mon, 6 Jul 2015 17:51:00 +0200 x86/platform/intel/pmc_atom: Move the PMC-Atom code to arch/x86/platform/atom This is specific driver for Intel Atom SoCs like BayTrail and Braswell. Let's move it to dedicated folder and alleviate a arch/x86/kernel burden. There is no functional change. Signed-off-by: Andy Shevchenko Cc: Aubrey Li Cc: Kumar P Mahesh Cc: Linus Torvalds Cc: Peter Zijlstra Cc: Rafael J . Wysocki Cc: Thomas Gleixner Link: http://lkml.kernel.org/r/1436192944-56496-6-git-send-email-andriy.shevchenko@linux.intel.com Signed-off-by: Ingo Molnar --- arch/x86/kernel/Makefile | 1 - arch/x86/platform/atom/Makefile | 3 ++- arch/x86/{kernel => platform/atom}/pmc_atom.c | 0 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/x86/kernel/Makefile b/arch/x86/kernel/Makefile index 0f15af4..81db53b 100644 --- a/arch/x86/kernel/Makefile +++ b/arch/x86/kernel/Makefile @@ -108,7 +108,6 @@ obj-$(CONFIG_EFI) += sysfb_efi.o obj-$(CONFIG_PERF_EVENTS) += perf_regs.o obj-$(CONFIG_TRACING) += tracepoint.o obj-$(CONFIG_IOSF_MBI) += iosf_mbi.o -obj-$(CONFIG_PMC_ATOM) += pmc_atom.o ### # 64 bit specific files diff --git a/arch/x86/platform/atom/Makefile b/arch/x86/platform/atom/Makefile index 0a3a40c..40983f5 100644 --- a/arch/x86/platform/atom/Makefile +++ b/arch/x86/platform/atom/Makefile @@ -1 +1,2 @@ -obj-$(CONFIG_PUNIT_ATOM_DEBUG) += punit_atom_debug.o +obj-$(CONFIG_PMC_ATOM) += pmc_atom.o +obj-$(CONFIG_PUNIT_ATOM_DEBUG) += punit_atom_debug.o diff --git a/arch/x86/kernel/pmc_atom.c b/arch/x86/platform/atom/pmc_atom.c similarity index 100% rename from arch/x86/kernel/pmc_atom.c rename to arch/x86/platform/atom/pmc_atom.c