public inbox for linux-staging@lists.linux.dev
 help / color / mirror / Atom feed
From: luka.gejak@linux.dev
To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Luka Gejak <luka.gejak@linux.dev>,
	linux-staging@lists.linux.dev, linux-kernel@vger.kernel.org,
	Dan Carpenter <error27@gmail.com>
Subject: [PATCH 00/11] staging: rtl8723bs: coding style cleanups
Date: Mon, 13 Apr 2026 12:14:21 +0200	[thread overview]
Message-ID: <20260413101432.158925-1-luka.gejak@linux.dev> (raw)

From: Luka Gejak <luka.gejak@linux.dev>

This patch series resolves multiple coding style issues in the 
rtl8723bs driver to adhere to the Linux kernel coding style. The 
changes address various warnings reported by checkpatch.pl across the 
core, hal, and os_dep directories. No functional change intended.

Luka Gejak (11):
  staging: rtl8723bs: core: fix spacing around operators and casts
  staging: rtl8723bs: hal: fix spacing around operators and casts
  staging: rtl8723bs: os_dep: fix spacing around operators
  staging: rtl8723bs: core: align parameters with open parenthesis
  staging: rtl8723bs: hal: align parameters with open parenthesis
  staging: rtl8723bs: os_dep: align parameters with open parenthesis
  staging: rtl8723bs: core: remove blank lines before closing brace
  staging: rtl8723bs: hal: remove blank lines before closing brace
  staging: rtl8723bs: os_dep: remove unnecessary braces
  staging: rtl8723bs: os_dep: remove blank lines before closing braces
  staging: rtl8723bs: hal: remove unnecessary braces

 .../staging/rtl8723bs/core/rtw_ieee80211.c    |   9 +-
 .../staging/rtl8723bs/core/rtw_ioctl_set.c    |  13 +-
 drivers/staging/rtl8723bs/core/rtw_mlme.c     |  20 +-
 drivers/staging/rtl8723bs/core/rtw_mlme_ext.c | 302 +++++++-----------
 drivers/staging/rtl8723bs/core/rtw_recv.c     |  68 +---
 drivers/staging/rtl8723bs/core/rtw_security.c |   7 +-
 drivers/staging/rtl8723bs/core/rtw_sta_mgt.c  |   2 +-
 .../staging/rtl8723bs/core/rtw_wlan_util.c    |   2 +-
 drivers/staging/rtl8723bs/core/rtw_xmit.c     |  20 +-
 .../staging/rtl8723bs/hal/HalBtc8723b1Ant.c   |  10 +-
 .../staging/rtl8723bs/hal/HalBtc8723b2Ant.c   | 141 ++++----
 .../staging/rtl8723bs/hal/HalHWImg8723B_RF.c  |  24 +-
 drivers/staging/rtl8723bs/hal/HalPhyRf.c      |  15 +-
 .../staging/rtl8723bs/hal/HalPhyRf_8723B.c    | 194 +++++------
 drivers/staging/rtl8723bs/hal/HalPwrSeqCmd.c  |   6 +-
 drivers/staging/rtl8723bs/hal/hal_btcoex.c    |   9 +-
 drivers/staging/rtl8723bs/hal/hal_com.c       |  25 +-
 .../staging/rtl8723bs/hal/hal_com_phycfg.c    |  38 +--
 drivers/staging/rtl8723bs/hal/hal_intf.c      |   6 +-
 drivers/staging/rtl8723bs/hal/hal_pwr_seq.c   |  32 +-
 drivers/staging/rtl8723bs/hal/hal_sdio.c      |   2 +-
 drivers/staging/rtl8723bs/hal/odm.c           |  32 +-
 .../staging/rtl8723bs/hal/odm_CfoTracking.c   |   4 +-
 drivers/staging/rtl8723bs/hal/odm_DIG.c       |  55 ++--
 .../rtl8723bs/hal/odm_DynamicBBPowerSaving.c  |   9 +-
 drivers/staging/rtl8723bs/hal/odm_HWConfig.c  |  57 ++--
 .../rtl8723bs/hal/odm_RegConfig8723B.c        |   6 +-
 drivers/staging/rtl8723bs/hal/rtl8723b_cmd.c  |  93 +++---
 drivers/staging/rtl8723bs/hal/rtl8723b_dm.c   |   7 +-
 .../staging/rtl8723bs/hal/rtl8723b_hal_init.c | 260 +++++++--------
 .../staging/rtl8723bs/hal/rtl8723b_phycfg.c   |  54 ++--
 .../staging/rtl8723bs/hal/rtl8723b_rf6052.c   |   3 -
 .../staging/rtl8723bs/hal/rtl8723bs_recv.c    |   8 +-
 .../staging/rtl8723bs/hal/rtl8723bs_xmit.c    |  15 +-
 drivers/staging/rtl8723bs/hal/sdio_halinit.c  |   8 +-
 drivers/staging/rtl8723bs/hal/sdio_ops.c      |   1 -
 .../staging/rtl8723bs/os_dep/ioctl_cfg80211.c |  12 +-
 drivers/staging/rtl8723bs/os_dep/sdio_intf.c  |   5 +-
 drivers/staging/rtl8723bs/os_dep/wifi_regd.c  |   2 +-
 39 files changed, 661 insertions(+), 915 deletions(-)

-- 
2.53.0


             reply	other threads:[~2026-04-13 10:15 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-04-13 10:14 luka.gejak [this message]
2026-04-13 10:14 ` [PATCH 01/11] staging: rtl8723bs: core: fix spacing around operators and casts luka.gejak
2026-04-13 10:14 ` [PATCH 02/11] staging: rtl8723bs: hal: " luka.gejak
2026-04-13 10:14 ` [PATCH 03/11] staging: rtl8723bs: os_dep: fix spacing around operators luka.gejak
2026-04-13 10:14 ` [PATCH 04/11] staging: rtl8723bs: core: align parameters with open parenthesis luka.gejak
2026-04-13 10:14 ` [PATCH 05/11] staging: rtl8723bs: hal: " luka.gejak
2026-04-13 10:14 ` [PATCH 06/11] staging: rtl8723bs: os_dep: " luka.gejak
2026-04-13 10:14 ` [PATCH 07/11] staging: rtl8723bs: core: remove blank lines before closing brace luka.gejak
2026-04-13 10:14 ` [PATCH 08/11] staging: rtl8723bs: hal: " luka.gejak
2026-04-13 10:14 ` [PATCH 09/11] staging: rtl8723bs: os_dep: remove unnecessary braces luka.gejak
2026-04-13 10:14 ` [PATCH 10/11] staging: rtl8723bs: os_dep: remove blank lines before closing braces luka.gejak
2026-04-13 10:14 ` [PATCH 11/11] staging: rtl8723bs: hal: remove unnecessary braces luka.gejak

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20260413101432.158925-1-luka.gejak@linux.dev \
    --to=luka.gejak@linux.dev \
    --cc=error27@gmail.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-staging@lists.linux.dev \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox