staging: r8188eu: rtw_os_recv_resource_free() is empty
authorMichael Straube <straube.linux@gmail.com>
Sat, 8 Jan 2022 08:27:34 +0000 (09:27 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 25 Jan 2022 15:15:52 +0000 (16:15 +0100)
The function rtw_os_recv_resource_free() is empty. Remove it.

Signed-off-by: Michael Straube <straube.linux@gmail.com>
Link: https://lore.kernel.org/r/20220108082736.16788-4-straube.linux@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/r8188eu/core/rtw_recv.c
drivers/staging/r8188eu/include/recv_osdep.h
drivers/staging/r8188eu/os_dep/recv_linux.c

index 51a13262a226fb3f622fb9a964e7a306a430f243..72007952ee745dd8f18b0cda6044f5cb5b0efec3 100644 (file)
@@ -100,8 +100,6 @@ void _rtw_free_recv_priv(struct recv_priv *precvpriv)
 
        rtw_free_uc_swdec_pending_queue(padapter);
 
-       rtw_os_recv_resource_free(precvpriv);
-
        vfree(precvpriv->pallocated_frame_buf);
 
        rtl8188eu_free_recv_priv(padapter);
index 4b5e3dde4590a38f28e2ad2bd22dc7e08639f67d..4c6cf5b1ac762d938ab0654a3fb22c1a4e653163 100644 (file)
@@ -21,7 +21,6 @@ void rtw_free_recv_priv(struct recv_priv *precvpriv);
 
 int rtw_os_recv_resource_init(struct recv_priv *recvpr, struct adapter *adapt);
 int rtw_os_recv_resource_alloc(struct adapter *adapt, struct recv_frame *recvfr);
-void rtw_os_recv_resource_free(struct recv_priv *precvpriv);
 
 int rtw_os_recvbuf_resource_alloc(struct adapter *adapt, struct recv_buf *buf);
 int rtw_os_recvbuf_resource_free(struct adapter *adapt, struct recv_buf *buf);
index 41c4e35d967f9ed607cf0c48963a9f65fc8871f9..0d3110a4c3d211a54b9c8c7a222195723386ce1c 100644 (file)
@@ -28,11 +28,6 @@ int rtw_os_recv_resource_alloc(struct adapter *padapter,
        return _SUCCESS;
 }
 
-/* free os related resource in struct recv_frame */
-void rtw_os_recv_resource_free(struct recv_priv *precvpriv)
-{
-}
-
 /* alloc os related resource in struct recv_buf */
 int rtw_os_recvbuf_resource_alloc(struct adapter *padapter,
                struct recv_buf *precvbuf)