Commit 108443cb authored by Kumar Gala's avatar Kumar Gala

Revert "powerpc/ep8248e: Fix compile problem if !CONFIG_FS_ENET"

This reverts commit e3621ee6.

This was not the proper fix.  As Scott Wood said CONFIG_FS_ENET has nothing
to do with the issue.  The proper fix is to select PHYLIB for this board.
parent ff21f236
...@@ -59,7 +59,6 @@ static void __init ep8248e_pic_init(void) ...@@ -59,7 +59,6 @@ static void __init ep8248e_pic_init(void)
of_node_put(np); of_node_put(np);
} }
#ifdef CONFIG_FS_ENET_MDIO_FCC
static void ep8248e_set_mdc(struct mdiobb_ctrl *ctrl, int level) static void ep8248e_set_mdc(struct mdiobb_ctrl *ctrl, int level)
{ {
if (level) if (level)
...@@ -165,7 +164,6 @@ static struct of_platform_driver ep8248e_mdio_driver = { ...@@ -165,7 +164,6 @@ static struct of_platform_driver ep8248e_mdio_driver = {
.probe = ep8248e_mdio_probe, .probe = ep8248e_mdio_probe,
.remove = ep8248e_mdio_remove, .remove = ep8248e_mdio_remove,
}; };
#endif
struct cpm_pin { struct cpm_pin {
int port, pin, flags; int port, pin, flags;
...@@ -298,9 +296,7 @@ static __initdata struct of_device_id of_bus_ids[] = { ...@@ -298,9 +296,7 @@ static __initdata struct of_device_id of_bus_ids[] = {
static int __init declare_of_platform_devices(void) static int __init declare_of_platform_devices(void)
{ {
of_platform_bus_probe(NULL, of_bus_ids, NULL); of_platform_bus_probe(NULL, of_bus_ids, NULL);
#ifdef CONFIG_FS_ENET_MDIO_FCC
of_register_platform_driver(&ep8248e_mdio_driver); of_register_platform_driver(&ep8248e_mdio_driver);
#endif
return 0; return 0;
} }
......
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