mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 20:51:44 +00:00
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>
This commit is contained in:
parent
6945fe42f8
commit
bde048ebbd
@ -196,7 +196,6 @@ static const struct pwm_ops zx_pwm_ops = {
|
|||||||
static int zx_pwm_probe(struct platform_device *pdev)
|
static int zx_pwm_probe(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
struct zx_pwm_chip *zpc;
|
struct zx_pwm_chip *zpc;
|
||||||
struct resource *res;
|
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
@ -204,8 +203,7 @@ static int zx_pwm_probe(struct platform_device *pdev)
|
|||||||
if (!zpc)
|
if (!zpc)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
zpc->base = devm_platform_ioremap_resource(pdev, 0);
|
||||||
zpc->base = devm_ioremap_resource(&pdev->dev, res);
|
|
||||||
if (IS_ERR(zpc->base))
|
if (IS_ERR(zpc->base))
|
||||||
return PTR_ERR(zpc->base);
|
return PTR_ERR(zpc->base);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user