mirror of
https://github.com/torvalds/linux.git
synced 2026-07-27 17:47:41 +02:00
iio: Drop unused driver_data in four i2c drivers
For the four drivers the .driver_data member of i2c_device_id is write-only. Drop the explicit assignment. While touching these arrays use a named initializer to assign the .name member, which is easier to parse for a human. Signed-off-by: Uwe Kleine-König (The Capable Hub) <u.kleine-koenig@baylibre.com> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
This commit is contained in:
parent
0ce8e3b445
commit
3f439a2a5b
|
|
@ -1310,7 +1310,7 @@ static int pac1921_probe(struct i2c_client *client)
|
|||
}
|
||||
|
||||
static const struct i2c_device_id pac1921_id[] = {
|
||||
{ .name = "pac1921", 0 },
|
||||
{ .name = "pac1921" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, pac1921_id);
|
||||
|
|
|
|||
|
|
@ -1572,7 +1572,7 @@ static const struct of_device_id apds9160_of_match[] = {
|
|||
MODULE_DEVICE_TABLE(of, apds9160_of_match);
|
||||
|
||||
static const struct i2c_device_id apds9160_id[] = {
|
||||
{ "apds9160", 0 },
|
||||
{ .name = "apds9160" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, apds9160_id);
|
||||
|
|
|
|||
|
|
@ -839,10 +839,10 @@ static DEFINE_SIMPLE_DEV_PM_OPS(tsl2563_pm_ops, tsl2563_suspend,
|
|||
tsl2563_resume);
|
||||
|
||||
static const struct i2c_device_id tsl2563_id[] = {
|
||||
{ "tsl2560", 0 },
|
||||
{ "tsl2561", 1 },
|
||||
{ "tsl2562", 2 },
|
||||
{ "tsl2563", 3 },
|
||||
{ .name = "tsl2560" },
|
||||
{ .name = "tsl2561" },
|
||||
{ .name = "tsl2562" },
|
||||
{ .name = "tsl2563" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, tsl2563_id);
|
||||
|
|
|
|||
|
|
@ -913,9 +913,9 @@ static DEFINE_RUNTIME_DEV_PM_OPS(tsl2583_pm_ops, tsl2583_suspend,
|
|||
tsl2583_resume, NULL);
|
||||
|
||||
static const struct i2c_device_id tsl2583_idtable[] = {
|
||||
{ "tsl2580", 0 },
|
||||
{ "tsl2581", 1 },
|
||||
{ "tsl2583", 2 },
|
||||
{ .name = "tsl2580" },
|
||||
{ .name = "tsl2581" },
|
||||
{ .name = "tsl2583" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, tsl2583_idtable);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user