Skip to content

Commit e3621ee

Browse files
kumargalatorvalds
authored andcommitted
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>
1 parent bef5b54 commit e3621ee

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

arch/powerpc/platforms/82xx/ep8248e.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ static void __init ep8248e_pic_init(void)
5959
of_node_put(np);
6060
}
6161

62+
#ifdef CONFIG_FS_ENET_MDIO_FCC
6263
static void ep8248e_set_mdc(struct mdiobb_ctrl *ctrl, int level)
6364
{
6465
if (level)
@@ -164,6 +165,7 @@ static struct of_platform_driver ep8248e_mdio_driver = {
164165
.probe = ep8248e_mdio_probe,
165166
.remove = ep8248e_mdio_remove,
166167
};
168+
#endif
167169

168170
struct cpm_pin {
169171
int port, pin, flags;
@@ -296,7 +298,9 @@ static __initdata struct of_device_id of_bus_ids[] = {
296298
static int __init declare_of_platform_devices(void)
297299
{
298300
of_platform_bus_probe(NULL, of_bus_ids, NULL);
301+
#ifdef CONFIG_FS_ENET_MDIO_FCC
299302
of_register_platform_driver(&ep8248e_mdio_driver);
303+
#endif
300304

301305
return 0;
302306
}

0 commit comments

Comments
 (0)