diff options
author | Uwe Kleine-König <u.kleine-koenig@baylibre.com> | 2024-06-25 10:38:53 +0200 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2024-06-26 16:28:08 +0200 |
commit | a6a6a98094116b60e5523a571d9443c53325f5b1 (patch) | |
tree | 56896e4053a3ece246ee0d715c8a247cc7e3ac0a /drivers/net/pse-pd/tps23881.c | |
parent | Merge branch 'add-ethernet-driver-for-tehuti-networks-tn40xx-chips' (diff) | |
download | linux-a6a6a98094116b60e5523a571d9443c53325f5b1.tar.xz linux-a6a6a98094116b60e5523a571d9443c53325f5b1.zip |
net: Drop explicit initialization of struct i2c_device_id::driver_data to 0
These drivers don't use the driver_data member of struct i2c_device_id,
so don't explicitly initialize this member.
This prepares putting driver_data in an anonymous union which requires
either no initialization or named designators. But it's also a nice
cleanup on its own.
While add it, also remove commas after the sentinel entries.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@baylibre.com>
Reviewed-by: Petr Machata <petrm@nvidia.com> # For mlxsw
Reviewed-by: Kory Maincent <Kory.maincent@bootlin.com>
Reviewed-by: Jeremy Kerr <jk@codeconstruct.com.au> # for mctp-i2c
Reviewed-by: Oleksij Rempel <o.rempel@pengutronix.de>
Acked-by: Oleksij Rempel <o.rempel@pengutronix.de>
Link: https://patch.msgid.link/20240625083853.2205977-2-u.kleine-koenig@baylibre.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'drivers/net/pse-pd/tps23881.c')
-rw-r--r-- | drivers/net/pse-pd/tps23881.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/pse-pd/tps23881.c b/drivers/net/pse-pd/tps23881.c index 98ffbb1bbf13..61f6ad9c1934 100644 --- a/drivers/net/pse-pd/tps23881.c +++ b/drivers/net/pse-pd/tps23881.c @@ -794,8 +794,8 @@ static int tps23881_i2c_probe(struct i2c_client *client) } static const struct i2c_device_id tps23881_id[] = { - { "tps23881", 0 }, - { }, + { "tps23881" }, + { } }; MODULE_DEVICE_TABLE(i2c, tps23881_id); |