diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2008-07-16 09:39:12 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-16 14:43:48 -0400 |
commit | e3621ee633810be1079d0fa65ac2c904f53b73fa (patch) | |
tree | 3dc8cf4a11340275c796181e495790a918b3e2e1 /arch | |
parent | bef5b54bd7bf8117c75cb943d64549134c6d9a1f (diff) |
powerpc/ep8248e: Fix compile problem if !CONFIG_FS_ENET
If we don't enable FS_ENET we get build issues:
arch/powerpc/platforms/built-in.o: In function `ep8248e_mdio_probe':
arch/powerpc/platforms/82xx/ep8248e.c:129: undefined reference to `alloc_mdio_bitbang'
arch/powerpc/platforms/82xx/ep8248e.c:143: undefined reference to `mdiobus_register'
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/platforms/82xx/ep8248e.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/powerpc/platforms/82xx/ep8248e.c b/arch/powerpc/platforms/82xx/ep8248e.c index d5770fdf7f09..373e993a5ed5 100644 --- a/arch/powerpc/platforms/82xx/ep8248e.c +++ b/arch/powerpc/platforms/82xx/ep8248e.c | |||
@@ -59,6 +59,7 @@ static void __init ep8248e_pic_init(void) | |||
59 | of_node_put(np); | 59 | of_node_put(np); |
60 | } | 60 | } |
61 | 61 | ||
62 | #ifdef CONFIG_FS_ENET_MDIO_FCC | ||
62 | static void ep8248e_set_mdc(struct mdiobb_ctrl *ctrl, int level) | 63 | static void ep8248e_set_mdc(struct mdiobb_ctrl *ctrl, int level) |
63 | { | 64 | { |
64 | if (level) | 65 | if (level) |
@@ -164,6 +165,7 @@ static struct of_platform_driver ep8248e_mdio_driver = { | |||
164 | .probe = ep8248e_mdio_probe, | 165 | .probe = ep8248e_mdio_probe, |
165 | .remove = ep8248e_mdio_remove, | 166 | .remove = ep8248e_mdio_remove, |
166 | }; | 167 | }; |
168 | #endif | ||
167 | 169 | ||
168 | struct cpm_pin { | 170 | struct cpm_pin { |
169 | int port, pin, flags; | 171 | int port, pin, flags; |
@@ -296,7 +298,9 @@ static __initdata struct of_device_id of_bus_ids[] = { | |||
296 | static int __init declare_of_platform_devices(void) | 298 | static int __init declare_of_platform_devices(void) |
297 | { | 299 | { |
298 | of_platform_bus_probe(NULL, of_bus_ids, NULL); | 300 | of_platform_bus_probe(NULL, of_bus_ids, NULL); |
301 | #ifdef CONFIG_FS_ENET_MDIO_FCC | ||
299 | of_register_platform_driver(&ep8248e_mdio_driver); | 302 | of_register_platform_driver(&ep8248e_mdio_driver); |
303 | #endif | ||
300 | 304 | ||
301 | return 0; | 305 | return 0; |
302 | } | 306 | } |