summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorConor Dooley <conor.dooley@microchip.com>2023-06-17 21:27:35 +0100
committerConor Dooley <conor.dooley@microchip.com>2023-06-19 07:59:36 +0100
commit2bd9e07140ae7b22b5d049b1dde0449b2f2a28f8 (patch)
tree8d5df49b03a81b4d509d23565a1908c8604991cf
parentc1362fd0f2fdebf5c56d505100ba37600b5c20a5 (diff)
downloadlinux-stable-2bd9e07140ae7b22b5d049b1dde0449b2f2a28f8.tar.gz
linux-stable-2bd9e07140ae7b22b5d049b1dde0449b2f2a28f8.tar.bz2
linux-stable-2bd9e07140ae7b22b5d049b1dde0449b2f2a28f8.zip
riscv: dts: sort makefile entries by directory
New additions to the list have tried to respect alphanumeric ordering, but the thing was out of order to start with. Sort it. Signed-off-by: Conor Dooley <conor.dooley@microchip.com>
-rw-r--r--arch/riscv/boot/dts/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/riscv/boot/dts/Makefile b/arch/riscv/boot/dts/Makefile
index 1e884868ccba..f60a280abb15 100644
--- a/arch/riscv/boot/dts/Makefile
+++ b/arch/riscv/boot/dts/Makefile
@@ -1,10 +1,10 @@
# SPDX-License-Identifier: GPL-2.0
subdir-y += allwinner
-subdir-y += sifive
-subdir-y += starfive
-subdir-y += thead
subdir-y += canaan
subdir-y += microchip
subdir-y += renesas
+subdir-y += sifive
+subdir-y += starfive
+subdir-y += thead
obj-$(CONFIG_BUILTIN_DTB) := $(addsuffix /, $(subdir-y))