staging: r8822be: Remove some dead code
authorLarry Finger <Larry.Finger@lwfinger.net>
Wed, 30 Aug 2017 19:43:12 +0000 (14:43 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 31 Aug 2017 16:29:33 +0000 (18:29 +0200)
The code found inside an #ifdef CONFIG_RTL_DEBUG ... #endif section
is left over from debugging of the original driver, and should be
deleted.

Reported by: Andreas Ziegler <andreas.ziegler@fau.de>
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
Cc: Ping-Ke Shih <pkshih@realtek.com>
Cc: Yan-Hsuan Chuang <yhchuang@realtek.com>
Cc: Birming Chiu <birming@realtek.com>
Cc: Shaofu <shaofu@realtek.com>
Cc: Steven Ting <steventing@realtek.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtlwifi/halmac/rtl_halmac.c

index 031bf2c6078f9d15d774e9cc8269cabdf8544ad6..2b1c5fae64ef885da6a5c779ac3d10db0c2a8704 100644 (file)
@@ -386,26 +386,6 @@ static void deinit_priv(struct rtl_halmac *halmac)
                u32 count, size;
 
                count = HALMAC_FEATURE_ALL + 1;
-#ifdef CONFIG_RTL_DEBUG
-               {
-                       struct submit_ctx *sctx;
-                       u32 i;
-
-                       for (i = 0; i < count; i++) {
-                               if (!indicator[i].sctx)
-                                       continue;
-
-                               RT_TRACE(
-                                       rtlpriv, COMP_HALMAC, DBG_LOUD,
-                                       "%s: <WARN> %s id(%d) sctx still exist!!\n",
-                                       __func__, RTL_HALMAC_FEATURE_NAME[i],
-                                       i);
-                               sctx = indicator[i].sctx;
-                               indicator[i].sctx = NULL;
-                               rtl_mfree((u8 *)sctx, sizeof(*sctx));
-                       }
-               }
-#endif /* !CONFIG_RTL_DEBUG */
                size = sizeof(*indicator) * count;
                kfree((u8 *)indicator);
        }