All of lore.kernel.org
 help / color / mirror / Atom feed
From: <pkshih@realtek.com>
To: <kvalo@codeaurora.org>
Cc: <yhchuang@realtek.com>, <Larry.Finger@lwfinger.net>,
	<johannes.berg@intel.com>, <linux-wireless@vger.kernel.org>
Subject: [PATCH 00/11] rtlwifi: change rtlwifi maintainer and merge commits from staging
Date: Fri, 29 Dec 2017 16:31:01 +0800	[thread overview]
Message-ID: <20171229083112.31540-1-pkshih@realtek.com> (raw)

From: Ping-Ke Shih <pkshih@realtek.com>

Hello Kalle,

This patchset contain a patch written by Larry to change maintainer.
Since I'm a newbie maintainer, need your comments on my mistakes in the
future. Second part is the commits existed in staging's rtlwifi, and most
of them fix coding style issues so I merge them to make code consistent.
Finally, I put developing patches in third part.

Part 1: Change maintainer
  MAINTAINERS: Change maintainer for rtlwifi

Part 2: Merge commits from staing's rtlwifi
  The original logs are reserved, if this isn't appropriate, please give me
  comments.

  rtlwifi: check for array overflow
  rtlwifi: fix parenthesis alignment
  rtlwifi: use kcalloc instead of multiply
  rtlwifi: Remove unnecessary 'out of memory' message
  rtlwifi: mark expected switch fall-through in rtl_make_smps_action
  rtlwifi: Remove unnecessary parentheses

Part 3:
  We continue to develop and submit rtl8822be, and it is welcome to give us
  comments on rtlwifi RFC of the new components (ie. phydm and halamc).

  rtlwifi: rtl8723: Add error handling to no existing firmware
  rtlwifi: Improve debugging by using debugfs
  rtlwifi: btcoex: Use seq_file to dump btcoex status
  rtlwifi: fill FW version and subversion

---

Dan Carpenter (1):
  rtlwifi: check for array overflow

Frank A. Cancio Bello (1):
  rtlwifi: Remove unnecessary parentheses

Gustavo A. R. Silva (1):
  rtlwifi: mark expected switch fall-through in rtl_make_smps_action

Larry Finger (1):
  MAINTAINERS: Change maintainer for rtlwifi

Ping-Ke Shih (5):
  rtlwifi: fix parenthesis alignment
  rtlwifi: rtl8723: Add error handling to no existing firmware
  rtlwifi: Improve debugging by using debugfs
  rtlwifi: btcoex: Use seq_file to dump btcoex status
  rtlwifi: fill FW version and subversion

Shreeya Patel (1):
  rtlwifi: Remove unnecessary 'out of memory' message

Tobin C. Harding (1):
  rtlwifi: use kcalloc instead of multiply

 MAINTAINERS                                        |   6 +-
 drivers/net/wireless/realtek/rtlwifi/base.c        |  26 +-
 .../realtek/rtlwifi/btcoexist/halbtc8192e2ant.c    | 203 ++++-----
 .../realtek/rtlwifi/btcoexist/halbtc8192e2ant.h    |   3 +-
 .../realtek/rtlwifi/btcoexist/halbtc8723b1ant.c    | 269 ++++++------
 .../realtek/rtlwifi/btcoexist/halbtc8723b1ant.h    |   3 +-
 .../realtek/rtlwifi/btcoexist/halbtc8723b2ant.c    | 206 ++++-----
 .../realtek/rtlwifi/btcoexist/halbtc8723b2ant.h    |   3 +-
 .../realtek/rtlwifi/btcoexist/halbtc8821a1ant.c    | 285 ++++++------
 .../realtek/rtlwifi/btcoexist/halbtc8821a1ant.h    |   3 +-
 .../realtek/rtlwifi/btcoexist/halbtc8821a2ant.c    | 177 ++++----
 .../realtek/rtlwifi/btcoexist/halbtc8821a2ant.h    |   3 +-
 .../realtek/rtlwifi/btcoexist/halbtcoutsrc.c       | 133 +++++-
 .../realtek/rtlwifi/btcoexist/halbtcoutsrc.h       |  14 +-
 .../wireless/realtek/rtlwifi/btcoexist/rtl_btc.c   |   6 +
 .../wireless/realtek/rtlwifi/btcoexist/rtl_btc.h   |   1 +
 drivers/net/wireless/realtek/rtlwifi/core.c        |  28 +-
 drivers/net/wireless/realtek/rtlwifi/debug.c       | 483 ++++++++++++++++++++-
 drivers/net/wireless/realtek/rtlwifi/debug.h       |  12 +
 drivers/net/wireless/realtek/rtlwifi/efuse.c       |   4 +-
 drivers/net/wireless/realtek/rtlwifi/pci.c         |   6 +
 drivers/net/wireless/realtek/rtlwifi/rc.c          |  16 +-
 .../net/wireless/realtek/rtlwifi/rtl8188ee/fw.c    |   2 +
 .../realtek/rtlwifi/rtl8723com/fw_common.c         |   4 +-
 drivers/net/wireless/realtek/rtlwifi/wifi.h        |   9 +
 25 files changed, 1230 insertions(+), 675 deletions(-)

-- 
2.14.1

             reply	other threads:[~2017-12-29  8:31 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-12-29  8:31 pkshih [this message]
2017-12-29  8:31 ` [PATCH 01/11] MAINTAINERS: Change maintainer for rtlwifi pkshih
2018-01-08 17:14   ` [01/11] " Kalle Valo
2017-12-29  8:31 ` [PATCH 02/11] rtlwifi: check for array overflow pkshih
2017-12-29  8:31 ` [PATCH 03/11] rtlwifi: fix parenthesis alignment pkshih
2017-12-29  8:31 ` [PATCH 04/11] rtlwifi: use kcalloc instead of multiply pkshih
2017-12-29  8:31 ` [PATCH 05/11] rtlwifi: Remove unnecessary 'out of memory' message pkshih
2017-12-29  8:31 ` [PATCH 06/11] rtlwifi: mark expected switch fall-through in rtl_make_smps_action pkshih
2017-12-29  8:31 ` [PATCH 07/11] rtlwifi: Remove unnecessary parentheses pkshih
2017-12-29  8:31 ` [PATCH 08/11] rtlwifi: rtl8723: Add error handling to no existing firmware pkshih
2017-12-29  8:31 ` [PATCH 09/11] rtlwifi: Improve debugging by using debugfs pkshih
2017-12-29  8:31 ` [PATCH 10/11] rtlwifi: btcoex: Use seq_file to dump btcoex status pkshih
2017-12-29  8:31 ` [PATCH 11/11] rtlwifi: fill FW version and subversion pkshih

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=20171229083112.31540-1-pkshih@realtek.com \
    --to=pkshih@realtek.com \
    --cc=Larry.Finger@lwfinger.net \
    --cc=johannes.berg@intel.com \
    --cc=kvalo@codeaurora.org \
    --cc=linux-wireless@vger.kernel.org \
    --cc=yhchuang@realtek.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.