aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pwm/pwm-zx.c
diff options
context:
space:
mode:
authorYangtao Li <tiny.windzz@gmail.com>2019-12-29 08:05:48 +0000
committerThierry Reding <thierry.reding@gmail.com>2020-12-17 14:18:41 +0100
commitbde048ebbd2730f569dadfc431a9de1678593941 (patch)
treed335d9c1e57e0a7cf2ba42e726b8ae22378df336 /drivers/pwm/pwm-zx.c
parentpwm: pxa: Convert to devm_platform_ioremap_resource() (diff)
downloadlinux-dev-bde048ebbd2730f569dadfc431a9de1678593941.tar.xz
linux-dev-bde048ebbd2730f569dadfc431a9de1678593941.zip
pwm: zx: Convert to devm_platform_ioremap_resource()
Use devm_platform_ioremap_resource() to simplify code. Signed-off-by: Yangtao Li <tiny.windzz@gmail.com> Reviewed-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Signed-off-by: Thierry Reding <thierry.reding@gmail.com>
Diffstat (limited to 'drivers/pwm/pwm-zx.c')
-rw-r--r--drivers/pwm/pwm-zx.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/pwm/pwm-zx.c b/drivers/pwm/pwm-zx.c
index e2c21cc34a96..0f5e8919b034 100644
--- a/drivers/pwm/pwm-zx.c
+++ b/drivers/pwm/pwm-zx.c
@@ -196,7 +196,6 @@ static const struct pwm_ops zx_pwm_ops = {
static int zx_pwm_probe(struct platform_device *pdev)
{
struct zx_pwm_chip *zpc;
- struct resource *res;
unsigned int i;
int ret;
@@ -204,8 +203,7 @@ static int zx_pwm_probe(struct platform_device *pdev)
if (!zpc)
return -ENOMEM;
- res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
- zpc->base = devm_ioremap_resource(&pdev->dev, res);
+ zpc->base = devm_platform_ioremap_resource(pdev, 0);
if (IS_ERR(zpc->base))
return PTR_ERR(zpc->base);