diff options
author | Linus Walleij <linus.walleij@linaro.org> | 2012-06-19 17:44:25 -0400 |
---|---|---|
committer | Mike Turquette <mturquette@linaro.org> | 2012-07-11 18:36:45 -0400 |
commit | 50667d63085af108f625c83102430c1d74931d78 (patch) | |
tree | 62285dcaf8733ef5e9257db9ec6029ca7745c26c /drivers/clk/Makefile | |
parent | 9ca1c5a4bf4105d6f2f2a46892495953dd3e2fec (diff) |
ARM: u300: convert to common clock
This converts the U300 clock implementation over to use the common
struct clk and moves the implementation down into drivers/clk.
Since VCO isn't used in tree it was removed, it's not hard to
put it back in if need be.
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
[mturquette@linaro.org: trivial Makefile conflict]
Signed-off-by: Mike Turquette <mturquette@linaro.org>
Diffstat (limited to 'drivers/clk/Makefile')
-rw-r--r-- | drivers/clk/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/clk/Makefile b/drivers/clk/Makefile index b679f117f3cc..35d9fb44c814 100644 --- a/drivers/clk/Makefile +++ b/drivers/clk/Makefile | |||
@@ -1,10 +1,11 @@ | |||
1 | 1 | # common clock types | |
2 | obj-$(CONFIG_CLKDEV_LOOKUP) += clkdev.o | 2 | obj-$(CONFIG_CLKDEV_LOOKUP) += clkdev.o |
3 | obj-$(CONFIG_COMMON_CLK) += clk.o clk-fixed-rate.o clk-gate.o \ | 3 | obj-$(CONFIG_COMMON_CLK) += clk.o clk-fixed-rate.o clk-gate.o \ |
4 | clk-mux.o clk-divider.o clk-fixed-factor.o | 4 | clk-mux.o clk-divider.o clk-fixed-factor.o |
5 | # SoCs specific | 5 | # SoCs specific |
6 | obj-$(CONFIG_ARCH_MXS) += mxs/ | 6 | obj-$(CONFIG_ARCH_MXS) += mxs/ |
7 | obj-$(CONFIG_PLAT_SPEAR) += spear/ | 7 | obj-$(CONFIG_PLAT_SPEAR) += spear/ |
8 | obj-$(CONFIG_ARCH_U300) += clk-u300.o | ||
8 | 9 | ||
9 | # Chip specific | 10 | # Chip specific |
10 | obj-$(CONFIG_COMMON_CLK_WM831X) += clk-wm831x.o | 11 | obj-$(CONFIG_COMMON_CLK_WM831X) += clk-wm831x.o |