[tip: timers/clocksource] clocksource/drivers/sh_mtu2: Drop unused assignment of platform_device_id

From: tip-bot2 for Uwe Kleine-König (The Capable Hub)

Date: Mon Aug 17 2026 - 04:40:02 EST


The following commit has been merged into the timers/clocksource branch of tip:

Commit-ID: a9fbf2c80545e92e50af8061280b77d6a6ac357a
Gitweb: https://git.kernel.org/tip/a9fbf2c80545e92e50af8061280b77d6a6ac357a
Author: Uwe Kleine-König (The Capable Hub) <u.kleine-koenig@xxxxxxxxxxxx>
AuthorDate: Wed, 17 Jun 2026 11:24:10 +02:00
Committer: Daniel Lezcano <daniel.lezcano@xxxxxxxxxx>
CommitterDate: Thu, 13 Aug 2026 18:12:21 +02:00

clocksource/drivers/sh_mtu2: Drop unused assignment of platform_device_id

The driver explicitly sets the .driver_data member of struct
platform_device_id to zero without relying on that value. Drop these
unused assignments.

While touching this array drop the comma after the list terminator and
use a named initializer for .name.

Signed-off-by: Uwe Kleine-König (The Capable Hub) <u.kleine-koenig@xxxxxxxxxxxx>
Signed-off-by: Daniel Lezcano <daniel.lezcano@xxxxxxxxxx>
Link: https://patch.msgid.link/a44e520e437f1b4017b3205c274a2457cbdeb43d.1781687723.git.u.kleine-koenig@xxxxxxxxxxxx
---
drivers/clocksource/sh_mtu2.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/clocksource/sh_mtu2.c b/drivers/clocksource/sh_mtu2.c
index 1997639..3aca86d 100644
--- a/drivers/clocksource/sh_mtu2.c
+++ b/drivers/clocksource/sh_mtu2.c
@@ -484,8 +484,8 @@ static int sh_mtu2_probe(struct platform_device *pdev)
}

static const struct platform_device_id sh_mtu2_id_table[] = {
- { "sh-mtu2", 0 },
- { },
+ { .name = "sh-mtu2" },
+ { }
};
MODULE_DEVICE_TABLE(platform, sh_mtu2_id_table);