aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/soc/fsl/rcpm.c
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2021-10-22 17:31:39 +0200
committerArnd Bergmann <arnd@arndb.de>2021-10-22 17:31:40 +0200
commitac2561f921e233ca7ae027c6e7e7b8832029dd04 (patch)
tree8c9eded8c19b2b7f921f04d0d6f06c76b40d0daf /drivers/soc/fsl/rcpm.c
parentoptee: smc_abi.c: add missing #include <linux/mm.h> (diff)
parentsoc: fsl: dpio: rename the enqueue descriptor variable (diff)
downloadlinux-dev-ac2561f921e233ca7ae027c6e7e7b8832029dd04.tar.xz
linux-dev-ac2561f921e233ca7ae027c6e7e7b8832029dd04.zip
Merge tag 'soc-fsl-next-v5.16' of git://git.kernel.org/pub/scm/linux/kernel/git/leo/linux into arm/drivers
NXP/FSL SoC driver updates for v5.16 DPIO Driver - Code cleanup and fix compile warning RCMP and Guts Driver - Make use of the helper function devm_platform_ioremap_resource() * tag 'soc-fsl-next-v5.16' of git://git.kernel.org/pub/scm/linux/kernel/git/leo/linux: soc: fsl: dpio: rename the enqueue descriptor variable soc: fsl: dpio: use an explicit NULL instead of 0 soc: fsl: rcpm: Make use of the helper function devm_platform_ioremap_resource() soc: fsl: guts: Make use of the helper function devm_platform_ioremap_resource() Link: https://lore.kernel.org/r/20211022010027.11866-2-leoyang.li@nxp.com Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'drivers/soc/fsl/rcpm.c')
-rw-r--r--drivers/soc/fsl/rcpm.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/drivers/soc/fsl/rcpm.c b/drivers/soc/fsl/rcpm.c
index 90d3f4060b0c..3d0cae30c769 100644
--- a/drivers/soc/fsl/rcpm.c
+++ b/drivers/soc/fsl/rcpm.c
@@ -146,7 +146,6 @@ static const struct dev_pm_ops rcpm_pm_ops = {
static int rcpm_probe(struct platform_device *pdev)
{
struct device *dev = &pdev->dev;
- struct resource *r;
struct rcpm *rcpm;
int ret;
@@ -154,11 +153,7 @@ static int rcpm_probe(struct platform_device *pdev)
if (!rcpm)
return -ENOMEM;
- r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
- if (!r)
- return -ENODEV;
-
- rcpm->ippdexpcr_base = devm_ioremap_resource(&pdev->dev, r);
+ rcpm->ippdexpcr_base = devm_platform_ioremap_resource(pdev, 0);
if (IS_ERR(rcpm->ippdexpcr_base)) {
ret = PTR_ERR(rcpm->ippdexpcr_base);
return ret;