Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 30f644fd authored by Christophe JAILLET's avatar Christophe JAILLET Committed by Lee Jones
Browse files

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: default avatarChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Reviewed-by: default avatarDaniel Thompson <daniel.thompson@linaro.org>
Signed-off-by: default avatarLee Jones <lee.jones@linaro.org>
parent 072e2c81
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
	}