staging: rtl8712: Replace r8712_free_evt_priv()
authorNishka Dasgupta <nishkadg.linux@gmail.com>
Mon, 24 Jun 2019 05:48:58 +0000 (11:18 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 26 Jun 2019 02:00:08 +0000 (10:00 +0800)
Remove function r8712_free_evt_priv as all it does is call
_free_evt_priv.
Rename _free_evt_priv to r8712_free_evt_priv to maintain compatibility
with call sites.
Change type of new r8712_free_evt_priv from static to non-static to
match old definition.

Signed-off-by: Nishka Dasgupta <nishkadg.linux@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8712/rtl871x_cmd.c

index 269afe8cfd2a94260b8921cce24a3f1b264cc87f..b793edba5505812f9b59057a144f1d52d1edbe4b 100644 (file)
@@ -87,7 +87,7 @@ int r8712_init_evt_priv(struct evt_priv *pevtpriv)
        return 0;
 }
 
-static void _free_evt_priv(struct evt_priv *pevtpriv)
+void r8712_free_evt_priv(struct evt_priv *pevtpriv)
 {
        kfree(pevtpriv->evt_allocated_buf);
 }
@@ -135,11 +135,6 @@ static struct cmd_obj *_dequeue_cmd(struct  __queue *queue)
        return obj;
 }
 
-void r8712_free_evt_priv(struct evt_priv *pevtpriv)
-{
-       _free_evt_priv(pevtpriv);
-}
-
 void r8712_enqueue_cmd(struct cmd_priv *pcmdpriv, struct cmd_obj *obj)
 {
        if (pcmdpriv->padapter->eeprompriv.bautoload_fail_flag)