[PATCH 1/2] mtd: rawnand: mxc: Use device_get_match_data()
Fabio Estevam
festevam at gmail.com
Fri Dec 4 09:58:17 EST 2020
The retrieval of driver data can be a bit simplified by using
device_get_match_data(), so switch to it.
Signed-off-by: Fabio Estevam <festevam at gmail.com>
---
drivers/mtd/nand/raw/mxc_nand.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/drivers/mtd/nand/raw/mxc_nand.c b/drivers/mtd/nand/raw/mxc_nand.c
index f896364968d8..d5c445eb93ad 100644
--- a/drivers/mtd/nand/raw/mxc_nand.c
+++ b/drivers/mtd/nand/raw/mxc_nand.c
@@ -1714,7 +1714,6 @@ static const struct nand_controller_ops mxcnd_controller_ops = {
static int mxcnd_probe(struct platform_device *pdev)
{
- const struct of_device_id *of_id;
struct nand_chip *this;
struct mtd_info *mtd;
struct mxc_nand_host *host;
@@ -1756,8 +1755,7 @@ static int mxcnd_probe(struct platform_device *pdev)
if (IS_ERR(host->clk))
return PTR_ERR(host->clk);
- of_id = of_match_device(mxcnd_dt_ids, host->dev);
- host->devtype_data = of_id->data;
+ host->devtype_data = device_get_match_data(&pdev->dev);
if (!host->devtype_data->setup_interface)
this->options |= NAND_KEEP_TIMINGS;
--
2.17.1
More information about the linux-mtd
mailing list