summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUwe Kleine-König (The Capable Hub) <u.kleine-koenig@baylibre.com>2026-07-02 16:53:41 +0200
committerLee Jones <lee@kernel.org>2026-07-30 14:32:58 +0100
commitd0a1023960c8d4b64bd100e48ad0628e0ac82c5e (patch)
treeb44698d88f3270d12af97ea5971be713dc532bf6
parent02c54e90785c4d75eb0adf8e08f69b181e1d4758 (diff)
downloadlinux-next-d0a1023960c8d4b64bd100e48ad0628e0ac82c5e.tar.gz
linux-next-d0a1023960c8d4b64bd100e48ad0628e0ac82c5e.zip
mfd: Unify style of spi_device_id arrays
The two previous commits adapted the style of some spi_device_id arrays. Fix the remaining arrays to the same style, that is: - no comma after the list terminator and after an initializer iff the closing } is on the same line - a single space in the list terminator Signed-off-by: Uwe Kleine-König (The Capable Hub) <u.kleine-koenig@baylibre.com> Link: https://patch.msgid.link/323dc79eb1bcc55caf0163e26501e1de3e710554.1783003256.git.u.kleine-koenig@baylibre.com Signed-off-by: Lee Jones <lee@kernel.org>
-rw-r--r--drivers/mfd/altera-a10sr.c2
-rw-r--r--drivers/mfd/motorola-cpcap.c6
-rw-r--r--drivers/mfd/sprd-sc27xx-spi.c2
3 files changed, 5 insertions, 5 deletions
diff --git a/drivers/mfd/altera-a10sr.c b/drivers/mfd/altera-a10sr.c
index d53e433ab5c1..9c0262228655 100644
--- a/drivers/mfd/altera-a10sr.c
+++ b/drivers/mfd/altera-a10sr.c
@@ -155,7 +155,7 @@ MODULE_DEVICE_TABLE(of, altr_a10sr_spi_of_match);
static const struct spi_device_id altr_a10sr_spi_ids[] = {
{ .name = "a10sr" },
- { },
+ { }
};
MODULE_DEVICE_TABLE(spi, altr_a10sr_spi_ids);
diff --git a/drivers/mfd/motorola-cpcap.c b/drivers/mfd/motorola-cpcap.c
index d8243b956f87..38c93b1d7842 100644
--- a/drivers/mfd/motorola-cpcap.c
+++ b/drivers/mfd/motorola-cpcap.c
@@ -203,9 +203,9 @@ static const struct of_device_id cpcap_of_match[] = {
MODULE_DEVICE_TABLE(of, cpcap_of_match);
static const struct spi_device_id cpcap_spi_ids[] = {
- { .name = "cpcap", },
- { .name = "6556002", },
- {},
+ { .name = "cpcap" },
+ { .name = "6556002" },
+ { }
};
MODULE_DEVICE_TABLE(spi, cpcap_spi_ids);
diff --git a/drivers/mfd/sprd-sc27xx-spi.c b/drivers/mfd/sprd-sc27xx-spi.c
index 214bcbef0c27..9a8e6add8fca 100644
--- a/drivers/mfd/sprd-sc27xx-spi.c
+++ b/drivers/mfd/sprd-sc27xx-spi.c
@@ -295,7 +295,7 @@ MODULE_DEVICE_TABLE(of, sprd_pmic_match);
static const struct spi_device_id sprd_pmic_spi_ids[] = {
{ .name = "sc2730", .driver_data = PMIC_TYPE_SC2730 },
{ .name = "sc2731", .driver_data = PMIC_TYPE_SC2731 },
- {},
+ { }
};
MODULE_DEVICE_TABLE(spi, sprd_pmic_spi_ids);