linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/19] staging: r8188eu: migrate os_dep/xmit_linux.c
@ 2022-08-20 18:16 Michael Straube
  2022-08-20 18:16 ` [PATCH 01/19] staging: r8188eu: make rtw_remainder_len() static Michael Straube
                   ` (19 more replies)
  0 siblings, 20 replies; 23+ messages in thread
From: Michael Straube @ 2022-08-20 18:16 UTC (permalink / raw)
  To: gregkh; +Cc: Larry.Finger, phil, linux-staging, linux-kernel, Michael Straube

This series moves the functions, or their functionality, from
os_dep/xmit_linux.c to the core/* part of the driver and finally
removes os_dep/xmit_linux.c and the xmit_osdep.h header.

Tested on x86_64 with Inter-Tech DMG-02.

Please apply this on top of:
[PATCH] staging: r8188eu: remove rtw_endofpktfile()

Thanks,
Michael

Michael Straube (19):
  staging: r8188eu: make rtw_remainder_len() static
  staging: r8188eu: make rtw_os_xmit_schedule() static
  staging: r8188eu: rename rtw_os_xmit_schedule()
  staging: r8188eu: make rtw_os_xmit_resource_alloc() static
  staging: r8188eu: rename rtw_os_xmit_resource_alloc()
  staging: r8188eu: make rtw_os_xmit_resource_free() static
  staging: r8188eu: rename rtw_os_xmit_resource_free()
  staging: r8188eu: make _rtw_open_pktfile() static
  staging: r8188eu: rename _rtw_open_pktfile()
  staging: r8188eu: make _rtw_pktfile_read() static
  staging: r8188eu: rename _rtw_pktfile_read()
  staging: r8188eu: remove unnecessary initialization to zero
  staging: r8188eu: move struct pkt_file to rtw_xmit.h
  staging: r8188eu: move rtw_os_xmit_complete() to rtw_xmit.c
  staging: r8188eu: rename rtw_os_xmit_complete()
  staging: r8188eu: make rtw_os_pkt_complete() static
  staging: r8188eu: rename rtw_os_pkt_complete()
  staging: r8188eu: remove os_dep/xmit_linux.c
  staging: r8188eu: remove xmit_osdep.h

 drivers/staging/r8188eu/Makefile             |   1 -
 drivers/staging/r8188eu/core/rtw_mlme.c      |  23 +-
 drivers/staging/r8188eu/core/rtw_mlme_ext.c  |   2 +-
 drivers/staging/r8188eu/core/rtw_sta_mgt.c   |   1 -
 drivers/staging/r8188eu/core/rtw_xmit.c      | 232 +++++++++++++++++--
 drivers/staging/r8188eu/hal/rtl8188eu_xmit.c |   4 +-
 drivers/staging/r8188eu/include/rtw_xmit.h   |  16 +-
 drivers/staging/r8188eu/include/xmit_osdep.h |  48 ----
 drivers/staging/r8188eu/os_dep/os_intfs.c    |   7 +-
 drivers/staging/r8188eu/os_dep/usb_intf.c    |   1 -
 drivers/staging/r8188eu/os_dep/xmit_linux.c  | 226 ------------------
 11 files changed, 251 insertions(+), 310 deletions(-)
 delete mode 100644 drivers/staging/r8188eu/include/xmit_osdep.h
 delete mode 100644 drivers/staging/r8188eu/os_dep/xmit_linux.c

-- 
2.37.2


^ permalink raw reply	[flat|nested] 23+ messages in thread

end of thread, other threads:[~2022-08-22 17:59 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-20 18:16 [PATCH 00/19] staging: r8188eu: migrate os_dep/xmit_linux.c Michael Straube
2022-08-20 18:16 ` [PATCH 01/19] staging: r8188eu: make rtw_remainder_len() static Michael Straube
2022-08-21 19:57   ` Philipp Hortmann
2022-08-21 20:42     ` Michael Straube
2022-08-20 18:16 ` [PATCH 02/19] staging: r8188eu: make rtw_os_xmit_schedule() static Michael Straube
2022-08-20 18:16 ` [PATCH 03/19] staging: r8188eu: rename rtw_os_xmit_schedule() Michael Straube
2022-08-20 18:16 ` [PATCH 04/19] staging: r8188eu: make rtw_os_xmit_resource_alloc() static Michael Straube
2022-08-20 18:16 ` [PATCH 05/19] staging: r8188eu: rename rtw_os_xmit_resource_alloc() Michael Straube
2022-08-20 18:16 ` [PATCH 06/19] staging: r8188eu: make rtw_os_xmit_resource_free() static Michael Straube
2022-08-20 18:16 ` [PATCH 07/19] staging: r8188eu: rename rtw_os_xmit_resource_free() Michael Straube
2022-08-20 18:16 ` [PATCH 08/19] staging: r8188eu: make _rtw_open_pktfile() static Michael Straube
2022-08-20 18:16 ` [PATCH 09/19] staging: r8188eu: rename _rtw_open_pktfile() Michael Straube
2022-08-20 18:16 ` [PATCH 10/19] staging: r8188eu: make _rtw_pktfile_read() static Michael Straube
2022-08-20 18:16 ` [PATCH 11/19] staging: r8188eu: rename _rtw_pktfile_read() Michael Straube
2022-08-20 18:16 ` [PATCH 12/19] staging: r8188eu: remove unnecessary initialization to zero Michael Straube
2022-08-20 18:16 ` [PATCH 13/19] staging: r8188eu: move struct pkt_file to rtw_xmit.h Michael Straube
2022-08-20 18:16 ` [PATCH 14/19] staging: r8188eu: move rtw_os_xmit_complete() to rtw_xmit.c Michael Straube
2022-08-20 18:16 ` [PATCH 15/19] staging: r8188eu: rename rtw_os_xmit_complete() Michael Straube
2022-08-20 18:16 ` [PATCH 16/19] staging: r8188eu: make rtw_os_pkt_complete() static Michael Straube
2022-08-20 18:16 ` [PATCH 17/19] staging: r8188eu: rename rtw_os_pkt_complete() Michael Straube
2022-08-20 18:16 ` [PATCH 18/19] staging: r8188eu: remove os_dep/xmit_linux.c Michael Straube
2022-08-20 18:16 ` [PATCH 19/19] staging: r8188eu: remove xmit_osdep.h Michael Straube
2022-08-22 17:58 ` [PATCH 00/19] staging: r8188eu: migrate os_dep/xmit_linux.c Philipp Hortmann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).