Commit b23ca98a authored by Marek Behún's avatar Marek Behún Committed by Pavel Machek

leds: mt6323: cosmetic change: use helper variable

Use helper variable dev instead of always writing &pdev->dev.
Signed-off-by: default avatarMarek Behún <marek.behun@nic.cz>
Cc: Sean Wang <sean.wang@mediatek.com>
Cc: John Crispin <john@phrozen.org>
Cc: Ryder Lee <ryder.lee@mediatek.com>
Signed-off-by: default avatarPavel Machek <pavel@ucw.cz>
parent 6b8274de
...@@ -368,9 +368,9 @@ static int mt6323_led_set_dt_default(struct led_classdev *cdev, ...@@ -368,9 +368,9 @@ static int mt6323_led_set_dt_default(struct led_classdev *cdev,
static int mt6323_led_probe(struct platform_device *pdev) static int mt6323_led_probe(struct platform_device *pdev)
{ {
struct device *dev = &pdev->dev; struct device *dev = &pdev->dev;
struct device_node *np = dev_of_node(&pdev->dev); struct device_node *np = dev_of_node(dev);
struct device_node *child; struct device_node *child;
struct mt6397_chip *hw = dev_get_drvdata(pdev->dev.parent); struct mt6397_chip *hw = dev_get_drvdata(dev->parent);
struct mt6323_leds *leds; struct mt6323_leds *leds;
struct mt6323_led *led; struct mt6323_led *led;
int ret; int ret;
...@@ -443,8 +443,7 @@ static int mt6323_led_probe(struct platform_device *pdev) ...@@ -443,8 +443,7 @@ static int mt6323_led_probe(struct platform_device *pdev)
ret = devm_led_classdev_register_ext(dev, &leds->led[reg]->cdev, ret = devm_led_classdev_register_ext(dev, &leds->led[reg]->cdev,
&init_data); &init_data);
if (ret) { if (ret) {
dev_err(&pdev->dev, "Failed to register LED: %d\n", dev_err(dev, "Failed to register LED: %d\n", ret);
ret);
goto put_child_node; goto put_child_node;
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment