Skip to content

Commit

Permalink
auxdisplay: simplify getting .drvdata
Browse files Browse the repository at this point in the history
We should get drvdata from struct device directly. Going via
platform_device is an unneeded step back and forth.

Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
  • Loading branch information
Wolfram Sang authored and Miguel Ojeda committed Aug 1, 2018
1 parent 1716139 commit ada953d
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions drivers/auxdisplay/arm-charlcd.c
Original file line number Diff line number Diff line change
Expand Up @@ -331,8 +331,7 @@ static int __init charlcd_probe(struct platform_device *pdev)

static int charlcd_suspend(struct device *dev)
{
struct platform_device *pdev = to_platform_device(dev);
struct charlcd *lcd = platform_get_drvdata(pdev);
struct charlcd *lcd = dev_get_drvdata(dev);

/* Power the display off */
charlcd_4bit_command(lcd, HD_DISPCTRL);
Expand All @@ -341,8 +340,7 @@ static int charlcd_suspend(struct device *dev)

static int charlcd_resume(struct device *dev)
{
struct platform_device *pdev = to_platform_device(dev);
struct charlcd *lcd = platform_get_drvdata(pdev);
struct charlcd *lcd = dev_get_drvdata(dev);

/* Turn the display back on */
charlcd_4bit_command(lcd, HD_DISPCTRL | HD_DISPCTRL_ON);
Expand Down

0 comments on commit ada953d

Please sign in to comment.