Skip to content

Commit

Permalink
net: phy: export fixed_phy_register()
Browse files Browse the repository at this point in the history
When building the bcmgenet driver as module, I get:

ERROR: "fixed_phy_register" [drivers/net/ethernet/broadcom/genet/genet.ko] undefined!

commit b0ba512e225d72 ("net: bcmgenet: enable driver to work without device
tree") which added a call to fixed_phy_register. But fixed_phy_register
needs to be exported if used from a module.

Signed-off-by: Mark Salter <msalter@redhat.com>
Acked-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Mark Salter authored and David S. Miller committed Dec 12, 2014
1 parent e962f30 commit 37e9a69
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions drivers/net/phy/fixed.c
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,7 @@ struct phy_device *fixed_phy_register(unsigned int irq,

return phy;
}
EXPORT_SYMBOL_GPL(fixed_phy_register);

static int __init fixed_mdio_bus_init(void)
{
Expand Down

0 comments on commit 37e9a69

Please sign in to comment.