summaryrefslogtreecommitdiffstats
path: root/src/vendorcode/google/chromeos
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2021-02-10 18:10:17 +0200
committerKyösti Mälkki <kyosti.malkki@gmail.com>2021-02-16 09:37:28 +0000
commitdc0c02fe34fe72b81c0d49879ba342e1125ab535 (patch)
tree5bd55df9b9511405a0dc63e67f5d28908d3a6005 /src/vendorcode/google/chromeos
parent7fb69b01c388fd722fef7fdc6741d13ee5f81733 (diff)
downloadcoreboot-dc0c02fe34fe72b81c0d49879ba342e1125ab535.tar.gz
coreboot-dc0c02fe34fe72b81c0d49879ba342e1125ab535.tar.bz2
coreboot-dc0c02fe34fe72b81c0d49879ba342e1125ab535.zip
soc/intel: Switch guard to CHROMEOS_RAMOOPS
Change-Id: I484220342b5c1055471403f562a8c9db6a403a05 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/50605 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/vendorcode/google/chromeos')
-rw-r--r--src/vendorcode/google/chromeos/chromeos.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/vendorcode/google/chromeos/chromeos.h b/src/vendorcode/google/chromeos/chromeos.h
index 315d693f5d64..d023075b3dab 100644
--- a/src/vendorcode/google/chromeos/chromeos.h
+++ b/src/vendorcode/google/chromeos/chromeos.h
@@ -34,16 +34,12 @@ struct device;
#if CONFIG(CHROMEOS_RAMOOPS)
void chromeos_ram_oops_init(chromeos_acpi_t *chromeos);
-#if CONFIG(CHROMEOS_RAMOOPS_DYNAMIC)
-static inline void chromeos_reserve_ram_oops(struct device *dev, int idx) {}
-#else /* CONFIG_CHROMEOS_RAMOOPS_DYNAMIC */
-void chromeos_reserve_ram_oops(struct device *dev, int idx);
-#endif /* CONFIG_CHROMEOS_RAMOOPS_DYNAMIC */
#else /* !CONFIG_CHROMEOS_RAMOOPS */
static inline void chromeos_ram_oops_init(chromeos_acpi_t *chromeos) {}
-static inline void chromeos_reserve_ram_oops(struct device *dev, int idx) {}
#endif /* CONFIG_CHROMEOS_RAMOOPS */
+void chromeos_reserve_ram_oops(struct device *dev, int idx);
+
void cbmem_add_vpd_calibration_data(void);
void chromeos_set_me_hash(u32*, int);