summaryrefslogtreecommitdiffstats
path: root/arch/arm/boards/tqma6x
diff options
context:
space:
mode:
authorLucas Stach <dev@lynxeye.de>2014-06-24 08:33:14 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2014-07-01 08:41:44 +0200
commit691211c8bbf3ff861443963554eac8063b01d650 (patch)
tree105dc20c1a7762bf73855102be3245e9fae2aa70 /arch/arm/boards/tqma6x
parent14552dddce4b6c623cca01f55025d1fa039080b0 (diff)
downloadbarebox-691211c8bbf3ff861443963554eac8063b01d650.tar.gz
barebox-691211c8bbf3ff861443963554eac8063b01d650.tar.xz
arm: imx6: move imx6_init_lowlevel to single initcall
Instead of repeating the same lowlevel init for every board move it to it's own initcall. Avoids code bloat and shaves off almost 1.5kB of uncompressed barebox size for a default imx_v7_defconfig build. For boards wherethe hostname setup was done in the postcore initcall we move this to a device initcall to get it out of the way. Signed-off-by: Lucas Stach <dev@lynxeye.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/boards/tqma6x')
-rw-r--r--arch/arm/boards/tqma6x/board.c13
1 files changed, 2 insertions, 11 deletions
diff --git a/arch/arm/boards/tqma6x/board.c b/arch/arm/boards/tqma6x/board.c
index 6c574eaf2c..2118fb2721 100644
--- a/arch/arm/boards/tqma6x/board.c
+++ b/arch/arm/boards/tqma6x/board.c
@@ -113,17 +113,8 @@ static int tqma6x_env_init(void)
default_environment_path_set("/dev/mmc2.boot1");
- return 0;
-}
-late_initcall(tqma6x_env_init);
-
-static int tqma6x_core_init(void)
-{
- if (!of_machine_is_compatible("tq,mba6x"))
- return 0;
-
- imx6_init_lowlevel();
+ barebox_set_hostname("mba6x");
return 0;
}
-postcore_initcall(tqma6x_core_init);
+late_initcall(tqma6x_env_init);