diff options
author | Arnaud Patard (Rtp) <arnaud.patard@rtp-net.org> | 2012-04-18 17:16:41 -0400 |
---|---|---|
committer | Jason Cooper <jason@lakedaemon.net> | 2012-05-14 23:12:27 -0400 |
commit | c06cd9bfcad4960023bac1f052da748824e24961 (patch) | |
tree | b2c01a3e2452f983324edb09e7fcf1bb65bb97b7 /arch/arm/mach-kirkwood/board-dt.c | |
parent | ff3e660b5a881b401b2b6735aa5334f433237dcb (diff) |
kirkwood: Add iconnect support
Add support for Iomega Iconnect system.
Signed-off-by: Arnaud Patard <arnaud.patard@rtp-net.org>
Tested-By: Adam Baker <linux@baker-net.org.uk>
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
Diffstat (limited to 'arch/arm/mach-kirkwood/board-dt.c')
-rw-r--r-- | arch/arm/mach-kirkwood/board-dt.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/mach-kirkwood/board-dt.c b/arch/arm/mach-kirkwood/board-dt.c index 3ade0ec20c9f..7e82a8e93795 100644 --- a/arch/arm/mach-kirkwood/board-dt.c +++ b/arch/arm/mach-kirkwood/board-dt.c | |||
@@ -59,6 +59,9 @@ static void __init kirkwood_dt_init(void) | |||
59 | if (of_machine_is_compatible("dlink,dns-kirkwood")) | 59 | if (of_machine_is_compatible("dlink,dns-kirkwood")) |
60 | dnskw_init(); | 60 | dnskw_init(); |
61 | 61 | ||
62 | if (of_machine_is_compatible("iom,iconnect")) | ||
63 | iconnect_init(); | ||
64 | |||
62 | of_platform_populate(NULL, kirkwood_dt_match_table, NULL, NULL); | 65 | of_platform_populate(NULL, kirkwood_dt_match_table, NULL, NULL); |
63 | } | 66 | } |
64 | 67 | ||
@@ -66,6 +69,7 @@ static const char *kirkwood_dt_board_compat[] = { | |||
66 | "globalscale,dreamplug", | 69 | "globalscale,dreamplug", |
67 | "dlink,dns-320", | 70 | "dlink,dns-320", |
68 | "dlink,dns-325", | 71 | "dlink,dns-325", |
72 | "iom,iconnect", | ||
69 | NULL | 73 | NULL |
70 | }; | 74 | }; |
71 | 75 | ||