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


Groups > linux.kernel > #1565200

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

From Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Newsgroups linux.kernel
Subject [PATCH v8 1/5] clk: Make x86/ conditional on CONFIG_COMMON_CLK
Date 2017-01-23 19:10 +0100
Message-ID <t2Re1-1kt-7@gated-at.bofh.it> (permalink)
References <t2Re2-1kt-9@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


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

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[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

csiph-web