From: Richard Fitzgerald <rf@opensource.cirrus.com>
To: wangweidong.a@awinic.com, lgirdwood@gmail.com,
broonie@kernel.org, perex@perex.cz, tiwai@suse.com,
arnd@arndb.de, srinivas.kandagatla@oss.qualcomm.com,
cy_huang@richtek.com, nick.li@foursemi.com,
hangyi@everest-semi.com, alexey.klimov@linaro.org,
niranjan.hy@ti.com, shenghao-ding@ti.com, linux@treblig.org,
thorsten.blum@linux.dev, yesanishhere@gmail.com, ardb@kernel.org,
ebiggers@google.com, linux-kernel@vger.kernel.org,
linux-sound@vger.kernel.org
Cc: yijiangtao@awinic.com
Subject: Re: [PATCH V2 0/7] Rework the awinic driver
Date: Fri, 17 Oct 2025 12:04:14 +0100 [thread overview]
Message-ID: <123bfcba-dc3c-4b67-a2d6-07745358fc23@opensource.cirrus.com> (raw)
In-Reply-To: <20251017101106.370742-1-wangweidong.a@awinic.com>
On 17/10/25 11:10, wangweidong.a@awinic.com wrote:
> From: Weidong Wang <wangweidong.a@awinic.com>
>
> Rework the awinic driver, extracting common components into
> separate aw-commmon-firmware.c and aw-common-device.c files.
>
Please remove me as a email recipient. These are all awinic
files, which are nothing to do with me. You seem to be spamming
a lot of people who probably also aren't related to these files.
You only need to email people that get_maintainers shows as
Maintainer or Reviewer, and also the mailing lists.
You don't need to send to everyone who has ever committed a change
to Kconfig.
> sound/soc/codecs/Kconfig | 14 +-
> sound/soc/codecs/Makefile | 8 +-
> sound/soc/codecs/aw-common-device.c | 508 +++++
> sound/soc/codecs/aw-common-device.h | 206 ++
> .../aw88395_lib.c => aw-common-firmware.c} | 150 +-
> sound/soc/codecs/aw-common-firmware.h | 211 ++
> sound/soc/codecs/aw87390.c | 118 +-
> sound/soc/codecs/aw87390.h | 16 -
> sound/soc/codecs/aw88081.c | 357 +---
> sound/soc/codecs/aw88081.h | 33 -
> sound/soc/codecs/aw88166.c | 819 ++------
> sound/soc/codecs/aw88166.h | 58 -
> sound/soc/codecs/aw88261.c | 427 +---
> sound/soc/codecs/aw88261.h | 52 -
> sound/soc/codecs/aw88395.c | 1333 +++++++++++++
> .../{aw88395/aw88395_reg.h => aw88395.h} | 58 +-
> sound/soc/codecs/aw88395/aw88395.c | 576 ------
> sound/soc/codecs/aw88395/aw88395.h | 58 -
> sound/soc/codecs/aw88395/aw88395_data_type.h | 142 --
> sound/soc/codecs/aw88395/aw88395_device.c | 1720 -----------------
> sound/soc/codecs/aw88395/aw88395_device.h | 214 --
> sound/soc/codecs/aw88395/aw88395_lib.h | 92 -
> sound/soc/codecs/aw88399.c | 1027 ++--------
> sound/soc/codecs/aw88399.h | 93 +-
> 24 files changed, 2929 insertions(+), 5361 deletions(-)
> create mode 100644 sound/soc/codecs/aw-common-device.c
> create mode 100644 sound/soc/codecs/aw-common-device.h
> rename sound/soc/codecs/{aw88395/aw88395_lib.c => aw-common-firmware.c} (89%)
> create mode 100644 sound/soc/codecs/aw-common-firmware.h
> create mode 100644 sound/soc/codecs/aw88395.c
> rename sound/soc/codecs/{aw88395/aw88395_reg.h => aw88395.h} (91%)
> delete mode 100644 sound/soc/codecs/aw88395/aw88395.c
> delete mode 100644 sound/soc/codecs/aw88395/aw88395.h
> delete mode 100644 sound/soc/codecs/aw88395/aw88395_data_type.h
> delete mode 100644 sound/soc/codecs/aw88395/aw88395_device.c
> delete mode 100644 sound/soc/codecs/aw88395/aw88395_device.h
> delete mode 100644 sound/soc/codecs/aw88395/aw88395_lib.h
>
>
> base-commit: 98ac9cc4b4452ed7e714eddc8c90ac4ae5da1a09
prev parent reply other threads:[~2025-10-17 11:05 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-17 10:10 [PATCH V2 0/7] Rework the awinic driver wangweidong.a
2025-10-17 10:10 ` [PATCH V2 1/7] ASoC: codecs:Rework the awinic driver lib wangweidong.a
2025-10-20 1:40 ` Mark Brown
2025-10-23 11:50 ` wangweidong.a
2025-10-23 11:55 ` Mark Brown
2025-10-23 12:05 ` wangweidong.a
2025-10-17 10:11 ` [PATCH V2 2/7] ASoC: codecs: Rework the aw88395 driver wangweidong.a
2025-10-17 10:11 ` [PATCH V2 3/7] ASoC: codecs: Rework the aw87390 driver wangweidong.a
2025-10-17 10:11 ` [PATCH V2 4/7] ASoC: codecs: Rework the aw88081 driver wangweidong.a
2025-10-17 10:11 ` [PATCH V2 5/7] ASoC: codecs: Rework the aw88166 driver wangweidong.a
2025-10-17 10:11 ` [PATCH V2 6/7] ASoC: codecs: Rework the aw88261 driver wangweidong.a
2025-10-17 10:11 ` [PATCH V2 7/7] ASoC: codecs: Rework the aw88399 driver wangweidong.a
2025-10-17 11:04 ` Richard Fitzgerald [this message]
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=123bfcba-dc3c-4b67-a2d6-07745358fc23@opensource.cirrus.com \
--to=rf@opensource.cirrus.com \
--cc=alexey.klimov@linaro.org \
--cc=ardb@kernel.org \
--cc=arnd@arndb.de \
--cc=broonie@kernel.org \
--cc=cy_huang@richtek.com \
--cc=ebiggers@google.com \
--cc=hangyi@everest-semi.com \
--cc=lgirdwood@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-sound@vger.kernel.org \
--cc=linux@treblig.org \
--cc=nick.li@foursemi.com \
--cc=niranjan.hy@ti.com \
--cc=perex@perex.cz \
--cc=shenghao-ding@ti.com \
--cc=srinivas.kandagatla@oss.qualcomm.com \
--cc=thorsten.blum@linux.dev \
--cc=tiwai@suse.com \
--cc=wangweidong.a@awinic.com \
--cc=yesanishhere@gmail.com \
--cc=yijiangtao@awinic.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox