Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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 <liaochen4@huawei.com>
Link: https://lore.kernel.org/r/20240831075059.790861-3-liaochen4@huawei.com
Signed-off-by: Uwe Kleine-König <ukleinek@kernel.org>

authored by

Liao Chen and committed by
Uwe Kleine-König
60cd67a4 433f1f79

+2 -2
+2 -2
drivers/pwm/pwm-atmel-hlcdc.c
··· 234 234 .data = &atmel_hlcdc_pwm_sama5d3_errata, 235 235 }, 236 236 { .compatible = "microchip,sam9x60-hlcdc", }, 237 - { /* sentinel */ }, 237 + { /* sentinel */ } 238 238 }; 239 239 MODULE_DEVICE_TABLE(of, atmel_hlcdc_dt_ids); 240 240 ··· 288 288 289 289 static const struct of_device_id atmel_hlcdc_pwm_dt_ids[] = { 290 290 { .compatible = "atmel,hlcdc-pwm" }, 291 - { /* sentinel */ }, 291 + { /* sentinel */ } 292 292 }; 293 293 MODULE_DEVICE_TABLE(of, atmel_hlcdc_pwm_dt_ids); 294 294