[PATCH v5 3/4] mtd: rawnand: meson: refine resource getting in probe
Liang Yang
liang.yang at amlogic.com
Thu May 26 20:18:04 PDT 2022
Hi Kevin,
On 2022/5/27 0:27, Kevin Hilman wrote:
> [ EXTERNAL EMAIL ]
>
> Liang Yang <liang.yang at amlogic.com> writes:
>
>> Signed-off-by: Liang Yang <liang.yang at amlogic.com>
>
> Patch should have a changelog.ok, i will add it.
>
> Reviewed-by: Kevin Hilman <khilman at baylibre.com>
>
>> ---
>> 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 at lists.infradead.org
>> http://lists.infradead.org/mailman/listinfo/linux-amlogic
>
> .
More information about the linux-mtd
mailing list