Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1565200 > unrolled thread

[PATCH v8 1/5] clk: Make x86/ conditional on CONFIG_COMMON_CLK

Started byPierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
First post2017-01-23 19:10 +0100
Last post2017-01-27 01:30 +0100
Articles 2 — 2 participants

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH v8 1/5] clk: Make x86/ conditional on CONFIG_COMMON_CLK Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> - 2017-01-23 19:10 +0100
    Re: [PATCH v8 1/5] clk: Make x86/ conditional on CONFIG_COMMON_CLK Stephen Boyd <sboyd@codeaurora.org> - 2017-01-27 01:30 +0100

#1565200 — [PATCH v8 1/5] clk: Make x86/ conditional on CONFIG_COMMON_CLK

FromPierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Date2017-01-23 19:10 +0100
Subject[PATCH v8 1/5] clk: Make x86/ conditional on CONFIG_COMMON_CLK
Message-ID<t2Re1-1kt-7@gated-at.bofh.it>
Fix Makefile for x86 support, dependency on CONFIG_COMMON_CLK
was not explicit

Fixes: 701190fd7419 ('clk: x86: add support for Lynxpoint LPSS clocks')
Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
---
 drivers/clk/Makefile | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/clk/Makefile b/drivers/clk/Makefile
index 925081e..42042c0 100644
--- a/drivers/clk/Makefile
+++ b/drivers/clk/Makefile
@@ -87,6 +87,8 @@ obj-y					+= ti/
 obj-$(CONFIG_CLK_UNIPHIER)		+= uniphier/
 obj-$(CONFIG_ARCH_U8500)		+= ux500/
 obj-$(CONFIG_COMMON_CLK_VERSATILE)	+= versatile/
+ifeq ($(CONFIG_COMMON_CLK), y)
 obj-$(CONFIG_X86)			+= x86/
+endif
 obj-$(CONFIG_ARCH_ZX)			+= zte/
 obj-$(CONFIG_ARCH_ZYNQ)			+= zynq/
-- 
2.7.4

[toc] | [next] | [standalone]


#1567835

FromStephen Boyd <sboyd@codeaurora.org>
Date2017-01-27 01:30 +0100
Message-ID<t42Ap-5HM-9@gated-at.bofh.it>
In reply to#1565200
On 01/23, Pierre-Louis Bossart wrote:
> Fix Makefile for x86 support, dependency on CONFIG_COMMON_CLK
> was not explicit
> 
> Fixes: 701190fd7419 ('clk: x86: add support for Lynxpoint LPSS clocks')
> Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
> ---

Applied to clk-next

-- 
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
a Linux Foundation Collaborative Project

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web