diff options
author | Geert Uytterhoeven <geert+renesas@glider.be> | 2015-02-05 05:11:25 -0500 |
---|---|---|
committer | Simon Horman <horms+renesas@verge.net.au> | 2015-02-23 16:36:16 -0500 |
commit | 6320c41198c76f799e3e34da48a1f2a88ef4cc68 (patch) | |
tree | 31a4dbc6ff85f518a4124cb3e5ce4bb45376875c | |
parent | 13fbf3c8d0f750a52b9ddb9be7a8251789fb62b6 (diff) |
drivers: bus: Sort Makefile entries alphabetically
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Tested-by: Ulrich Hecht <ulrich.hecht+renesas@gmail.com>
Reviewed-by: Kevin Hilman <khilman@linaro.org>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
-rw-r--r-- | drivers/bus/Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/drivers/bus/Makefile b/drivers/bus/Makefile index 2973c18cbcc2..3cfaf2c7f25a 100644 --- a/drivers/bus/Makefile +++ b/drivers/bus/Makefile | |||
@@ -2,16 +2,16 @@ | |||
2 | # Makefile for the bus drivers. | 2 | # Makefile for the bus drivers. |
3 | # | 3 | # |
4 | 4 | ||
5 | # Interconnect bus drivers for ARM platforms | ||
6 | obj-$(CONFIG_ARM_CCI) += arm-cci.o | ||
7 | obj-$(CONFIG_ARM_CCN) += arm-ccn.o | ||
8 | |||
5 | obj-$(CONFIG_BRCMSTB_GISB_ARB) += brcmstb_gisb.o | 9 | obj-$(CONFIG_BRCMSTB_GISB_ARB) += brcmstb_gisb.o |
6 | obj-$(CONFIG_IMX_WEIM) += imx-weim.o | 10 | obj-$(CONFIG_IMX_WEIM) += imx-weim.o |
7 | obj-$(CONFIG_MVEBU_MBUS) += mvebu-mbus.o | 11 | obj-$(CONFIG_MVEBU_MBUS) += mvebu-mbus.o |
8 | obj-$(CONFIG_OMAP_OCP2SCP) += omap-ocp2scp.o | ||
9 | 12 | ||
10 | # Interconnect bus driver for OMAP SoCs. | 13 | # Interconnect bus driver for OMAP SoCs. |
11 | obj-$(CONFIG_OMAP_INTERCONNECT) += omap_l3_smx.o omap_l3_noc.o | 14 | obj-$(CONFIG_OMAP_INTERCONNECT) += omap_l3_smx.o omap_l3_noc.o |
12 | 15 | ||
13 | # Interconnect bus drivers for ARM platforms | 16 | obj-$(CONFIG_OMAP_OCP2SCP) += omap-ocp2scp.o |
14 | obj-$(CONFIG_ARM_CCI) += arm-cci.o | ||
15 | obj-$(CONFIG_ARM_CCN) += arm-ccn.o | ||
16 | |||
17 | obj-$(CONFIG_VEXPRESS_CONFIG) += vexpress-config.o | 17 | obj-$(CONFIG_VEXPRESS_CONFIG) += vexpress-config.o |