pwm: Unify coding style of acpi_device_id arrays

Use no comma after the array terminator.

Signed-off-by: Uwe Kleine-König (The Capable Hub) <u.kleine-koenig@baylibre.com>
Link: https://patch.msgid.link/7a4d998e12ac6fa084d1ee29ecb29d51ab7a5e5c.1783263835.git.ukleinek@kernel.org
Signed-off-by: Uwe Kleine-König <ukleinek@kernel.org>
This commit is contained in:
Uwe Kleine-König (The Capable Hub) 2026-07-05 17:14:15 +02:00 committed by Uwe Kleine-König
parent 5ab2c51c88
commit 8dd1524f69
2 changed files with 2 additions and 2 deletions

View File

@ -63,7 +63,7 @@ static const struct acpi_device_id pwm_lpss_acpi_match[] = {
{ .id = "80862288", .driver_data = (unsigned long)&pwm_lpss_bsw_info },
{ .id = "80862289", .driver_data = (unsigned long)&pwm_lpss_bsw_info },
{ .id = "80865AC8", .driver_data = (unsigned long)&pwm_lpss_bxt_info },
{ },
{ }
};
MODULE_DEVICE_TABLE(acpi, pwm_lpss_acpi_match);

View File

@ -545,7 +545,7 @@ MODULE_DEVICE_TABLE(i2c, pca9685_id);
static const struct acpi_device_id pca9685_acpi_ids[] = {
{ .id = "INT3492" },
{ /* sentinel */ },
{ /* sentinel */ }
};
MODULE_DEVICE_TABLE(acpi, pca9685_acpi_ids);