diff options
| author | Liao Chen <[email protected]> | 2024-08-31 07:50:59 +0000 |
|---|---|---|
| committer | Uwe Kleine-König <[email protected]> | 2024-09-16 13:24:58 +0000 |
| commit | 60cd67a40b74f99afeca91e73bee415341a43993 (patch) | |
| tree | ac9ac040ab4341b7bfaa02e0cfaaaf893ed26f29 /drivers/pwm/pwm-atmel-hlcdc.c | |
| parent | pwm: atmel-hlcdc: Enable module autoloading (diff) | |
| download | kernel-60cd67a40b74f99afeca91e73bee415341a43993.tar.gz kernel-60cd67a40b74f99afeca91e73bee415341a43993.zip | |
pwm: atmel-hlcdc: Drop trailing comma
Drop the trailing comma in the terminator entry for the ID table to make
code robust against misrebases.
Signed-off-by: Liao Chen <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Uwe Kleine-König <[email protected]>
Diffstat (limited to 'drivers/pwm/pwm-atmel-hlcdc.c')
| -rw-r--r-- | drivers/pwm/pwm-atmel-hlcdc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/pwm/pwm-atmel-hlcdc.c b/drivers/pwm/pwm-atmel-hlcdc.c index 02660bd811c4..eb39955a6d77 100644 --- a/drivers/pwm/pwm-atmel-hlcdc.c +++ b/drivers/pwm/pwm-atmel-hlcdc.c @@ -234,7 +234,7 @@ static const struct of_device_id atmel_hlcdc_dt_ids[] = { .data = &atmel_hlcdc_pwm_sama5d3_errata, }, { .compatible = "microchip,sam9x60-hlcdc", }, - { /* sentinel */ }, + { /* sentinel */ } }; MODULE_DEVICE_TABLE(of, atmel_hlcdc_dt_ids); @@ -288,7 +288,7 @@ static void atmel_hlcdc_pwm_remove(struct platform_device *pdev) static const struct of_device_id atmel_hlcdc_pwm_dt_ids[] = { { .compatible = "atmel,hlcdc-pwm" }, - { /* sentinel */ }, + { /* sentinel */ } }; MODULE_DEVICE_TABLE(of, atmel_hlcdc_pwm_dt_ids); |
