diff options
author | Jia He <justin.he@arm.com> | 2022-10-10 02:35:57 +0000 |
---|---|---|
committer | Borislav Petkov <bp@suse.de> | 2022-10-21 22:09:54 +0200 |
commit | 315bada690e0c4a5c268a1dd3601aefd3355773f (patch) | |
tree | 944ab33e07d51e69893ee76f73fa095b49f9b207 /drivers/edac/thunderx_edac.c | |
parent | 802e7f1dfed7cc7fb309995e0c4138f08977fdfc (diff) | |
download | linux-315bada690e0c4a5c268a1dd3601aefd3355773f.tar.gz linux-315bada690e0c4a5c268a1dd3601aefd3355773f.tar.bz2 linux-315bada690e0c4a5c268a1dd3601aefd3355773f.zip |
EDAC: Check for GHES preference in the chipset-specific EDAC drivers
Call ghes_get_devices() to check whether ghes_edac should be used on the
platform where it is preferred over the corresponding chipset-specific
EDAC driver.
Unlike the existing edac_get_owner() check, the ghes_get_devices() check
works independent to the module_init ordering.
[ bp: Massage. ]
Suggested-by: Toshi Kani <toshi.kani@hpe.com>
Signed-off-by: Jia He <justin.he@arm.com>
Signed-off-by: Borislav Petkov <bp@suse.de>
Link: https://lore.kernel.org/r/20221010023559.69655-6-justin.he@arm.com
Diffstat (limited to 'drivers/edac/thunderx_edac.c')
-rw-r--r-- | drivers/edac/thunderx_edac.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/edac/thunderx_edac.c b/drivers/edac/thunderx_edac.c index f13674081cb6..0bcd9f02c84a 100644 --- a/drivers/edac/thunderx_edac.c +++ b/drivers/edac/thunderx_edac.c @@ -2114,6 +2114,9 @@ static int __init thunderx_edac_init(void) { int rc = 0; + if (ghes_get_devices()) + return -EBUSY; + rc = pci_register_driver(&thunderx_lmc_driver); if (rc) return rc; |