summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorLi Yang <leoyang.li@nxp.com>2023-05-19 23:12:49 +0300
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2023-06-12 20:31:48 +0300
commit9368aa1882ac7178adcd936cee5f0899dbf76dc4 (patch)
tree056724d131aea492d462434826384d964f9f4aae /drivers
parentd38f6bcea88836bfb346a6d567c452065417e2ed (diff)
downloadlinux-9368aa1882ac7178adcd936cee5f0899dbf76dc4.tar.xz
APEI: GHES: correctly return NULL for ghes_get_devices()
Since 315bada690e0 ("EDAC: Check for GHES preference in the chipset-specific EDAC drivers"), vendor specific EDAC driver will not probe correctly when CONFIG_ACPI_APEI_GHES is enabled but no GHES device is present. Make ghes_get_devices() return NULL when the GHES device list is empty to fix the problem. Fixes: 9057a3f7ac36 ("EDAC/ghes: Prepare to make ghes_edac a proper module") Signed-off-by: Li Yang <leoyang.li@nxp.com> Reviewed-by: Tony Luck <tony.luck@intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/acpi/apei/ghes.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/acpi/apei/ghes.c b/drivers/acpi/apei/ghes.c
index a4148a7d3afe..ef59d6ea16da 100644
--- a/drivers/acpi/apei/ghes.c
+++ b/drivers/acpi/apei/ghes.c
@@ -1542,6 +1542,8 @@ struct list_head *ghes_get_devices(void)
pr_warn_once("Force-loading ghes_edac on an unsupported platform. You're on your own!\n");
}
+ } else if (list_empty(&ghes_devs)) {
+ return NULL;
}
return &ghes_devs;