From: "Uwe Kleine-König (The Capable Hub)" <u.kleine-koenig@baylibre.com>
To: David Heidelberg <david@ixit.cz>,
Krzysztof Kozlowski <krzysztof.kozlowski@oss.qualcomm.com>,
Simon Horman <horms@kernel.org>, Jakub Kicinski <kuba@kernel.org>,
Tomasz Unger <tomasz.unger@yahoo.pl>, Carl Lee <carl.lee@amd.com>,
Ian Ray <ian.ray@gehealthcare.com>,
Takashi Sakamoto <o-takashi@sakamocchi.jp>,
Bjorn Helgaas <bhelgaas@google.com>,
Danilo Krummrich <dakr@kernel.org>,
Krzysztof Kozlowski <krzk@kernel.org>,
Mark Greer <mgreer@animalcreek.com>,
Paolo Abeni <pabeni@redhat.com>,
Pengpeng Hou <pengpeng@iscas.ac.cn>, Kees Cook <kees@kernel.org>,
Bartosz Golaszewski <bartosz.golaszewski@oss.qualcomm.com>,
Linus Walleij <linusw@kernel.org>,
Johan Hovold <johan@kernel.org>, Jialu Xu <xujialu@vimux.org>
Cc: oe-linux-nfc@lists.linux.dev, linux-kernel@vger.kernel.org,
linux-wireless@vger.kernel.org
Subject: [PATCH v1 00/12] nfc: Various cleanups around device_id arrays
Date: Fri, 3 Jul 2026 17:46:14 +0200 [thread overview]
Message-ID: <cover.1783091699.git.u.kleine-koenig@baylibre.com> (raw)
Hello,
this series's objective is to convert device_id arrays of various
different device types to named initialisation. It contains a few
cleanups left and right that I spotted while working on these changes.
The follow up change is to replace .driver_data by an anonymous union,
see
https://lore.kernel.org/all/cover.1780048925.git.u.kleine-koenig@baylibre.com/
for the idea.
The changes here are not strictly necessary for my quest, but they align
the device_id structures to how they look and will look for other
subsystems.
Best regards
Uwe
Uwe Kleine-König (The Capable Hub) (12):
nfc: Drop __maybe_unused from acpi_device_id tables
nfc: Drop unused assignment of acpi_device_id driver data
nfc: Initialize acpi_device_id arrays using member names
nfc: Unify style of acpi_device_id arrays
nfc: pn544: Drop empty line between i2c_device_id array and
MODULE_DEVICE_TABLE()
nfc: Initialize mei_cl_device_idarrays using member names
nfc: Drop __maybe_unused from of_device_id tables
nfc: Unify style of of_device_id arrays
nfc: Drop unused assignment of spi_device_id driver data
nfc: Initialize spi_device_idarrays using member names
nfc: Unify style of spi_device_id arrays
nfc: Unify style of usb_device_id arrays
drivers/nfc/fdp/i2c.c | 4 ++--
drivers/nfc/microread/mei.c | 10 ++++++----
drivers/nfc/nfcmrvl/i2c.c | 6 +++---
drivers/nfc/nfcmrvl/spi.c | 8 ++++----
drivers/nfc/nfcmrvl/usb.c | 1 -
drivers/nfc/nxp-nci/i2c.c | 10 +++++-----
drivers/nfc/pn533/i2c.c | 10 +++++-----
drivers/nfc/pn533/uart.c | 4 ++--
drivers/nfc/pn544/i2c.c | 14 ++++++--------
drivers/nfc/pn544/mei.c | 10 ++++++----
drivers/nfc/port100.c | 4 ++--
drivers/nfc/s3fwrn5/i2c.c | 6 +++---
drivers/nfc/s3fwrn5/uart.c | 4 ++--
drivers/nfc/st-nci/i2c.c | 18 +++++++++---------
drivers/nfc/st-nci/spi.c | 18 +++++++++---------
drivers/nfc/st21nfca/i2c.c | 14 +++++++-------
drivers/nfc/st95hf/core.c | 8 ++++----
drivers/nfc/trf7970a.c | 12 +++++-------
18 files changed, 80 insertions(+), 81 deletions(-)
base-commit: 6eb8711ece2ce27e52e327a5b7a628ed39b97f45
--
2.55.0.11.g153666a7d9bb
next reply other threads:[~2026-07-03 15:47 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-03 15:46 Uwe Kleine-König (The Capable Hub) [this message]
2026-07-03 15:46 ` [PATCH v1 01/12] nfc: Drop __maybe_unused from acpi_device_id tables Uwe Kleine-König (The Capable Hub)
2026-07-03 15:46 ` [PATCH v1 02/12] nfc: Drop unused assignment of acpi_device_id driver data Uwe Kleine-König (The Capable Hub)
2026-07-03 15:46 ` [PATCH v1 03/12] nfc: Initialize acpi_device_id arrays using member names Uwe Kleine-König (The Capable Hub)
2026-07-07 17:12 ` Ian Ray
2026-07-03 15:46 ` [PATCH v1 04/12] nfc: Unify style of acpi_device_id arrays Uwe Kleine-König (The Capable Hub)
2026-07-03 15:46 ` [PATCH v1 05/12] nfc: pn544: Drop empty line between i2c_device_id array and MODULE_DEVICE_TABLE() Uwe Kleine-König (The Capable Hub)
2026-07-03 15:46 ` [PATCH v1 06/12] nfc: Initialize mei_cl_device_idarrays using member names Uwe Kleine-König (The Capable Hub)
2026-07-03 15:46 ` [PATCH v1 07/12] nfc: Drop __maybe_unused from of_device_id tables Uwe Kleine-König (The Capable Hub)
2026-07-07 17:28 ` Krzysztof Kozlowski
2026-07-08 5:05 ` Uwe Kleine-König (The Capable Hub)
2026-07-03 15:46 ` [PATCH v1 08/12] nfc: Unify style of of_device_id arrays Uwe Kleine-König (The Capable Hub)
2026-07-07 17:13 ` Ian Ray
2026-07-03 15:46 ` [PATCH v1 09/12] nfc: Drop unused assignment of spi_device_id driver data Uwe Kleine-König (The Capable Hub)
2026-07-03 15:46 ` [PATCH v1 10/12] nfc: Initialize spi_device_idarrays using member names Uwe Kleine-König (The Capable Hub)
2026-07-03 15:46 ` [PATCH v1 11/12] nfc: Unify style of spi_device_id arrays Uwe Kleine-König (The Capable Hub)
2026-07-03 15:46 ` [PATCH v1 12/12] nfc: Unify style of usb_device_id arrays Uwe Kleine-König (The Capable Hub)
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=cover.1783091699.git.u.kleine-koenig@baylibre.com \
--to=u.kleine-koenig@baylibre.com \
--cc=bartosz.golaszewski@oss.qualcomm.com \
--cc=bhelgaas@google.com \
--cc=carl.lee@amd.com \
--cc=dakr@kernel.org \
--cc=david@ixit.cz \
--cc=horms@kernel.org \
--cc=ian.ray@gehealthcare.com \
--cc=johan@kernel.org \
--cc=kees@kernel.org \
--cc=krzk@kernel.org \
--cc=krzysztof.kozlowski@oss.qualcomm.com \
--cc=kuba@kernel.org \
--cc=linusw@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-wireless@vger.kernel.org \
--cc=mgreer@animalcreek.com \
--cc=o-takashi@sakamocchi.jp \
--cc=oe-linux-nfc@lists.linux.dev \
--cc=pabeni@redhat.com \
--cc=pengpeng@iscas.ac.cn \
--cc=tomasz.unger@yahoo.pl \
--cc=xujialu@vimux.org \
/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.