diff options
author | Biju Das <biju.das.jz@bp.renesas.com> | 2023-09-02 21:25:05 +0100 |
---|---|---|
committer | Sebastian Reichel <sebastian.reichel@collabora.com> | 2023-09-12 18:16:04 +0200 |
commit | 02e673e59c3d374924422f74fb229ae4ee6715fc (patch) | |
tree | d564a666fa5297866d9dc9efcb63d3d867ec049e /drivers/power/supply/bq256xx_charger.c | |
parent | f28992902b17245af042913d6cfd6a1cc100bcaf (diff) |
power: supply: bq256xx: Some cleanups
Some cleanups:
* Remove trailing comma in the terminator entry for OF/ID/ACPI table.
* Drop a space from terminator entry for OF table.
Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20230902202505.97609-3-biju.das.jz@bp.renesas.com
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
Diffstat (limited to 'drivers/power/supply/bq256xx_charger.c')
-rw-r--r-- | drivers/power/supply/bq256xx_charger.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/power/supply/bq256xx_charger.c b/drivers/power/supply/bq256xx_charger.c index fda4286323ee..474201815a27 100644 --- a/drivers/power/supply/bq256xx_charger.c +++ b/drivers/power/supply/bq256xx_charger.c @@ -1778,7 +1778,7 @@ static const struct i2c_device_id bq256xx_i2c_ids[] = { { "bq25611d", (kernel_ulong_t)&bq256xx_chip_info_tbl[BQ25611D] }, { "bq25618", (kernel_ulong_t)&bq256xx_chip_info_tbl[BQ25618] }, { "bq25619", (kernel_ulong_t)&bq256xx_chip_info_tbl[BQ25619] }, - {}, + {} }; MODULE_DEVICE_TABLE(i2c, bq256xx_i2c_ids); @@ -1790,7 +1790,7 @@ static const struct of_device_id bq256xx_of_match[] = { { .compatible = "ti,bq25611d", .data = &bq256xx_chip_info_tbl[BQ25611D] }, { .compatible = "ti,bq25618", .data = &bq256xx_chip_info_tbl[BQ25618] }, { .compatible = "ti,bq25619", .data = &bq256xx_chip_info_tbl[BQ25619] }, - { }, + {} }; MODULE_DEVICE_TABLE(of, bq256xx_of_match); @@ -1802,7 +1802,7 @@ static const struct acpi_device_id bq256xx_acpi_match[] = { { "bq25611d", (kernel_ulong_t)&bq256xx_chip_info_tbl[BQ25611D] }, { "bq25618", (kernel_ulong_t)&bq256xx_chip_info_tbl[BQ25618] }, { "bq25619", (kernel_ulong_t)&bq256xx_chip_info_tbl[BQ25619] }, - {}, + {} }; MODULE_DEVICE_TABLE(acpi, bq256xx_acpi_match); |