Message ID | 20240311152306.2358845-3-ada@thorsis.com |
---|---|
State | Under Review |
Delegated to: | Eugen Hristev |
Headers | show |
Series | mtd: nand: raw: atmel: Using dm driver for older sam9 SoCs | expand |
diff --git a/drivers/memory/atmel_ebi.c b/drivers/memory/atmel_ebi.c index 4739eef1b75..503e2ea707b 100644 --- a/drivers/memory/atmel_ebi.c +++ b/drivers/memory/atmel_ebi.c @@ -23,6 +23,7 @@ static int atmel_ebi_probe(struct udevice *dev) } static const struct udevice_id atmel_ebi_match[] = { + {.compatible = "atmel,at91sam9260-ebi"}, {.compatible = "microchip,sam9x60-ebi"}, {.compatible = "atmel,sama5d3-ebi"}, { /* Sentinel */ }
Required for using the new dm enabled nand controller driver on old boards like the at91sam9g20-ek. Signed-off-by: Alexander Dahl <ada@thorsis.com> --- drivers/memory/atmel_ebi.c | 1 + 1 file changed, 1 insertion(+)