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@xxxxxxxxx> --- drivers/net/wwan/wwan_core.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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: -- 2.26.3