projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1cda263
)
mtd: rawnand: mtk: Make use of the helper function devm_platform_ioremap_resource()
author
Cai Huoqing
<caihuoqing@baidu.com>
Wed, 1 Sep 2021 07:41:44 +0000
(15:41 +0800)
committer
Miquel Raynal
<miquel.raynal@bootlin.com>
Tue, 14 Sep 2021 17:34:44 +0000
(19:34 +0200)
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: Miquel Raynal <miquel.raynal@bootlin.com>
Link:
https://lore.kernel.org/linux-mtd/20210901074145.9183-1-caihuoqing@baidu.com
drivers/mtd/nand/raw/mtk_nand.c
patch
|
blob
|
history
diff --git
a/drivers/mtd/nand/raw/mtk_nand.c
b/drivers/mtd/nand/raw/mtk_nand.c
index 5c5c92132287da07b43d380ced61c0f88f5008e4..66f04c693c87d0ca079c1d87cf096cfda50fa279 100644
(file)
--- a/
drivers/mtd/nand/raw/mtk_nand.c
+++ b/
drivers/mtd/nand/raw/mtk_nand.c
@@
-1520,7
+1520,6
@@
static int mtk_nfc_probe(struct platform_device *pdev)
struct device *dev = &pdev->dev;
struct device_node *np = dev->of_node;
struct mtk_nfc *nfc;
- struct resource *res;
int ret, irq;
nfc = devm_kzalloc(dev, sizeof(*nfc), GFP_KERNEL);
@@
-1541,8
+1540,7
@@
static int mtk_nfc_probe(struct platform_device *pdev)
nfc->caps = of_device_get_match_data(dev);
nfc->dev = dev;
- res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
- nfc->regs = devm_ioremap_resource(dev, res);
+ nfc->regs = devm_platform_ioremap_resource(pdev, 0);
if (IS_ERR(nfc->regs)) {
ret = PTR_ERR(nfc->regs);
goto release_ecc;