]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
clk: beautify Makefile
authorMike Turquette <mturquette@linaro.org>
Fri, 18 Jan 2013 21:00:05 +0000 (13:00 -0800)
committerMike Turquette <mturquette@linaro.org>
Fri, 18 Jan 2013 21:06:31 +0000 (13:06 -0800)
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>
drivers/clk/Makefile

index ee90e87e7675859e4ae80cf0587191732e8b6541..e73b1d66b8961978c1ea5037994ee86675c3b2ba 100644 (file)
@@ -1,8 +1,13 @@
 # common clock types
 obj-$(CONFIG_HAVE_CLK)         += clk-devres.o
 obj-$(CONFIG_CLKDEV_LOOKUP)    += clkdev.o
-obj-$(CONFIG_COMMON_CLK)       += clk.o clk-fixed-rate.o clk-gate.o \
-                                  clk-mux.o clk-divider.o clk-fixed-factor.o
+obj-$(CONFIG_COMMON_CLK)       += clk.o
+obj-$(CONFIG_COMMON_CLK)       += clk-divider.o
+obj-$(CONFIG_COMMON_CLK)       += clk-fixed-factor.o
+obj-$(CONFIG_COMMON_CLK)       += clk-fixed-rate.o
+obj-$(CONFIG_COMMON_CLK)       += clk-gate.o
+obj-$(CONFIG_COMMON_CLK)       += clk-mux.o
+
 # SoCs specific
 obj-$(CONFIG_ARCH_BCM2835)     += clk-bcm2835.o
 obj-$(CONFIG_ARCH_NOMADIK)     += clk-nomadik.o