Re: [PATCH v5 3/4] mtd: rawnand: meson: refine resource getting in probe

From: Liang Yang
Date: Thu May 26 2022 - 23:18:14 EST


Hi Kevin,

On 2022/5/27 0:27, Kevin Hilman wrote:
[ EXTERNAL EMAIL ]

Liang Yang <liang.yang@xxxxxxxxxxx> writes:

Signed-off-by: Liang Yang <liang.yang@xxxxxxxxxxx>

Patch should have a changelog.ok, i will add it.

Reviewed-by: Kevin Hilman <khilman@xxxxxxxxxxxx>

---
drivers/mtd/nand/raw/meson_nand.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/mtd/nand/raw/meson_nand.c b/drivers/mtd/nand/raw/meson_nand.c
index cc93667a1e7f..6e50387475bb 100644
--- a/drivers/mtd/nand/raw/meson_nand.c
+++ b/drivers/mtd/nand/raw/meson_nand.c
@@ -1378,7 +1378,6 @@ static int meson_nfc_probe(struct platform_device *pdev)
{
struct device *dev = &pdev->dev;
struct meson_nfc *nfc;
- struct resource *res;
int ret, irq;
nfc = devm_kzalloc(dev, sizeof(*nfc), GFP_KERNEL);
@@ -1395,8 +1394,7 @@ static int meson_nfc_probe(struct platform_device *pdev)
nfc->dev = dev;
- res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
- nfc->reg_base = devm_ioremap_resource(dev, res);
+ nfc->reg_base = devm_platform_ioremap_resource_byname(pdev, "nfc");
if (IS_ERR(nfc->reg_base))
return PTR_ERR(nfc->reg_base);
--
2.34.1


_______________________________________________
linux-amlogic mailing list
linux-amlogic@xxxxxxxxxxxxxxxxxxx
http://lists.infradead.org/mailman/listinfo/linux-amlogic

.