diff mbox series

[U-Boot,v4,08/17] timer: Sort Makefile entries

Message ID 20180806082346.21211-8-mario.six@gdsys.cc
State Accepted
Delegated to: Simon Glass
Headers show
Series [U-Boot,v4,01/17] ram: Add driver for MPC83xx | expand

Commit Message

Mario Six Aug. 6, 2018, 8:23 a.m. UTC
Makefile entries should be sorted.

Signed-off-by: Mario Six <mario.six@gdsys.cc>
---

Notes:
    v3 -> v4:
    New in v4

 drivers/timer/Makefile | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

Comments

Simon Glass Sept. 28, 2018, 3:55 p.m. UTC | #1
On 6 August 2018 at 01:23, Mario Six <mario.six@gdsys.cc> wrote:
> Makefile entries should be sorted.
>
> Signed-off-by: Mario Six <mario.six@gdsys.cc>
> ---
>
> Notes:
>     v3 -> v4:
>     New in v4
>
>  drivers/timer/Makefile | 16 ++++++++--------
>  1 file changed, 8 insertions(+), 8 deletions(-)

Applied to u-boot-dm, and now in mainline, thanks!
diff mbox series

Patch

diff --git a/drivers/timer/Makefile b/drivers/timer/Makefile
index ee2fcb1fa71..71c54048540 100644
--- a/drivers/timer/Makefile
+++ b/drivers/timer/Makefile
@@ -3,16 +3,16 @@ 
 # Copyright (C) 2015 Thomas Chou <thomas@wytron.com.tw>
 
 obj-y += timer-uclass.o
+obj-$(CONFIG_AG101P_TIMER) += ag101p_timer.o
 obj-$(CONFIG_ALTERA_TIMER)	+= altera_timer.o
-obj-$(CONFIG_CADENCE_TTC_TIMER)	+= cadence-ttc.o
-obj-$(CONFIG_SANDBOX_TIMER)	+= sandbox_timer.o
-obj-$(CONFIG_X86_TSC_TIMER)	+= tsc_timer.o
-obj-$(CONFIG_OMAP_TIMER)	+= omap-timer.o
-obj-$(CONFIG_AST_TIMER)	+= ast_timer.o
-obj-$(CONFIG_STI_TIMER)		+= sti-timer.o
 obj-$(CONFIG_ARC_TIMER)	+= arc_timer.o
-obj-$(CONFIG_AG101P_TIMER) += ag101p_timer.o
+obj-$(CONFIG_AST_TIMER)	+= ast_timer.o
 obj-$(CONFIG_ATCPIT100_TIMER) += atcpit100_timer.o
-obj-$(CONFIG_ROCKCHIP_TIMER) += rockchip_timer.o
 obj-$(CONFIG_ATMEL_PIT_TIMER) += atmel_pit_timer.o
+obj-$(CONFIG_CADENCE_TTC_TIMER)	+= cadence-ttc.o
+obj-$(CONFIG_OMAP_TIMER)	+= omap-timer.o
+obj-$(CONFIG_ROCKCHIP_TIMER) += rockchip_timer.o
+obj-$(CONFIG_SANDBOX_TIMER)	+= sandbox_timer.o
+obj-$(CONFIG_STI_TIMER)		+= sti-timer.o
 obj-$(CONFIG_STM32_TIMER)	+= stm32_timer.o
+obj-$(CONFIG_X86_TSC_TIMER)	+= tsc_timer.o