diff options
author | Pavel <pavel@ucw.cz> | 2020-01-05 23:36:58 +0100 |
---|---|---|
committer | Pavel <pavel@ucw.cz> | 2020-01-06 00:16:01 +0100 |
commit | 31e065c4e8bac71be29a9d4d65ea62f5c9ec17b3 (patch) | |
tree | 7114ec074049f0eb70f4e59a86f55a64632e34a3 | |
parent | cf6eb52fa3d0ff0414f3dfcfbd40bd57f3bbd679 (diff) | |
download | linux-31e065c4e8bac71be29a9d4d65ea62f5c9ec17b3.tar.bz2 |
leds: lm3532: add pointer to documentation and fix typo
Add pointer to datasheet and fix typo in printk message.
Signed-off-by: Pavel Machek <pavel@ucw.cz>
-rw-r--r-- | drivers/leds/leds-lm3532.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/leds/leds-lm3532.c b/drivers/leds/leds-lm3532.c index 23f49b6d1925..188a57da981a 100644 --- a/drivers/leds/leds-lm3532.c +++ b/drivers/leds/leds-lm3532.c @@ -1,6 +1,7 @@ // SPDX-License-Identifier: GPL-2.0 // TI LM3532 LED driver // Copyright (C) 2019 Texas Instruments Incorporated - http://www.ti.com/ +// http://www.ti.com/lit/ds/symlink/lm3532.pdf #include <linux/i2c.h> #include <linux/leds.h> @@ -629,7 +630,7 @@ static int lm3532_parse_node(struct lm3532_data *priv) led->num_leds = fwnode_property_count_u32(child, "led-sources"); if (led->num_leds > LM3532_MAX_LED_STRINGS) { - dev_err(&priv->client->dev, "To many LED string defined\n"); + dev_err(&priv->client->dev, "Too many LED string defined\n"); continue; } |