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

leds: turris-omnia: Drop commas in the terminator entries

Drop commas in terminator entries of `struct attribute` array and
`struct of_device_id` array.

Signed-off-by: Marek Behún <kabel@kernel.org>
Link: https://lore.kernel.org/r/20250417070507.24929-1-kabel@kernel.org
Signed-off-by: Lee Jones <lee@kernel.org>

authored by

Marek Behún and committed by
Lee Jones
f9a2eacb 982e0f04

+2 -2
+2 -2
drivers/leds/leds-turris-omnia.c
··· 361 361 static struct attribute *omnia_led_controller_attrs[] = { 362 362 &dev_attr_brightness.attr, 363 363 &dev_attr_gamma_correction.attr, 364 - NULL, 364 + NULL 365 365 }; 366 366 ATTRIBUTE_GROUPS(omnia_led_controller); 367 367 ··· 527 527 528 528 static const struct of_device_id of_omnia_leds_match[] = { 529 529 { .compatible = "cznic,turris-omnia-leds", }, 530 - {}, 530 + { } 531 531 }; 532 532 MODULE_DEVICE_TABLE(of, of_omnia_leds_match); 533 533