]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
leds: pca995x: Fix typo in pca995x_of_match's of_device_id entry
authorJesse Karjalainen <jesse@ponkila.com>
Sat, 26 Apr 2025 02:04:54 +0000 (05:04 +0300)
committerLee Jones <lee@kernel.org>
Wed, 14 May 2025 08:25:04 +0000 (09:25 +0100)
Remove the stray space between the '.' and the 'data' field name in
the PCA995x device-tree match table.

Signed-off-by: Jesse Karjalainen <jesse@ponkila.com>
Link: https://lore.kernel.org/r/20250426020454.47059-1-jesse@ponkila.com
Signed-off-by: Lee Jones <lee@kernel.org>
drivers/leds/leds-pca995x.c

index 11c7bb69573e8cd5c7b9b33cff3699523ecef822..6ad06ce2bf640a3f94cd1a07b0452caba8bedefb 100644 (file)
@@ -197,7 +197,7 @@ MODULE_DEVICE_TABLE(i2c, pca995x_id);
 
 static const struct of_device_id pca995x_of_match[] = {
        { .compatible = "nxp,pca9952", .data = &pca9952_chipdef },
-       { .compatible = "nxp,pca9955b", . data = &pca9955b_chipdef },
+       { .compatible = "nxp,pca9955b", .data = &pca9955b_chipdef },
        { .compatible = "nxp,pca9956b", .data = &pca9956b_chipdef },
        {},
 };