From: Pavel Date: Sun, 5 Jan 2020 22:36:58 +0000 (+0100) Subject: leds: lm3532: add pointer to documentation and fix typo X-Git-Tag: v5.10.7~3465^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=43108c72cf1d518f3ce62d3b1c8a9ffa38ddc28b;p=platform%2Fkernel%2Flinux-rpi.git leds: lm3532: add pointer to documentation and fix typo Add pointer to datasheet and fix typo in printk message. Signed-off-by: Pavel Machek --- diff --git a/drivers/leds/leds-lm3532.c b/drivers/leds/leds-lm3532.c index 0507c65..491268b 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 #include @@ -623,7 +624,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; }