Skip to content

Commit b441b95

Browse files
tupakkatapalag-linaro
authored andcommitted
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>
1 parent 5039a33 commit b441b95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/leds/leds-pca995x.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ MODULE_DEVICE_TABLE(i2c, pca995x_id);
197197

198198
static const struct of_device_id pca995x_of_match[] = {
199199
{ .compatible = "nxp,pca9952", .data = &pca9952_chipdef },
200-
{ .compatible = "nxp,pca9955b", . data = &pca9955b_chipdef },
200+
{ .compatible = "nxp,pca9955b", .data = &pca9955b_chipdef },
201201
{ .compatible = "nxp,pca9956b", .data = &pca9956b_chipdef },
202202
{},
203203
};

0 commit comments

Comments
 (0)