Commit ab907d99 authored by Biju Das's avatar Biju Das Committed by Sebastian Reichel
Browse files

power: supply: bq2515x: Cleanup OF/ID table terminators



Some cleanups:
 * Remove trailing comma in the terminator entry for OF/ID table.
 * Drop a space from terminator entry for OF table.

Signed-off-by: default avatarBiju Das <biju.das.jz@bp.renesas.com>
Reviewed-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20230902200518.91585-3-biju.das.jz@bp.renesas.com


Signed-off-by: default avatarSebastian Reichel <sebastian.reichel@collabora.com>
parent ef2730fb
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1139,14 +1139,14 @@ static const struct bq2515x_info bq25155 = {
static const struct i2c_device_id bq2515x_i2c_ids[] = {
	{ "bq25150", (kernel_ulong_t)&bq25150 },
	{ "bq25155", (kernel_ulong_t)&bq25155 },
	{},
	{}
};
MODULE_DEVICE_TABLE(i2c, bq2515x_i2c_ids);

static const struct of_device_id bq2515x_of_match[] = {
	{ .compatible = "ti,bq25150", .data = &bq25150 },
	{ .compatible = "ti,bq25155", .data = &bq25155 },
	{ },
	{}
};
MODULE_DEVICE_TABLE(of, bq2515x_of_match);