lkml.org 
[lkml]   [2018]   [Oct]   [22]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 2/5] pinctrl: intel: pinctrl-cherryview: simplify getting .driver_data
    Date
    We should get 'driver_data' 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>
    ---

    Build tested only. buildbot is happy.

    drivers/pinctrl/intel/pinctrl-cherryview.c | 6 ++----
    1 file changed, 2 insertions(+), 4 deletions(-)

    diff --git a/drivers/pinctrl/intel/pinctrl-cherryview.c b/drivers/pinctrl/intel/pinctrl-cherryview.c
    index 9b0f4b9ef482..f685abef68c3 100644
    --- a/drivers/pinctrl/intel/pinctrl-cherryview.c
    +++ b/drivers/pinctrl/intel/pinctrl-cherryview.c
    @@ -1744,8 +1744,7 @@ static int chv_pinctrl_remove(struct platform_device *pdev)
    #ifdef CONFIG_PM_SLEEP
    static int chv_pinctrl_suspend_noirq(struct device *dev)
    {
    - struct platform_device *pdev = to_platform_device(dev);
    - struct chv_pinctrl *pctrl = platform_get_drvdata(pdev);
    + struct chv_pinctrl *pctrl = dev_get_drvdata(dev);
    unsigned long flags;
    int i;

    @@ -1778,8 +1777,7 @@ static int chv_pinctrl_suspend_noirq(struct device *dev)

    static int chv_pinctrl_resume_noirq(struct device *dev)
    {
    - struct platform_device *pdev = to_platform_device(dev);
    - struct chv_pinctrl *pctrl = platform_get_drvdata(pdev);
    + struct chv_pinctrl *pctrl = dev_get_drvdata(dev);
    unsigned long flags;
    int i;

    --
    2.19.0
    \
     
     \ /
      Last update: 2018-10-21 22:03    [W:3.176 / U:0.040 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site