mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-01 10:42:11 +00:00
drm: 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. Reviewed-by: Thomas Zimmermann <tzimmermann@suse.de> Reviewed-by: Douglas Anderson <dianders@chromium.org> Reviewed-by: Liu Ying <victor.liu@nxp.com> # ite-it6263.c Signed-off-by: Uwe Kleine-König <u.kleine-koenig@baylibre.com> Signed-off-by: Douglas Anderson <dianders@chromium.org> Link: https://patchwork.freedesktop.org/patch/msgid/20241204105827.1682632-2-u.kleine-koenig@baylibre.com
This commit is contained in:
parent
d408916885
commit
b690f5d955
@ -793,7 +793,7 @@ static void anx6345_i2c_remove(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id anx6345_id[] = {
|
||||
{ "anx6345", 0 },
|
||||
{ "anx6345" },
|
||||
{ /* sentinel */ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, anx6345_id);
|
||||
|
@ -2795,7 +2795,7 @@ static void anx7625_i2c_remove(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id anx7625_id[] = {
|
||||
{"anx7625", 0},
|
||||
{ "anx7625" },
|
||||
{}
|
||||
};
|
||||
|
||||
|
@ -597,7 +597,7 @@ static const struct of_device_id ch7033_dt_ids[] = {
|
||||
MODULE_DEVICE_TABLE(of, ch7033_dt_ids);
|
||||
|
||||
static const struct i2c_device_id ch7033_ids[] = {
|
||||
{ "ch7033", 0 },
|
||||
{ "ch7033" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, ch7033_ids);
|
||||
|
@ -897,7 +897,7 @@ static const struct of_device_id it6263_of_match[] = {
|
||||
MODULE_DEVICE_TABLE(of, it6263_of_match);
|
||||
|
||||
static const struct i2c_device_id it6263_i2c_ids[] = {
|
||||
{ "it6263", 0 },
|
||||
{ "it6263" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, it6263_i2c_ids);
|
||||
|
@ -3497,7 +3497,7 @@ static void it6505_i2c_remove(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id it6505_id[] = {
|
||||
{ "it6505", 0 },
|
||||
{ "it6505" },
|
||||
{ }
|
||||
};
|
||||
|
||||
|
@ -815,8 +815,8 @@ static const struct of_device_id lt8912_dt_match[] = {
|
||||
MODULE_DEVICE_TABLE(of, lt8912_dt_match);
|
||||
|
||||
static const struct i2c_device_id lt8912_id[] = {
|
||||
{"lt8912", 0},
|
||||
{},
|
||||
{ "lt8912" },
|
||||
{}
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, lt8912_id);
|
||||
|
||||
|
@ -1234,7 +1234,7 @@ static void lt9611_remove(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id lt9611_id[] = {
|
||||
{ "lontium,lt9611", 0 },
|
||||
{ "lontium,lt9611" },
|
||||
{}
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, lt9611_id);
|
||||
|
@ -914,7 +914,7 @@ static void lt9611uxc_remove(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id lt9611uxc_id[] = {
|
||||
{ "lontium,lt9611uxc", 0 },
|
||||
{ "lontium,lt9611uxc" },
|
||||
{ /* sentinel */ }
|
||||
};
|
||||
|
||||
|
@ -318,8 +318,8 @@ static void stdp4028_ge_b850v3_fw_remove(struct i2c_client *stdp4028_i2c)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id stdp4028_ge_b850v3_fw_i2c_table[] = {
|
||||
{"stdp4028_ge_fw", 0},
|
||||
{},
|
||||
{ "stdp4028_ge_fw" },
|
||||
{}
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, stdp4028_ge_b850v3_fw_i2c_table);
|
||||
|
||||
@ -365,8 +365,8 @@ static void stdp2690_ge_b850v3_fw_remove(struct i2c_client *stdp2690_i2c)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id stdp2690_ge_b850v3_fw_i2c_table[] = {
|
||||
{"stdp2690_ge_fw", 0},
|
||||
{},
|
||||
{ "stdp2690_ge_fw" },
|
||||
{}
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, stdp2690_ge_b850v3_fw_i2c_table);
|
||||
|
||||
|
@ -319,8 +319,8 @@ static void ptn3460_remove(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id ptn3460_i2c_table[] = {
|
||||
{"ptn3460", 0},
|
||||
{},
|
||||
{ "ptn3460" },
|
||||
{}
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, ptn3460_i2c_table);
|
||||
|
||||
|
@ -1239,8 +1239,8 @@ static const struct of_device_id sii902x_dt_ids[] = {
|
||||
MODULE_DEVICE_TABLE(of, sii902x_dt_ids);
|
||||
|
||||
static const struct i2c_device_id sii902x_i2c_ids[] = {
|
||||
{ "sii9022", 0 },
|
||||
{ },
|
||||
{ "sii9022" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, sii902x_i2c_ids);
|
||||
|
||||
|
@ -945,8 +945,8 @@ static const struct of_device_id sii9234_dt_match[] = {
|
||||
MODULE_DEVICE_TABLE(of, sii9234_dt_match);
|
||||
|
||||
static const struct i2c_device_id sii9234_id[] = {
|
||||
{ "SII9234", 0 },
|
||||
{ },
|
||||
{ "SII9234" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, sii9234_id);
|
||||
|
||||
|
@ -2368,8 +2368,8 @@ static const struct of_device_id sii8620_dt_match[] = {
|
||||
MODULE_DEVICE_TABLE(of, sii8620_dt_match);
|
||||
|
||||
static const struct i2c_device_id sii8620_id[] = {
|
||||
{ "sii8620", 0 },
|
||||
{ },
|
||||
{ "sii8620" },
|
||||
{ }
|
||||
};
|
||||
|
||||
MODULE_DEVICE_TABLE(i2c, sii8620_id);
|
||||
|
@ -2587,7 +2587,7 @@ static void tc_remove(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id tc358767_i2c_ids[] = {
|
||||
{ "tc358767", 0 },
|
||||
{ "tc358767" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, tc358767_i2c_ids);
|
||||
|
@ -1244,8 +1244,8 @@ static const struct regmap_config tc358768_regmap_config = {
|
||||
};
|
||||
|
||||
static const struct i2c_device_id tc358768_i2c_ids[] = {
|
||||
{ "tc358768", 0 },
|
||||
{ "tc358778", 0 },
|
||||
{ "tc358768" },
|
||||
{ "tc358778" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, tc358768_i2c_ids);
|
||||
|
@ -389,7 +389,7 @@ static void dlpc3433_remove(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id dlpc3433_id[] = {
|
||||
{ "ti,dlpc3433", 0 },
|
||||
{ "ti,dlpc3433" },
|
||||
{ /* sentinel */ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, dlpc3433_id);
|
||||
|
@ -1971,8 +1971,8 @@ static int ti_sn65dsi86_probe(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id ti_sn65dsi86_id[] = {
|
||||
{ "ti,sn65dsi86", 0},
|
||||
{},
|
||||
{ "ti,sn65dsi86" },
|
||||
{}
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, ti_sn65dsi86_id);
|
||||
|
||||
|
@ -435,7 +435,7 @@ static void tfp410_i2c_remove(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static const struct i2c_device_id tfp410_i2c_ids[] = {
|
||||
{ "tfp410", 0 },
|
||||
{ "tfp410" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, tfp410_i2c_ids);
|
||||
|
@ -486,7 +486,7 @@ static int ch7006_encoder_init(struct i2c_client *client,
|
||||
}
|
||||
|
||||
static const struct i2c_device_id ch7006_ids[] = {
|
||||
{ "ch7006", 0 },
|
||||
{ "ch7006" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, ch7006_ids);
|
||||
|
@ -413,7 +413,7 @@ sil164_encoder_init(struct i2c_client *client,
|
||||
}
|
||||
|
||||
static const struct i2c_device_id sil164_ids[] = {
|
||||
{ "sil164", 0 },
|
||||
{ "sil164" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, sil164_ids);
|
||||
|
@ -486,8 +486,8 @@ static void tda9950_remove(struct i2c_client *client)
|
||||
}
|
||||
|
||||
static struct i2c_device_id tda9950_ids[] = {
|
||||
{ "tda9950", 0 },
|
||||
{ },
|
||||
{ "tda9950" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, tda9950_ids);
|
||||
|
||||
|
@ -2094,7 +2094,7 @@ MODULE_DEVICE_TABLE(of, tda998x_dt_ids);
|
||||
#endif
|
||||
|
||||
static const struct i2c_device_id tda998x_ids[] = {
|
||||
{ "tda998x", 0 },
|
||||
{ "tda998x" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, tda998x_ids);
|
||||
|
Loading…
Reference in New Issue
Block a user