diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2022-06-29 01:17:39 +0300 |
---|---|---|
committer | Lee Jones <lee@kernel.org> | 2022-07-19 12:54:41 +0300 |
commit | 2790a70c886bbb7e539f8f416438bd35346e364c (patch) | |
tree | 42f96b95554342dddcdd7fc24f8ffd776634339e /drivers/mfd | |
parent | 929a4d289de9d6bf74b4c7d093ccc4823c9f56e9 (diff) | |
download | linux-2790a70c886bbb7e539f8f416438bd35346e364c.tar.xz |
mfd: intel_soc_pmic_bxtwc: Convert to use platform_get/set_drvdata()
We have the specific helpers for platform device to set and get
its driver data. Convert driver to use them instead of open coded
variants.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Link: https://lore.kernel.org/r/20220628221747.33956-3-andriy.shevchenko@linux.intel.com
Diffstat (limited to 'drivers/mfd')
-rw-r--r-- | drivers/mfd/intel_soc_pmic_bxtwc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mfd/intel_soc_pmic_bxtwc.c b/drivers/mfd/intel_soc_pmic_bxtwc.c index d43cd18f5189..540bb31128c0 100644 --- a/drivers/mfd/intel_soc_pmic_bxtwc.c +++ b/drivers/mfd/intel_soc_pmic_bxtwc.c @@ -457,7 +457,7 @@ static int bxtwc_probe(struct platform_device *pdev) return ret; pmic->irq = ret; - dev_set_drvdata(&pdev->dev, pmic); + platform_set_drvdata(pdev, pmic); pmic->dev = &pdev->dev; pmic->scu = devm_intel_scu_ipc_dev_get(&pdev->dev); @@ -574,7 +574,7 @@ static int bxtwc_probe(struct platform_device *pdev) static void bxtwc_shutdown(struct platform_device *pdev) { - struct intel_soc_pmic *pmic = dev_get_drvdata(&pdev->dev); + struct intel_soc_pmic *pmic = platform_get_drvdata(pdev); disable_irq(pmic->irq); } |