diff options
author | Sergei Shtylyov <sergei.shtylyov@cogentembedded.com> | 2013-06-07 09:59:21 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-06-08 02:38:24 -0400 |
commit | 24549e2a0f33628b5160eac16c6aebf1cfaf22f1 (patch) | |
tree | 7c5e2715d338bf9af01342d7b4036097b5c6daed /arch | |
parent | f5d12767c8fd77e29d3d6771de59fd9ac3e540bb (diff) |
sh_eth: get SH7757 support out of #ifdef
Get the SH7757 code/data in the driver out of #ifdef by adding "sh7757-ether"
and "sh7757-gether" to the platform driver's ID table. Note that we can remove
SH_ETH_HAS_BOTH_MODULES and sh_eth_get_cpu_data().
Change the Ether/GEther platform devices' names in the SH platform code
accordingly.
Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/sh/boards/board-sh7757lcr.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/sh/boards/board-sh7757lcr.c b/arch/sh/boards/board-sh7757lcr.c index 41f86702eb9f..4f114d1cd019 100644 --- a/arch/sh/boards/board-sh7757lcr.c +++ b/arch/sh/boards/board-sh7757lcr.c | |||
@@ -82,7 +82,7 @@ static struct sh_eth_plat_data sh7757_eth0_pdata = { | |||
82 | }; | 82 | }; |
83 | 83 | ||
84 | static struct platform_device sh7757_eth0_device = { | 84 | static struct platform_device sh7757_eth0_device = { |
85 | .name = "sh-eth", | 85 | .name = "sh7757-ether", |
86 | .resource = sh_eth0_resources, | 86 | .resource = sh_eth0_resources, |
87 | .id = 0, | 87 | .id = 0, |
88 | .num_resources = ARRAY_SIZE(sh_eth0_resources), | 88 | .num_resources = ARRAY_SIZE(sh_eth0_resources), |
@@ -111,7 +111,7 @@ static struct sh_eth_plat_data sh7757_eth1_pdata = { | |||
111 | }; | 111 | }; |
112 | 112 | ||
113 | static struct platform_device sh7757_eth1_device = { | 113 | static struct platform_device sh7757_eth1_device = { |
114 | .name = "sh-eth", | 114 | .name = "sh7757-ether", |
115 | .resource = sh_eth1_resources, | 115 | .resource = sh_eth1_resources, |
116 | .id = 1, | 116 | .id = 1, |
117 | .num_resources = ARRAY_SIZE(sh_eth1_resources), | 117 | .num_resources = ARRAY_SIZE(sh_eth1_resources), |
@@ -157,7 +157,7 @@ static struct sh_eth_plat_data sh7757_eth_giga0_pdata = { | |||
157 | }; | 157 | }; |
158 | 158 | ||
159 | static struct platform_device sh7757_eth_giga0_device = { | 159 | static struct platform_device sh7757_eth_giga0_device = { |
160 | .name = "sh-eth", | 160 | .name = "sh7757-gether", |
161 | .resource = sh_eth_giga0_resources, | 161 | .resource = sh_eth_giga0_resources, |
162 | .id = 2, | 162 | .id = 2, |
163 | .num_resources = ARRAY_SIZE(sh_eth_giga0_resources), | 163 | .num_resources = ARRAY_SIZE(sh_eth_giga0_resources), |
@@ -192,7 +192,7 @@ static struct sh_eth_plat_data sh7757_eth_giga1_pdata = { | |||
192 | }; | 192 | }; |
193 | 193 | ||
194 | static struct platform_device sh7757_eth_giga1_device = { | 194 | static struct platform_device sh7757_eth_giga1_device = { |
195 | .name = "sh-eth", | 195 | .name = "sh7757-gether", |
196 | .resource = sh_eth_giga1_resources, | 196 | .resource = sh_eth_giga1_resources, |
197 | .id = 3, | 197 | .id = 3, |
198 | .num_resources = ARRAY_SIZE(sh_eth_giga1_resources), | 198 | .num_resources = ARRAY_SIZE(sh_eth_giga1_resources), |