aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh
diff options
context:
space:
mode:
Diffstat (limited to 'arch/sh')
-rw-r--r--arch/sh/boards/se/770x/setup.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/sh/boards/se/770x/setup.c b/arch/sh/boards/se/770x/setup.c
index cf4a5ba12df4..6c64d774da3a 100644
--- a/arch/sh/boards/se/770x/setup.c
+++ b/arch/sh/boards/se/770x/setup.c
@@ -113,6 +113,8 @@ static struct platform_device heartbeat_device = {
113 .resource = heartbeat_resources, 113 .resource = heartbeat_resources,
114}; 114};
115 115
116#if defined(CONFIG_CPU_SUBTYPE_SH7710) ||\
117 defined(CONFIG_CPU_SUBTYPE_SH7712)
116/* SH771X Ethernet driver */ 118/* SH771X Ethernet driver */
117static struct resource sh_eth0_resources[] = { 119static struct resource sh_eth0_resources[] = {
118 [0] = { 120 [0] = {
@@ -159,12 +161,16 @@ static struct platform_device sh_eth1_device = {
159 .num_resources = ARRAY_SIZE(sh_eth1_resources), 161 .num_resources = ARRAY_SIZE(sh_eth1_resources),
160 .resource = sh_eth1_resources, 162 .resource = sh_eth1_resources,
161}; 163};
164#endif
162 165
163static struct platform_device *se_devices[] __initdata = { 166static struct platform_device *se_devices[] __initdata = {
164 &heartbeat_device, 167 &heartbeat_device,
165 &cf_ide_device, 168 &cf_ide_device,
169#if defined(CONFIG_CPU_SUBTYPE_SH7710) ||\
170 defined(CONFIG_CPU_SUBTYPE_SH7712)
166 &sh_eth0_device, 171 &sh_eth0_device,
167 &sh_eth1_device, 172 &sh_eth1_device,
173#endif
168}; 174};
169 175
170static int __init se_devices_setup(void) 176static int __init se_devices_setup(void)