diff options
author | Biju Das <biju.das.jz@bp.renesas.com> | 2023-08-31 19:31:50 +0100 |
---|---|---|
committer | Lee Jones <lee@kernel.org> | 2023-11-01 10:02:10 +0000 |
commit | 3f9a06dc7975d6261bdd252ba7e099d8f3514466 (patch) | |
tree | 9d863de5ce73354453c72613c924ce09b4bc914d | |
parent | e7df2d7c83a98d0fc0384d0315c86f3bb89de27d (diff) | |
download | linux-3f9a06dc7975d6261bdd252ba7e099d8f3514466.tar.gz linux-3f9a06dc7975d6261bdd252ba7e099d8f3514466.tar.bz2 linux-3f9a06dc7975d6261bdd252ba7e099d8f3514466.zip |
mfd: palmas: Remove trailing comma in the terminator entry
Remove trailing comma in the terminator entry for OF table.
Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
Link: https://lore.kernel.org/r/20230831183153.63750-2-biju.das.jz@bp.renesas.com
Signed-off-by: Lee Jones <lee@kernel.org>
-rw-r--r-- | drivers/mfd/palmas.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/palmas.c b/drivers/mfd/palmas.c index 6e562bab62e4..769538b50903 100644 --- a/drivers/mfd/palmas.c +++ b/drivers/mfd/palmas.c @@ -499,7 +499,7 @@ static const struct of_device_id of_palmas_match_tbl[] = { .compatible = "ti,tps65917", .data = &tps65917_data, }, - { }, + { } }; MODULE_DEVICE_TABLE(of, of_palmas_match_tbl); |