diff options
author | 2025-04-26 05:04:54 +0300 | |
---|---|---|
committer | 2025-05-14 09:25:04 +0100 | |
commit | b441b95a592c42f8448f9bd912b91e1e9b4262ff (patch) | |
tree | 70a5158b99c6f70bf72d19be9f35d34e690b7491 | |
parent | leds: Provide skeleton KUnit testing for the LEDs framework (diff) | |
download | wireguard-linux-b441b95a592c42f8448f9bd912b91e1e9b4262ff.tar.xz wireguard-linux-b441b95a592c42f8448f9bd912b91e1e9b4262ff.zip |
leds: pca995x: Fix typo in pca995x_of_match's of_device_id entry
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>
Diffstat (limited to '')
-rw-r--r-- | drivers/leds/leds-pca995x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/leds/leds-pca995x.c b/drivers/leds/leds-pca995x.c index 11c7bb69573e..6ad06ce2bf64 100644 --- a/drivers/leds/leds-pca995x.c +++ b/drivers/leds/leds-pca995x.c @@ -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 }, {}, }; |