Commit 4864841a authored by Nobuhiro Iwamatsu's avatar Nobuhiro Iwamatsu Committed by Paul Mundt

sh: Fix compile error of Solution Engine

When I compiled Solution Engine, this become compile error
because plaform device of sh_eth device becomes enable.
When sh7710/sh7712 which could use sh_eth was chosen,
revised it so that platform device of sh_eth device became enable.
Signed-off-by: default avatarNobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
parent 6de9c648
...@@ -113,6 +113,8 @@ static struct platform_device heartbeat_device = { ...@@ -113,6 +113,8 @@ static struct platform_device heartbeat_device = {
.resource = heartbeat_resources, .resource = heartbeat_resources,
}; };
#if defined(CONFIG_CPU_SUBTYPE_SH7710) ||\
defined(CONFIG_CPU_SUBTYPE_SH7712)
/* SH771X Ethernet driver */ /* SH771X Ethernet driver */
static struct resource sh_eth0_resources[] = { static struct resource sh_eth0_resources[] = {
[0] = { [0] = {
...@@ -159,12 +161,16 @@ static struct platform_device sh_eth1_device = { ...@@ -159,12 +161,16 @@ static struct platform_device sh_eth1_device = {
.num_resources = ARRAY_SIZE(sh_eth1_resources), .num_resources = ARRAY_SIZE(sh_eth1_resources),
.resource = sh_eth1_resources, .resource = sh_eth1_resources,
}; };
#endif
static struct platform_device *se_devices[] __initdata = { static struct platform_device *se_devices[] __initdata = {
&heartbeat_device, &heartbeat_device,
&cf_ide_device, &cf_ide_device,
#if defined(CONFIG_CPU_SUBTYPE_SH7710) ||\
defined(CONFIG_CPU_SUBTYPE_SH7712)
&sh_eth0_device, &sh_eth0_device,
&sh_eth1_device, &sh_eth1_device,
#endif
}; };
static int __init se_devices_setup(void) static int __init se_devices_setup(void)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment