diff options
author | Ray Jui <rjui@broadcom.com> | 2015-05-05 11:13:20 -0700 |
---|---|---|
committer | Michael Turquette <mturquette@baylibre.com> | 2015-06-18 12:36:39 -0700 |
commit | 69a0b2c559099a043662f8c96214d8eab32a7153 (patch) | |
tree | 8b79cfc81717b82e0527b441bd59de3ae83bf1c0 /drivers/clk | |
parent | 5fe225c105fd54debae1699ec0f6aef1e73376d0 (diff) | |
download | linux-stable-69a0b2c559099a043662f8c96214d8eab32a7153.tar.gz linux-stable-69a0b2c559099a043662f8c96214d8eab32a7153.tar.bz2 linux-stable-69a0b2c559099a043662f8c96214d8eab32a7153.zip |
clk: Change bcm clocks build dependency
The clock code under drivers/clk/bcm now contains code for both the
Broadcom mobile SoCs and the iProc SoCs. Change the the makefile
dependency to be under config flag CONFIG_ARCH_BCM that's enabled for
both families of SoCs
Signed-off-by: Ray Jui <rjui@broadcom.com>
Signed-off-by: Michael Turquette <mturquette@baylibre.com>
Diffstat (limited to 'drivers/clk')
-rw-r--r-- | drivers/clk/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/Makefile b/drivers/clk/Makefile index 3233f0e8bf43..d4bc8ed29984 100644 --- a/drivers/clk/Makefile +++ b/drivers/clk/Makefile @@ -46,7 +46,7 @@ obj-$(CONFIG_COMMON_CLK_WM831X) += clk-wm831x.o obj-$(CONFIG_COMMON_CLK_XGENE) += clk-xgene.o obj-$(CONFIG_COMMON_CLK_PWM) += clk-pwm.o obj-$(CONFIG_COMMON_CLK_AT91) += at91/ -obj-$(CONFIG_ARCH_BCM_MOBILE) += bcm/ +obj-$(CONFIG_ARCH_BCM) += bcm/ obj-$(CONFIG_ARCH_BERLIN) += berlin/ obj-$(CONFIG_ARCH_HISI) += hisilicon/ obj-$(CONFIG_COMMON_CLK_KEYSTONE) += keystone/ |