Message ID | 20210603044954.8091-3-ryazanov.s.a@gmail.com (mailing list archive) |
---|---|
State | RFC |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | WWAN netdev creation framework tweaks | expand |
Context | Check | Description |
---|---|---|
netdev/tree_selection | success | Guessing tree name failed - patch did not apply |
diff --git a/drivers/net/wwan/wwan_core.c b/drivers/net/wwan/wwan_core.c index e2490c73ac33..32b2096c5036 100644 --- a/drivers/net/wwan/wwan_core.c +++ b/drivers/net/wwan/wwan_core.c @@ -737,7 +737,8 @@ static int __init wwan_init(void) goto destroy; } - err = 0; + return 0; + destroy: class_destroy(wwan_class); unregister:
Recover the successful return from the module initialization function that was accidentally lost during the netdev creation support integration. Fixes: ???? ("wwan: add interface creation support") Signed-off-by: Sergey Ryazanov <ryazanov.s.a@gmail.com> --- drivers/net/wwan/wwan_core.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)