47 lines
1.7 KiB
Diff
47 lines
1.7 KiB
Diff
From 02261391c0bff0f574d3d661940261bd00683af5 Mon Sep 17 00:00:00 2001
|
|
From: YueHaibing <yuehaibing@huawei.com>
|
|
Date: Wed, 4 Sep 2019 21:02:56 +0800
|
|
Subject: [PATCH 016/108] scsi: hisi_sas: use devm_platform_ioremap_resource()
|
|
to simplify code
|
|
|
|
mainline inclusion
|
|
from mainline-v5.4-rc1
|
|
commit c0c1a71e9542e6b0b58642332eb86fd32c9b2ed8
|
|
category: feature
|
|
bugzilla: https://gitee.com/src-openeuler/kernel/issues/I8EKNE
|
|
|
|
Reference: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=c0c1a71e9542e6b0b58642332eb86fd32c9b2ed8
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
Use devm_platform_ioremap_resource() to simplify the code a bit.
|
|
This is detected by coccinelle.
|
|
|
|
Link: https://lore.kernel.org/r/20190904130256.24704-1-yuehaibing@huawei.com
|
|
Reported-by: Hulk Robot <hulkci@huawei.com>
|
|
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
|
|
Acked-by: John Garry <john.garry@huawei.com>
|
|
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
|
|
Signed-off-by: YunYi Yang <yangyunyi2@huawei.com>
|
|
---
|
|
drivers/scsi/hisi_sas/hisi_sas_main.c | 3 +--
|
|
1 file changed, 1 insertion(+), 2 deletions(-)
|
|
|
|
diff --git a/drivers/scsi/hisi_sas/hisi_sas_main.c b/drivers/scsi/hisi_sas/hisi_sas_main.c
|
|
index 525f6ba94459..ce6fe08cf18b 100644
|
|
--- a/drivers/scsi/hisi_sas/hisi_sas_main.c
|
|
+++ b/drivers/scsi/hisi_sas/hisi_sas_main.c
|
|
@@ -2659,8 +2659,7 @@ static struct Scsi_Host *hisi_sas_shost_alloc(struct platform_device *pdev,
|
|
goto err_out;
|
|
}
|
|
|
|
- res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
|
- hisi_hba->regs = devm_ioremap_resource(dev, res);
|
|
+ hisi_hba->regs = devm_platform_ioremap_resource(pdev, 0);
|
|
if (IS_ERR(hisi_hba->regs))
|
|
goto err_out;
|
|
|
|
--
|
|
2.27.0
|
|
|