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

Commit 8dd2c9e3 authored by Roel Kluin's avatar Roel Kluin Committed by Liam Girdwood
Browse files

leds: Fix bounds checking of wm8350->pmic.led



Fix bounds checking of wm8350->pmic.led

Signed-off-by: default avatarRoel Kluin <roel.kluin@gmail.com>
Signed-off-by: default avatarLiam Girdwood <lrg@slimlogic.co.uk>
parent 9bf503e6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1435,7 +1435,7 @@ int wm8350_register_led(struct wm8350 *wm8350, int lednum, int dcdc, int isink,
	struct platform_device *pdev;
	int ret;

	if (lednum > ARRAY_SIZE(wm8350->pmic.led) || lednum < 0) {
	if (lednum >= ARRAY_SIZE(wm8350->pmic.led) || lednum < 0) {
		dev_err(wm8350->dev, "Invalid LED index %d\n", lednum);
		return -ENODEV;
	}