Staging: rtl8192e: Use %s and __func__ in strings
authorPuranjay Mohan <puranjay12@gmail.com>
Tue, 14 May 2019 21:44:07 +0000 (03:14 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 20 May 2019 05:40:41 +0000 (07:40 +0200)
Fix following checkpatch.pl warnings by using %s and __func__
in strings instead of function names.

WARNING: Prefer using '"%s...", __func__' to using '_rtl92e_dm_check_rate_adaptive', this function's name, in a string
WARNING: Prefer using '"%s...", __func__' to using 'rtl92e_dm_restore_state', this function's name, in a string

Signed-off-by: Puranjay Mohan <puranjay12@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8192e/rtl8192e/rtl_dm.c

index 55d8579..1b7e3fd 100644 (file)
@@ -334,7 +334,7 @@ static void _rtl92e_dm_check_rate_adaptive(struct net_device *dev)
 
        if (!priv->up) {
                RT_TRACE(COMP_RATE,
-                        "<---- _rtl92e_dm_check_rate_adaptive(): driver is going to unload\n");
+                        "<---- %s: driver is going to unload\n", __func__);
                return;
        }
 
@@ -1178,7 +1178,7 @@ void rtl92e_dm_restore_state(struct net_device *dev)
 
        if (!priv->up) {
                RT_TRACE(COMP_RATE,
-                        "<---- rtl92e_dm_restore_state(): driver is going to unload\n");
+                        "<---- %s: driver is going to unload\n", __func__);
                return;
        }