From: Roger Quadros Date: Sat, 26 Mar 2022 08:07:26 +0000 (+0200) Subject: mtd: rawnand: omap_elm: Add compatible for AM64 ELM X-Git-Tag: v6.1-rc5~1305^2^2~19 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=51a4a71d974c25dc102216a52462ff6d53eced15;p=platform%2Fkernel%2Flinux-starfive.git mtd: rawnand: omap_elm: Add compatible for AM64 ELM The AM64 SoC has the Error Locator Module. Add compatible id for it. Signed-off-by: Roger Quadros Signed-off-by: Miquel Raynal Link: https://lore.kernel.org/linux-mtd/20220326080726.30372-4-rogerq@kernel.org --- diff --git a/drivers/mtd/nand/raw/omap_elm.c b/drivers/mtd/nand/raw/omap_elm.c index 893e997..4796a48 100644 --- a/drivers/mtd/nand/raw/omap_elm.c +++ b/drivers/mtd/nand/raw/omap_elm.c @@ -548,6 +548,7 @@ static SIMPLE_DEV_PM_OPS(elm_pm_ops, elm_suspend, elm_resume); #ifdef CONFIG_OF static const struct of_device_id elm_of_match[] = { { .compatible = "ti,am3352-elm" }, + { .compatible = "ti,am64-elm" }, {}, }; MODULE_DEVICE_TABLE(of, elm_of_match);