Commit 8f52df50 authored by Bjorn Andersson's avatar Bjorn Andersson Committed by Lee Jones
Browse files

leds: pm8058: Silence pointer to integer size warning



The pointer returned by of_device_get_match_data() doesn't have the same
size as u32 on 64-bit architectures, causing a compile warning when
compile-testing the driver on such platform.

Cast the return value of of_device_get_match_data() to unsigned long and
then to u32 to silence this warning.

Fixes: 7f866986 ("leds: add PM8058 LEDs driver")
Signed-off-by: default avatarBjorn Andersson <bjorn.andersson@linaro.org>
Reviewed-by: default avatarLinus Walleij <linus.walleij@linaro.org>
Acked-by: default avatarPavel Machek <pavel@ucw.cz>
Signed-off-by: default avatarLee Jones <lee.jones@linaro.org>
parent 4fbd8d19
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -106,7 +106,7 @@ static int pm8058_led_probe(struct platform_device *pdev)
	if (!led)
		return -ENOMEM;

	led->ledtype = (u32)of_device_get_match_data(&pdev->dev);
	led->ledtype = (u32)(unsigned long)of_device_get_match_data(&pdev->dev);

	map = dev_get_regmap(pdev->dev.parent, NULL);
	if (!map) {