diff options
author | Christophe JAILLET <christophe.jaillet@wanadoo.fr> | 2019-07-24 23:38:28 +0200 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2019-08-12 09:11:22 +0100 |
commit | 30f644fd6ec9a0a241adb91579aaca7404132d7b (patch) | |
tree | bab74c6bbddafc4281e1993fb982d01a3a1de11b /drivers/video | |
parent | 072e2c8192cfc6ae1de1a2aca02d4512b69bdeed (diff) | |
download | linux-30f644fd6ec9a0a241adb91579aaca7404132d7b.tar.bz2 |
backlight: lms283gf05: Fix a typo in the description passed to 'devm_gpio_request_one()'
The description passed to 'devm_gpio_request_one()' should be related to
LMS283GF05, not LMS285GF05.
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Reviewed-by: Daniel Thompson <daniel.thompson@linaro.org>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/backlight/lms283gf05.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/backlight/lms283gf05.c b/drivers/video/backlight/lms283gf05.c index 35bc012b22cc..0e45685bcc1c 100644 --- a/drivers/video/backlight/lms283gf05.c +++ b/drivers/video/backlight/lms283gf05.c @@ -158,7 +158,7 @@ static int lms283gf05_probe(struct spi_device *spi) ret = devm_gpio_request_one(&spi->dev, pdata->reset_gpio, GPIOF_DIR_OUT | (!pdata->reset_inverted ? GPIOF_INIT_HIGH : GPIOF_INIT_LOW), - "LMS285GF05 RESET"); + "LMS283GF05 RESET"); if (ret) return ret; } |