diff mbox series

[U-Boot,080/080] clk: Makefile: Sort entries alphabetically

Message ID 20170929125238.26226-80-mario.six@gdsys.cc
State Changes Requested
Delegated to: Wolfgang Denk
Headers show
Series [U-Boot,001/080] mpc8308rdb: Fix style violation | expand

Commit Message

Mario Six Sept. 29, 2017, 12:52 p.m. UTC
The Makefile entries in the clk driver directory were not alphabetically
sorted. Correct this.

Signed-off-by: Mario Six <mario.six@gdsys.cc>
---
 drivers/clk/Makefile | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

--
2.11.0

Comments

Simon Glass Oct. 9, 2017, 4:48 a.m. UTC | #1
On 29 September 2017 at 06:52, Mario Six <mario.six@gdsys.cc> wrote:
> The Makefile entries in the clk driver directory were not alphabetically
> sorted. Correct this.
>
> Signed-off-by: Mario Six <mario.six@gdsys.cc>
> ---
>  drivers/clk/Makefile | 20 ++++++++++----------
>  1 file changed, 10 insertions(+), 10 deletions(-)

Reviewed-by: Simon Glass <sjg@chromium.org>
diff mbox series

Patch

diff --git a/drivers/clk/Makefile b/drivers/clk/Makefile
index 83fe88ce9f..bb22416fb5 100644
--- a/drivers/clk/Makefile
+++ b/drivers/clk/Makefile
@@ -6,20 +6,20 @@ 
 #

 obj-$(CONFIG_$(SPL_TPL_)CLK) += clk-uclass.o clk_fixed_rate.o
-obj-$(CONFIG_ARCH_ROCKCHIP) += rockchip/
-obj-$(CONFIG_SANDBOX) += clk_sandbox.o
-obj-$(CONFIG_SANDBOX) += clk_sandbox_test.o
-obj-$(CONFIG_MACH_PIC32) += clk_pic32.o
-obj-$(CONFIG_CLK_RENESAS) += renesas/
-obj-$(CONFIG_CLK_ZYNQ) += clk_zynq.o
-obj-$(CONFIG_CLK_ZYNQMP) += clk_zynqmp.o

 obj-y += tegra/
-obj-$(CONFIG_CLK_UNIPHIER) += uniphier/
-obj-$(CONFIG_CLK_EXYNOS) += exynos/
+obj-$(CONFIG_ARCH_ASPEED) += aspeed/
+obj-$(CONFIG_ARCH_ROCKCHIP) += rockchip/
 obj-$(CONFIG_CLK_AT91) += at91/
 obj-$(CONFIG_CLK_BCM6345) += clk_bcm6345.o
 obj-$(CONFIG_CLK_BOSTON) += clk_boston.o
-obj-$(CONFIG_ARCH_ASPEED) += aspeed/
+obj-$(CONFIG_CLK_EXYNOS) += exynos/
+obj-$(CONFIG_CLK_RENESAS) += renesas/
+obj-$(CONFIG_CLK_UNIPHIER) += uniphier/
+obj-$(CONFIG_CLK_ZYNQ) += clk_zynq.o
+obj-$(CONFIG_CLK_ZYNQMP) += clk_zynqmp.o
+obj-$(CONFIG_MACH_PIC32) += clk_pic32.o
+obj-$(CONFIG_SANDBOX) += clk_sandbox.o
+obj-$(CONFIG_SANDBOX) += clk_sandbox_test.o
 obj-$(CONFIG_STM32F7) += clk_stm32f7.o
 obj-$(CONFIG_STM32H7) += clk_stm32h7.o