aboutsummaryrefslogtreecommitdiff
path: root/drivers/mtd/maps/rbtx4939-flash.c
diff options
context:
space:
mode:
authorRafał Miłecki <rafal@milecki.pl>2018-07-13 11:27:33 +0200
committerBoris Brezillon <boris.brezillon@bootlin.com>2018-07-18 16:32:36 +0200
commit4897015d2ffb78c3064eeffa2d4022c5be3ea18f (patch)
treef6cc4e4ae92445dd0e241b0ec736b7791d00b40e /drivers/mtd/maps/rbtx4939-flash.c
parent9ea97a7d689c55a5528bfaad499edf1a4ca02e2a (diff)
mtd: maps: use mtd_device_register() where applicable
If driver doesn't specify parsers it can use that little helper. Signed-off-by: Rafał Miłecki <rafal@milecki.pl> Signed-off-by: Boris Brezillon <boris.brezillon@bootlin.com>
Diffstat (limited to 'drivers/mtd/maps/rbtx4939-flash.c')
-rw-r--r--drivers/mtd/maps/rbtx4939-flash.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/mtd/maps/rbtx4939-flash.c b/drivers/mtd/maps/rbtx4939-flash.c
index 3a06ecfc55ff..80a187167c92 100644
--- a/drivers/mtd/maps/rbtx4939-flash.c
+++ b/drivers/mtd/maps/rbtx4939-flash.c
@@ -97,8 +97,7 @@ static int rbtx4939_flash_probe(struct platform_device *dev)
goto err_out;
}
info->mtd->dev.parent = &dev->dev;
- err = mtd_device_parse_register(info->mtd, NULL, NULL, pdata->parts,
- pdata->nr_parts);
+ err = mtd_device_register(info->mtd, pdata->parts, pdata->nr_parts);
if (err)
goto err_out;