]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
net: phylink: Drop unused defines for SUPPORTED/ADVERTISED_INTERFACES
authorAlexander Duyck <alexanderduyck@fb.com>
Sun, 27 Apr 2025 19:59:49 +0000 (12:59 -0700)
committerJakub Kicinski <kuba@kernel.org>
Tue, 29 Apr 2025 18:26:34 +0000 (11:26 -0700)
The defines for SUPPORTED_INTERFACES and ADVERTISED_INTERFACES both appear
to be unused. I couldn't find anything that actually references them in the
original diff that added them and it seems like they have persisted despite
using deprecated defines that aren't supposed to be used as per the
ethtool.h header that defines the bits they are composed of.

Since they are unused, and not supposed to be used anymore I am just
dropping the lines of code since they seem to just be occupying space.

Signed-off-by: Alexander Duyck <alexanderduyck@fb.com>
Reviewed-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
Link: https://patch.msgid.link/174578398922.1580647.9720643128205980455.stgit@ahduyck-xeon-server.home.arpa
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/phy/phylink.c

index 1bdd5d8bb5b02166298eee4730841f140bfe97da..0faa3d97e06b9405072046ccea9b51a1e6793dd8 100644 (file)
 #include "sfp.h"
 #include "swphy.h"
 
-#define SUPPORTED_INTERFACES \
-       (SUPPORTED_TP | SUPPORTED_MII | SUPPORTED_FIBRE | \
-        SUPPORTED_BNC | SUPPORTED_AUI | SUPPORTED_Backplane)
-#define ADVERTISED_INTERFACES \
-       (ADVERTISED_TP | ADVERTISED_MII | ADVERTISED_FIBRE | \
-        ADVERTISED_BNC | ADVERTISED_AUI | ADVERTISED_Backplane)
-
 enum {
        PHYLINK_DISABLE_STOPPED,
        PHYLINK_DISABLE_LINK,