提交 a04f3035 编写于 作者: C Cai Huoqing 提交者: Jassi Brar

mailbox: mtk-cmdq: 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: NCai Huoqing <caihuoqing@baidu.com>
Signed-off-by: NJassi Brar <jaswinder.singh@linaro.org>
上级 be423604
...@@ -525,7 +525,6 @@ static struct mbox_chan *cmdq_xlate(struct mbox_controller *mbox, ...@@ -525,7 +525,6 @@ static struct mbox_chan *cmdq_xlate(struct mbox_controller *mbox,
static int cmdq_probe(struct platform_device *pdev) static int cmdq_probe(struct platform_device *pdev)
{ {
struct device *dev = &pdev->dev; struct device *dev = &pdev->dev;
struct resource *res;
struct cmdq *cmdq; struct cmdq *cmdq;
int err, i; int err, i;
struct gce_plat *plat_data; struct gce_plat *plat_data;
...@@ -538,8 +537,7 @@ static int cmdq_probe(struct platform_device *pdev) ...@@ -538,8 +537,7 @@ static int cmdq_probe(struct platform_device *pdev)
if (!cmdq) if (!cmdq)
return -ENOMEM; return -ENOMEM;
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); cmdq->base = devm_platform_ioremap_resource(pdev, 0);
cmdq->base = devm_ioremap_resource(dev, res);
if (IS_ERR(cmdq->base)) if (IS_ERR(cmdq->base))
return PTR_ERR(cmdq->base); return PTR_ERR(cmdq->base);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册