diff options
author | 2025-02-09 13:12:44 +0100 | |
---|---|---|
committer | 2025-02-11 16:34:03 -0800 | |
commit | 16d11fdaeb22715d8b55b08890173ffa2326baee (patch) | |
tree | d4f6ffc653c753210304d89a420cb7eb023104e6 | |
parent | hamradio: baycom: replace strcpy() with strscpy() (diff) | |
download | wireguard-linux-16d11fdaeb22715d8b55b08890173ffa2326baee.tar.xz wireguard-linux-16d11fdaeb22715d8b55b08890173ffa2326baee.zip |
net: phy: remove unused PHY_INIT_TIMEOUT and PHY_FORCE_TIMEOUT
Both definitions are unused. Last users have been removed with:
f3ba9d490d6e ("net: s6gmac: remove driver")
2bd229df5e2e ("net: phy: remove state PHY_FORCING")
Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
Reviewed-by: Gerhard Engleder <gerhard@engleder-embedded.com>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Link: https://patch.msgid.link/f8e7b8ed-a665-41ad-b0ce-cbfdb65262ef@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
-rw-r--r-- | include/linux/phy.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/linux/phy.h b/include/linux/phy.h index 29df4c602589..83994b394d8e 100644 --- a/include/linux/phy.h +++ b/include/linux/phy.h @@ -303,9 +303,6 @@ static inline long rgmii_clock(int speed) } } -#define PHY_INIT_TIMEOUT 100000 -#define PHY_FORCE_TIMEOUT 10 - #define PHY_MAX_ADDR 32 /* Used when trying to connect to a specific phy (mii bus id:phy device id) */ |