]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
staging: rtlwifi: Return -ENOMEM instead of -1
authorAymen Qader <qader.aymen@gmail.com>
Sat, 29 Sep 2018 17:24:29 +0000 (18:24 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 2 Oct 2018 22:18:36 +0000 (15:18 -0700)
Use the ENOMEM constant instead of -1 for kzalloc failure checks in
rtl_halmac.c

Signed-off-by: Aymen Qader <qader.aymen@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtlwifi/halmac/rtl_halmac.c

index f0c6fc8c6aca61e2a20dcfe7f6ea03f15fd0119e..7bfc9620479ad040090260bd67e908d68233ff42 100644 (file)
@@ -209,7 +209,7 @@ static int init_halmac_event_with_waittime(struct rtl_priv *rtlpriv,
        if (!rtlpriv->halmac.indicator[id].comp) {
                comp = kzalloc(sizeof(*comp), GFP_KERNEL);
                if (!comp)
-                       return -1;
+                       return -ENOMEM;
        } else {
                RT_TRACE(rtlpriv, COMP_HALMAC, DBG_LOUD,
                         "%s: <WARN> id(%d) sctx is not NULL!!\n", __func__,
@@ -359,7 +359,7 @@ static int init_priv(struct rtl_halmac *halmac)
        size = sizeof(*indicator) * count;
        indicator = kzalloc(size, GFP_KERNEL);
        if (!indicator)
-               return -1;
+               return -ENOMEM;
        halmac->indicator = indicator;
 
        return 0;