Commit 21602e1a authored by Florian Fainelli's avatar Florian Fainelli Committed by David S. Miller

net: dsa: Fix dsa_legacy_register() return value

We need to make the dsa_legacy_register() stub return 0 in order for
dsa_init_module() to successfully register and continue registering the
ETH_P_XDSA packet handler.

Fixes: 2a93c1a3 ("net: dsa: Allow compiling out legacy support")
Reported-by: default avatarEgil Hjelmeland <privat@egil-hjelmeland.no>
Signed-off-by: default avatarFlorian Fainelli <f.fainelli@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent f619b009
...@@ -103,7 +103,7 @@ void dsa_legacy_unregister(void); ...@@ -103,7 +103,7 @@ void dsa_legacy_unregister(void);
#else #else
static inline int dsa_legacy_register(void) static inline int dsa_legacy_register(void)
{ {
return -ENODEV; return 0;
} }
static inline void dsa_legacy_unregister(void) { } static inline void dsa_legacy_unregister(void) { }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment