Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Christophe JAILLET and committed by
Lee Jones
30f644fd 072e2c81

+1 -1
+1 -1
drivers/video/backlight/lms283gf05.c
··· 158 158 ret = devm_gpio_request_one(&spi->dev, pdata->reset_gpio, 159 159 GPIOF_DIR_OUT | (!pdata->reset_inverted ? 160 160 GPIOF_INIT_HIGH : GPIOF_INIT_LOW), 161 - "LMS285GF05 RESET"); 161 + "LMS283GF05 RESET"); 162 162 if (ret) 163 163 return ret; 164 164 }