soc: qcom: aoss: 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> Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org> Link: https://lore.kernel.org/r/20210908080216.1301-4-caihuoqing@baidu.com
This commit is contained in:
committed by
Bjorn Andersson
parent
d21dc0be36
commit
c318dcbccc
@@ -521,7 +521,6 @@ static void qmp_cooling_devices_remove(struct qmp *qmp)
|
|||||||
|
|
||||||
static int qmp_probe(struct platform_device *pdev)
|
static int qmp_probe(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
struct resource *res;
|
|
||||||
struct qmp *qmp;
|
struct qmp *qmp;
|
||||||
int irq;
|
int irq;
|
||||||
int ret;
|
int ret;
|
||||||
@@ -534,8 +533,7 @@ static int qmp_probe(struct platform_device *pdev)
|
|||||||
init_waitqueue_head(&qmp->event);
|
init_waitqueue_head(&qmp->event);
|
||||||
mutex_init(&qmp->tx_lock);
|
mutex_init(&qmp->tx_lock);
|
||||||
|
|
||||||
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
qmp->msgram = devm_platform_ioremap_resource(pdev, 0);
|
||||||
qmp->msgram = devm_ioremap_resource(&pdev->dev, res);
|
|
||||||
if (IS_ERR(qmp->msgram))
|
if (IS_ERR(qmp->msgram))
|
||||||
return PTR_ERR(qmp->msgram);
|
return PTR_ERR(qmp->msgram);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user