diff options
| author | Michal Simek <[email protected]> | 2022-02-23 15:45:41 +0100 |
|---|---|---|
| committer | Michal Simek <[email protected]> | 2022-03-09 12:43:16 +0100 |
| commit | 3249116d8381a1a8f0d17c95acecd7c78b40e569 (patch) | |
| tree | ec1d56987dcae6722053a4dc67df57b69bb0f42c /drivers | |
| parent | db681d4929cac3f5d0a8ce638e7e5306fe6038d2 (diff) | |
net: phy: Remove static return type for phy_device_create()
Remove static return type for phy_device_create() to avoid file scope for
this function. Also add required prototype in phy.h.
Signed-off-by: Michal Simek <[email protected]>
Signed-off-by: T Karthik Reddy <[email protected]>
Link: https://lore.kernel.org/r/1517f4053403fbd53e899d500e7485d068a4f0b6.1645627539.git.michal.simek@xilinx.com
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/net/phy/phy.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/phy/phy.c b/drivers/net/phy/phy.c index c9fc20855ba..f63705e1b9a 100644 --- a/drivers/net/phy/phy.c +++ b/drivers/net/phy/phy.c @@ -659,9 +659,9 @@ static struct phy_driver *get_phy_driver(struct phy_device *phydev, return generic_for_interface(interface); } -static struct phy_device *phy_device_create(struct mii_dev *bus, int addr, - u32 phy_id, bool is_c45, - phy_interface_t interface) +struct phy_device *phy_device_create(struct mii_dev *bus, int addr, + u32 phy_id, bool is_c45, + phy_interface_t interface) { struct phy_device *dev; |
