Commit fb5bda8c authored by Yangtao Li's avatar Yangtao Li Committed by Jassi Brar

mailbox: tegra-hsp: Convert to devm_platform_ioremap_resource()

Use devm_platform_ioremap_resource() to simplify code.
Signed-off-by: default avatarYangtao Li <frank.li@vivo.com>
Signed-off-by: default avatarJassi Brar <jaswinder.singh@linaro.org>
parent 840f6822
...@@ -728,7 +728,6 @@ static int tegra_hsp_request_shared_irq(struct tegra_hsp *hsp) ...@@ -728,7 +728,6 @@ static int tegra_hsp_request_shared_irq(struct tegra_hsp *hsp)
static int tegra_hsp_probe(struct platform_device *pdev) static int tegra_hsp_probe(struct platform_device *pdev)
{ {
struct tegra_hsp *hsp; struct tegra_hsp *hsp;
struct resource *res;
unsigned int i; unsigned int i;
u32 value; u32 value;
int err; int err;
...@@ -742,8 +741,7 @@ static int tegra_hsp_probe(struct platform_device *pdev) ...@@ -742,8 +741,7 @@ static int tegra_hsp_probe(struct platform_device *pdev)
INIT_LIST_HEAD(&hsp->doorbells); INIT_LIST_HEAD(&hsp->doorbells);
spin_lock_init(&hsp->lock); spin_lock_init(&hsp->lock);
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); hsp->regs = devm_platform_ioremap_resource(pdev, 0);
hsp->regs = devm_ioremap_resource(&pdev->dev, res);
if (IS_ERR(hsp->regs)) if (IS_ERR(hsp->regs))
return PTR_ERR(hsp->regs); return PTR_ERR(hsp->regs);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment