diff options
Diffstat (limited to 'arch/arm/mach-kirkwood/board-dt.c')
-rw-r--r-- | arch/arm/mach-kirkwood/board-dt.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/arch/arm/mach-kirkwood/board-dt.c b/arch/arm/mach-kirkwood/board-dt.c index f7fe1b9f317..10d1969b9e3 100644 --- a/arch/arm/mach-kirkwood/board-dt.c +++ b/arch/arm/mach-kirkwood/board-dt.c | |||
@@ -56,11 +56,24 @@ static void __init kirkwood_dt_init(void) | |||
56 | if (of_machine_is_compatible("globalscale,dreamplug")) | 56 | if (of_machine_is_compatible("globalscale,dreamplug")) |
57 | dreamplug_init(); | 57 | dreamplug_init(); |
58 | 58 | ||
59 | if (of_machine_is_compatible("dlink,dns-kirkwood")) | ||
60 | dnskw_init(); | ||
61 | |||
62 | if (of_machine_is_compatible("iom,iconnect")) | ||
63 | iconnect_init(); | ||
64 | |||
65 | if (of_machine_is_compatible("raidsonic,ib-nas62x0")) | ||
66 | ib62x0_init(); | ||
67 | |||
59 | of_platform_populate(NULL, kirkwood_dt_match_table, NULL, NULL); | 68 | of_platform_populate(NULL, kirkwood_dt_match_table, NULL, NULL); |
60 | } | 69 | } |
61 | 70 | ||
62 | static const char *kirkwood_dt_board_compat[] = { | 71 | static const char *kirkwood_dt_board_compat[] = { |
63 | "globalscale,dreamplug", | 72 | "globalscale,dreamplug", |
73 | "dlink,dns-320", | ||
74 | "dlink,dns-325", | ||
75 | "iom,iconnect", | ||
76 | "raidsonic,ib-nas62x0", | ||
64 | NULL | 77 | NULL |
65 | }; | 78 | }; |
66 | 79 | ||