[PATCH v1 1/2] clk: si5341: Drop unused i2c driver_data

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

Date: Fri May 15 2026 - 11:11:08 EST


The driver doesn't make use of the value that was explicitly assigned to
the .driver_data member. Drop the assignment.

Signed-off-by: Uwe Kleine-König (The Capable Hub) <u.kleine-koenig@xxxxxxxxxxxx>
---
drivers/clk/clk-si5341.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/clk/clk-si5341.c b/drivers/clk/clk-si5341.c
index 2499b771cd83..5311c23532b4 100644
--- a/drivers/clk/clk-si5341.c
+++ b/drivers/clk/clk-si5341.c
@@ -1825,11 +1825,11 @@ static void si5341_remove(struct i2c_client *client)
}

static const struct i2c_device_id si5341_id[] = {
- { "si5340", 0 },
- { "si5341", 1 },
- { "si5342", 2 },
- { "si5344", 4 },
- { "si5345", 5 },
+ { .name = "si5340" },
+ { .name = "si5341" },
+ { .name = "si5342" },
+ { .name = "si5344" },
+ { .name = "si5345" },
{ }
};
MODULE_DEVICE_TABLE(i2c, si5341_id);
--
2.47.3