mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
media: rc: meson-ir: Make use of the helper function devm_platform_ioremap_resource()
Use the devm_platform_ioremap_resource() helper instead of calling platform_get_resource() and devm_ioremap_resource() separately Signed-off-by: Cai Huoqing <caihuoqing@baidu.com> Reviewed-by: Neil Armstrong <narmstrong@baylibre.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
This commit is contained in:
parent
890418523f
commit
c533dabe49
1 changed files with 1 additions and 3 deletions
|
@ -102,7 +102,6 @@ static int meson_ir_probe(struct platform_device *pdev)
|
|||
{
|
||||
struct device *dev = &pdev->dev;
|
||||
struct device_node *node = dev->of_node;
|
||||
struct resource *res;
|
||||
const char *map_name;
|
||||
struct meson_ir *ir;
|
||||
int irq, ret;
|
||||
|
@ -111,8 +110,7 @@ static int meson_ir_probe(struct platform_device *pdev)
|
|||
if (!ir)
|
||||
return -ENOMEM;
|
||||
|
||||
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
||||
ir->reg = devm_ioremap_resource(dev, res);
|
||||
ir->reg = devm_platform_ioremap_resource(pdev, 0);
|
||||
if (IS_ERR(ir->reg))
|
||||
return PTR_ERR(ir->reg);
|
||||
|
||||
|
|
Loading…
Reference in a new issue