Author: rmilecki Date: 2015-03-23 19:39:16 +0100 (Mon, 23 Mar 2015) New Revision: 44954
Added: trunk/target/linux/generic/patches-3.18/076-net-phy-export-fixed_phy_register.patch Log: kernel: backport fixed_phy_register EXPORT fix from 3.19 This fixes ERROR: "fixed_phy_register" [drivers/net/ethernet/broadcom/bgmac.ko] undefined! Signed-off-by: Rafa?\197?\130 Mi?\197?\130ecki <[email protected]> Added: trunk/target/linux/generic/patches-3.18/076-net-phy-export-fixed_phy_register.patch =================================================================== --- trunk/target/linux/generic/patches-3.18/076-net-phy-export-fixed_phy_register.patch (rev 0) +++ trunk/target/linux/generic/patches-3.18/076-net-phy-export-fixed_phy_register.patch 2015-03-23 18:39:16 UTC (rev 44954) @@ -0,0 +1,30 @@ +From 37e9a6904520b525b542ecd67201164d06fdb95a Mon Sep 17 00:00:00 2001 +From: Mark Salter <[email protected]> +Date: Thu, 11 Dec 2014 23:03:26 -0500 +Subject: [PATCH] net: phy: export fixed_phy_register() + +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 <[email protected]> +Acked-by: Florian Fainelli <[email protected]> +Signed-off-by: David S. Miller <[email protected]> +--- + drivers/net/phy/fixed.c | 1 + + 1 file changed, 1 insertion(+) + +--- a/drivers/net/phy/fixed.c ++++ b/drivers/net/phy/fixed.c +@@ -274,6 +274,7 @@ struct phy_device *fixed_phy_register(un + + return phy; + } ++EXPORT_SYMBOL_GPL(fixed_phy_register); + + static int __init fixed_mdio_bus_init(void) + { _______________________________________________ openwrt-commits mailing list [email protected] https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-commits
