diff options
author | Christian Marangi <ansuelsmth@gmail.com> | 2024-07-12 02:45:52 +0200 |
---|---|---|
committer | Lee Jones <lee@kernel.org> | 2024-07-12 08:32:37 +0100 |
commit | 9c5fd279255cacc5a759e77a7eb1824d708b21d2 (patch) | |
tree | 8da68b160fd274bd2a582484187306fb3fd7c5dc /drivers/leds | |
parent | 87e552ad654554be73e62dd43c923bcee215287d (diff) | |
download | linux-stable-9c5fd279255cacc5a759e77a7eb1824d708b21d2.tar.gz linux-stable-9c5fd279255cacc5a759e77a7eb1824d708b21d2.tar.bz2 linux-stable-9c5fd279255cacc5a759e77a7eb1824d708b21d2.zip |
leds: leds-lp5569: Fix typo in driver name
Remove extra x from driver name as this was a typo from copy-paste
error.
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
Link: https://lore.kernel.org/r/20240712004556.15601-1-ansuelsmth@gmail.com
Signed-off-by: Lee Jones <lee@kernel.org>
Diffstat (limited to 'drivers/leds')
-rw-r--r-- | drivers/leds/leds-lp5569.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/leds/leds-lp5569.c b/drivers/leds/leds-lp5569.c index 377f2c100bc2..2253c19f0cd2 100644 --- a/drivers/leds/leds-lp5569.c +++ b/drivers/leds/leds-lp5569.c @@ -521,7 +521,7 @@ MODULE_DEVICE_TABLE(of, of_lp5569_leds_match); static struct i2c_driver lp5569_driver = { .driver = { - .name = "lp5569x", + .name = "lp5569", .of_match_table = of_lp5569_leds_match, }, .probe = lp55xx_probe, |