diff options
| author | Heiner Kallweit <[email protected]> | 2025-02-13 21:50:02 +0000 |
|---|---|---|
| committer | Jakub Kicinski <[email protected]> | 2025-02-15 01:07:46 +0000 |
| commit | ef6249e37df5eac72bacdfe0a3000b08ae153146 (patch) | |
| tree | 52f16bce87e411497a9d7fdaa4eedf6beffe8824 /drivers/net/phy/phy.c | |
| parent | net: phy: stop exporting feature arrays which aren't used outside phylib (diff) | |
| download | kernel-ef6249e37df5eac72bacdfe0a3000b08ae153146.tar.gz kernel-ef6249e37df5eac72bacdfe0a3000b08ae153146.zip | |
net: phy: stop exporting phy_queue_state_machine
phy_queue_state_machine() isn't used outside phy.c,
so stop exporting it.
Signed-off-by: Heiner Kallweit <[email protected]>
Reviewed-by: Mateusz Polchlopek <[email protected]>
Reviewed-by: Russell King (Oracle) <[email protected]>
Link: https://patch.msgid.link/[email protected]
Signed-off-by: Jakub Kicinski <[email protected]>
Diffstat (limited to 'drivers/net/phy/phy.c')
| -rw-r--r-- | drivers/net/phy/phy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/phy/phy.c b/drivers/net/phy/phy.c index 347ad1b64497..29fb19bb712b 100644 --- a/drivers/net/phy/phy.c +++ b/drivers/net/phy/phy.c @@ -520,12 +520,12 @@ int __phy_hwtstamp_set(struct phy_device *phydev, * @phydev: the phy_device struct * @jiffies: Run the state machine after these jiffies */ -void phy_queue_state_machine(struct phy_device *phydev, unsigned long jiffies) +static void phy_queue_state_machine(struct phy_device *phydev, + unsigned long jiffies) { mod_delayed_work(system_power_efficient_wq, &phydev->state_queue, jiffies); } -EXPORT_SYMBOL(phy_queue_state_machine); /** * phy_trigger_machine - Trigger the state machine to run now |
