diff options
author | Nicolas Ferre <nicolas.ferre@atmel.com> | 2013-10-11 04:23:41 -0400 |
---|---|---|
committer | Nicolas Ferre <nicolas.ferre@atmel.com> | 2013-10-16 09:47:08 -0400 |
commit | f123248e172d150a2855b17a4908a23ba81bba1c (patch) | |
tree | 52a4b2b4132759eaef6aae65c3e96ed942a74244 /arch/arm/mach-at91 | |
parent | d7d1d45cc46d79ab9227288e225aa51078855729 (diff) |
ARM: at91: remove init_machine() as default is suitable
Since 883a106b0866ca8d75b5520bdb3ca1cf8e3730ba (ARM: default
machine descriptor for multiplatform) we can remove the SoC-specific
callback init_machine() to use the default code.
This cleans up the code and reduces the number of lines.
Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'arch/arm/mach-at91')
-rw-r--r-- | arch/arm/mach-at91/board-dt-rm9200.c | 7 | ||||
-rw-r--r-- | arch/arm/mach-at91/board-dt-sam9.c | 7 |
2 files changed, 0 insertions, 14 deletions
diff --git a/arch/arm/mach-at91/board-dt-rm9200.c b/arch/arm/mach-at91/board-dt-rm9200.c index 3fcb6623a33e..3a185faee795 100644 --- a/arch/arm/mach-at91/board-dt-rm9200.c +++ b/arch/arm/mach-at91/board-dt-rm9200.c | |||
@@ -14,7 +14,6 @@ | |||
14 | #include <linux/gpio.h> | 14 | #include <linux/gpio.h> |
15 | #include <linux/of.h> | 15 | #include <linux/of.h> |
16 | #include <linux/of_irq.h> | 16 | #include <linux/of_irq.h> |
17 | #include <linux/of_platform.h> | ||
18 | 17 | ||
19 | #include <asm/setup.h> | 18 | #include <asm/setup.h> |
20 | #include <asm/irq.h> | 19 | #include <asm/irq.h> |
@@ -36,11 +35,6 @@ static void __init at91rm9200_dt_init_irq(void) | |||
36 | of_irq_init(irq_of_match); | 35 | of_irq_init(irq_of_match); |
37 | } | 36 | } |
38 | 37 | ||
39 | static void __init at91rm9200_dt_device_init(void) | ||
40 | { | ||
41 | of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL); | ||
42 | } | ||
43 | |||
44 | static const char *at91rm9200_dt_board_compat[] __initdata = { | 38 | static const char *at91rm9200_dt_board_compat[] __initdata = { |
45 | "atmel,at91rm9200", | 39 | "atmel,at91rm9200", |
46 | NULL | 40 | NULL |
@@ -52,6 +46,5 @@ DT_MACHINE_START(at91rm9200_dt, "Atmel AT91RM9200 (Device Tree)") | |||
52 | .handle_irq = at91_aic_handle_irq, | 46 | .handle_irq = at91_aic_handle_irq, |
53 | .init_early = at91rm9200_dt_initialize, | 47 | .init_early = at91rm9200_dt_initialize, |
54 | .init_irq = at91rm9200_dt_init_irq, | 48 | .init_irq = at91rm9200_dt_init_irq, |
55 | .init_machine = at91rm9200_dt_device_init, | ||
56 | .dt_compat = at91rm9200_dt_board_compat, | 49 | .dt_compat = at91rm9200_dt_board_compat, |
57 | MACHINE_END | 50 | MACHINE_END |
diff --git a/arch/arm/mach-at91/board-dt-sam9.c b/arch/arm/mach-at91/board-dt-sam9.c index 8db30132abed..3dab868b02fa 100644 --- a/arch/arm/mach-at91/board-dt-sam9.c +++ b/arch/arm/mach-at91/board-dt-sam9.c | |||
@@ -13,7 +13,6 @@ | |||
13 | #include <linux/gpio.h> | 13 | #include <linux/gpio.h> |
14 | #include <linux/of.h> | 14 | #include <linux/of.h> |
15 | #include <linux/of_irq.h> | 15 | #include <linux/of_irq.h> |
16 | #include <linux/of_platform.h> | ||
17 | 16 | ||
18 | #include <asm/setup.h> | 17 | #include <asm/setup.h> |
19 | #include <asm/irq.h> | 18 | #include <asm/irq.h> |
@@ -37,11 +36,6 @@ static void __init at91_dt_init_irq(void) | |||
37 | of_irq_init(irq_of_match); | 36 | of_irq_init(irq_of_match); |
38 | } | 37 | } |
39 | 38 | ||
40 | static void __init at91_dt_device_init(void) | ||
41 | { | ||
42 | of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL); | ||
43 | } | ||
44 | |||
45 | static const char *at91_dt_board_compat[] __initdata = { | 39 | static const char *at91_dt_board_compat[] __initdata = { |
46 | "atmel,at91sam9", | 40 | "atmel,at91sam9", |
47 | NULL | 41 | NULL |
@@ -54,6 +48,5 @@ DT_MACHINE_START(at91sam_dt, "Atmel AT91SAM (Device Tree)") | |||
54 | .handle_irq = at91_aic_handle_irq, | 48 | .handle_irq = at91_aic_handle_irq, |
55 | .init_early = at91_dt_initialize, | 49 | .init_early = at91_dt_initialize, |
56 | .init_irq = at91_dt_init_irq, | 50 | .init_irq = at91_dt_init_irq, |
57 | .init_machine = at91_dt_device_init, | ||
58 | .dt_compat = at91_dt_board_compat, | 51 | .dt_compat = at91_dt_board_compat, |
59 | MACHINE_END | 52 | MACHINE_END |