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

Commit 59c4dce1 authored by Tobias Klauser's avatar Tobias Klauser Committed by Bryan Wu
Browse files

leds: leds-gpio: Use platform_{get,set}_drvdata



Use the wrapper functions, so we can directly pass a struct
platfrom_device.

Signed-off-by: default avatarTobias Klauser <tklauser@distanz.ch>
Signed-off-by: default avatarBryan Wu <bryan.wu@canonical.com>
parent 6ebcebdd
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -269,13 +269,13 @@ static int __devinit gpio_led_probe(struct platform_device *pdev)

static int __devexit gpio_led_remove(struct platform_device *pdev)
{
	struct gpio_leds_priv *priv = dev_get_drvdata(&pdev->dev);
	struct gpio_leds_priv *priv = platform_get_drvdata(pdev);
	int i;

	for (i = 0; i < priv->num_leds; i++)
		delete_gpio_led(&priv->leds[i]);

	dev_set_drvdata(&pdev->dev, NULL);
	platform_set_drvdata(pdev, NULL);

	return 0;
}