diff options
author | Álvaro Fernández Rojas <noltari@gmail.com> | 2021-03-17 09:42:01 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-03-17 12:05:46 -0700 |
commit | ad426d7d966b525b73ed5a1842dd830312bbba71 (patch) | |
tree | bdefca74e54bf4a5cdd558f9b90ac932de1f619e /drivers/net/dsa/b53 | |
parent | 3600be5f58c18bee490e17c76f51d777a6410f42 (diff) |
net: dsa: b53: relax is63xx() condition
BCM63xx switches are present on bcm63xx and bmips devices.
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
Acked-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/dsa/b53')
-rw-r--r-- | drivers/net/dsa/b53/b53_priv.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/net/dsa/b53/b53_priv.h b/drivers/net/dsa/b53/b53_priv.h index 8419bb7f4505..82700a5714c1 100644 --- a/drivers/net/dsa/b53/b53_priv.h +++ b/drivers/net/dsa/b53/b53_priv.h @@ -186,11 +186,7 @@ static inline int is531x5(struct b53_device *dev) static inline int is63xx(struct b53_device *dev) { -#ifdef CONFIG_BCM63XX return dev->chip_id == BCM63XX_DEVICE_ID; -#else - return 0; -#endif } static inline int is5301x(struct b53_device *dev) |