diff options
author | Mike Turquette <mturquette@linaro.org> | 2013-01-18 16:00:05 -0500 |
---|---|---|
committer | Mike Turquette <mturquette@linaro.org> | 2013-01-18 16:06:31 -0500 |
commit | 135a829744067cb825b48f7422e22861e57d5ecd (patch) | |
tree | a3c0963e35c25b8bdb56970b04182770cb393502 /drivers/clk | |
parent | 1a3cd18475a98b9587a181b8d8ebc7f5cdedb4b0 (diff) |
clk: beautify Makefile
The list of common clock types was getting a bit unmanageable. This
patch puts only one file on each line and reorders the object files
alphabetically. Also a newline is added to separate the sections.
Reported-by: Stephen Boyd <sboyd@codeaurora.org>
Cc: Prashant Gaikwad <pgaikwad@nvidia.com>
Signed-off-by: Mike Turquette <mturquette@linaro.org>
Diffstat (limited to 'drivers/clk')
-rw-r--r-- | drivers/clk/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/drivers/clk/Makefile b/drivers/clk/Makefile index ee90e87e7675..e73b1d66b896 100644 --- a/drivers/clk/Makefile +++ b/drivers/clk/Makefile | |||
@@ -1,8 +1,13 @@ | |||
1 | # common clock types | 1 | # common clock types |
2 | obj-$(CONFIG_HAVE_CLK) += clk-devres.o | 2 | obj-$(CONFIG_HAVE_CLK) += clk-devres.o |
3 | obj-$(CONFIG_CLKDEV_LOOKUP) += clkdev.o | 3 | obj-$(CONFIG_CLKDEV_LOOKUP) += clkdev.o |
4 | obj-$(CONFIG_COMMON_CLK) += clk.o clk-fixed-rate.o clk-gate.o \ | 4 | obj-$(CONFIG_COMMON_CLK) += clk.o |
5 | clk-mux.o clk-divider.o clk-fixed-factor.o | 5 | obj-$(CONFIG_COMMON_CLK) += clk-divider.o |
6 | obj-$(CONFIG_COMMON_CLK) += clk-fixed-factor.o | ||
7 | obj-$(CONFIG_COMMON_CLK) += clk-fixed-rate.o | ||
8 | obj-$(CONFIG_COMMON_CLK) += clk-gate.o | ||
9 | obj-$(CONFIG_COMMON_CLK) += clk-mux.o | ||
10 | |||
6 | # SoCs specific | 11 | # SoCs specific |
7 | obj-$(CONFIG_ARCH_BCM2835) += clk-bcm2835.o | 12 | obj-$(CONFIG_ARCH_BCM2835) += clk-bcm2835.o |
8 | obj-$(CONFIG_ARCH_NOMADIK) += clk-nomadik.o | 13 | obj-$(CONFIG_ARCH_NOMADIK) += clk-nomadik.o |