The device tree subnodes, and hardware, for the eccmgr are the same for Arria10, Stratix10, and Agilex. Update driver to allow the subnodes to be allowed for "altr,socfpga-s10-ecc-manager". Signed-off-by: Matthew Gerlach <matthew.gerlach@xxxxxxxxxx> --- drivers/edac/altera_edac.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/edac/altera_edac.c b/drivers/edac/altera_edac.c index 3e971f902363..895a5beb700f 100644 --- a/drivers/edac/altera_edac.c +++ b/drivers/edac/altera_edac.c @@ -1030,6 +1030,9 @@ static int __init __maybe_unused altr_init_a10_ecc_device_type(char *compat) np = of_find_compatible_node(NULL, NULL, "altr,socfpga-a10-ecc-manager"); + if (!np) + np = of_find_compatible_node(NULL, NULL, + "altr,socfpga-s10-ecc-manager"); if (!np) { edac_printk(KERN_ERR, EDAC_DEVICE, "ECC Manager not found\n"); return -ENODEV; -- 2.35.3