|
@@ -852,17 +852,8 @@ static void ghes_sea_remove(struct ghes *ghes)
|
|
|
synchronize_rcu();
|
|
|
}
|
|
|
#else /* CONFIG_ACPI_APEI_SEA */
|
|
|
-static inline void ghes_sea_add(struct ghes *ghes)
|
|
|
-{
|
|
|
- pr_err(GHES_PFX "ID: %d, trying to add SEA notification which is not supported\n",
|
|
|
- ghes->generic->header.source_id);
|
|
|
-}
|
|
|
-
|
|
|
-static inline void ghes_sea_remove(struct ghes *ghes)
|
|
|
-{
|
|
|
- pr_err(GHES_PFX "ID: %d, trying to remove SEA notification which is not supported\n",
|
|
|
- ghes->generic->header.source_id);
|
|
|
-}
|
|
|
+static inline void ghes_sea_add(struct ghes *ghes) { }
|
|
|
+static inline void ghes_sea_remove(struct ghes *ghes) { }
|
|
|
#endif /* CONFIG_ACPI_APEI_SEA */
|
|
|
|
|
|
#ifdef CONFIG_HAVE_ACPI_APEI_NMI
|
|
@@ -1064,23 +1055,9 @@ static void ghes_nmi_init_cxt(void)
|
|
|
init_irq_work(&ghes_proc_irq_work, ghes_proc_in_irq);
|
|
|
}
|
|
|
#else /* CONFIG_HAVE_ACPI_APEI_NMI */
|
|
|
-static inline void ghes_nmi_add(struct ghes *ghes)
|
|
|
-{
|
|
|
- pr_err(GHES_PFX "ID: %d, trying to add NMI notification which is not supported!\n",
|
|
|
- ghes->generic->header.source_id);
|
|
|
- BUG();
|
|
|
-}
|
|
|
-
|
|
|
-static inline void ghes_nmi_remove(struct ghes *ghes)
|
|
|
-{
|
|
|
- pr_err(GHES_PFX "ID: %d, trying to remove NMI notification which is not supported!\n",
|
|
|
- ghes->generic->header.source_id);
|
|
|
- BUG();
|
|
|
-}
|
|
|
-
|
|
|
-static inline void ghes_nmi_init_cxt(void)
|
|
|
-{
|
|
|
-}
|
|
|
+static inline void ghes_nmi_add(struct ghes *ghes) { }
|
|
|
+static inline void ghes_nmi_remove(struct ghes *ghes) { }
|
|
|
+static inline void ghes_nmi_init_cxt(void) { }
|
|
|
#endif /* CONFIG_HAVE_ACPI_APEI_NMI */
|
|
|
|
|
|
static int ghes_probe(struct platform_device *ghes_dev)
|