[PATCH 00/13] staging: rtl8723bs: get rid of os_dep/recv_linux.c

Michael Straube posted 13 patches 1 month, 1 week ago
drivers/staging/rtl8723bs/Makefile            |   1 -
drivers/staging/rtl8723bs/core/rtw_recv.c     | 194 ++++++++++++++-
drivers/staging/rtl8723bs/core/rtw_sta_mgt.c  |   4 +-
.../staging/rtl8723bs/hal/rtl8723bs_recv.c    |   6 +-
drivers/staging/rtl8723bs/include/drv_types.h |   1 -
.../staging/rtl8723bs/include/recv_osdep.h    |  40 ----
drivers/staging/rtl8723bs/include/rtw_recv.h  |   4 +
drivers/staging/rtl8723bs/os_dep/recv_linux.c | 225 ------------------
8 files changed, 199 insertions(+), 276 deletions(-)
delete mode 100644 drivers/staging/rtl8723bs/include/recv_osdep.h
delete mode 100644 drivers/staging/rtl8723bs/os_dep/recv_linux.c
[PATCH 00/13] staging: rtl8723bs: get rid of os_dep/recv_linux.c
Posted by Michael Straube 1 month, 1 week ago
This series moves/merges the functions/functionality of os_dep/recv_linux.c
into the corresponding parts of the driver in the core directory to reduce
"os dependent" code.

The patches have been compile-tested only due to lack of hardware.

Michael Straube (13):
  staging: rtl8723bs: remove wrapper rtw_init_recv_timer
  staging: rtl8723bs: move rtw_recv_indicatepkt to rtw_recv.c
  staging: rtl8723bs: move rtw_handle_tkip_mic_err to rtw_recv.c
  staging: rtl8723bs: merge rtw_os_free_recvframe into rtw_recv.c
  staging: rtl8723bs: merge rtw_os_recv_resource_alloc into rtw_recv.c
  staging: rtl8723bs: merge rtw_os_recv_resource_free into rtw_recv.c
  staging: rtl8723bs: merge rtw_os_recvbuf_resource_free into
    rtl8723bs_recv.c
  staging: rtl8723bs: move rtw_os_alloc_msdu_pkt to rtw_recv.c
  staging: rtl8723bs: rename rtw_os_alloc_msdu_pkt
  staging: rtl8723bs: move rtw_os_recv_indicate_pkt to rtw_recv.c
  staging: rtl8723bs: rename rtw_os_recv_indicate_pkt
  staging: rtl8723bs: remove os_dep/recv_linux.c
  staging: rtl8723bs: remove include/recv_osdep.h

 drivers/staging/rtl8723bs/Makefile            |   1 -
 drivers/staging/rtl8723bs/core/rtw_recv.c     | 194 ++++++++++++++-
 drivers/staging/rtl8723bs/core/rtw_sta_mgt.c  |   4 +-
 .../staging/rtl8723bs/hal/rtl8723bs_recv.c    |   6 +-
 drivers/staging/rtl8723bs/include/drv_types.h |   1 -
 .../staging/rtl8723bs/include/recv_osdep.h    |  40 ----
 drivers/staging/rtl8723bs/include/rtw_recv.h  |   4 +
 drivers/staging/rtl8723bs/os_dep/recv_linux.c | 225 ------------------
 8 files changed, 199 insertions(+), 276 deletions(-)
 delete mode 100644 drivers/staging/rtl8723bs/include/recv_osdep.h
 delete mode 100644 drivers/staging/rtl8723bs/os_dep/recv_linux.c

-- 
2.51.0
Re: [PATCH 00/13] staging: rtl8723bs: get rid of os_dep/recv_linux.c
Posted by Hans de Goede 1 month, 1 week ago
Hi,

On 22-Aug-25 3:54 PM, Michael Straube wrote:
> This series moves/merges the functions/functionality of os_dep/recv_linux.c
> into the corresponding parts of the driver in the core directory to reduce
> "os dependent" code.
> 
> The patches have been compile-tested only due to lack of hardware.
> 
> Michael Straube (13):
>   staging: rtl8723bs: remove wrapper rtw_init_recv_timer
>   staging: rtl8723bs: move rtw_recv_indicatepkt to rtw_recv.c
>   staging: rtl8723bs: move rtw_handle_tkip_mic_err to rtw_recv.c
>   staging: rtl8723bs: merge rtw_os_free_recvframe into rtw_recv.c
>   staging: rtl8723bs: merge rtw_os_recv_resource_alloc into rtw_recv.c
>   staging: rtl8723bs: merge rtw_os_recv_resource_free into rtw_recv.c
>   staging: rtl8723bs: merge rtw_os_recvbuf_resource_free into
>     rtl8723bs_recv.c
>   staging: rtl8723bs: move rtw_os_alloc_msdu_pkt to rtw_recv.c
>   staging: rtl8723bs: rename rtw_os_alloc_msdu_pkt
>   staging: rtl8723bs: move rtw_os_recv_indicate_pkt to rtw_recv.c
>   staging: rtl8723bs: rename rtw_os_recv_indicate_pkt
>   staging: rtl8723bs: remove os_dep/recv_linux.c
>   staging: rtl8723bs: remove include/recv_osdep.h

Thanks, series looks good to me:

Reviewed-by: Hans de Goede <hansg@kernel.org>

for the series.

Regards,

Hans