chromeos: fix build breakage when !CHROMEOS_RAMOOPS

Needed types were being guarded by CONFIG_CHROMEOS_RAMOOPS.
Expose those unconditionally.

BUG=None
BRANCH=None
TEST=None

Change-Id: Ie858c746307ad3669eab5c35bf219e1a58da2382
Signed-off-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/188714
Reviewed-by: Duncan Laurie <dlaurie@chromium.org>
This commit is contained in:
Aaron Durbin 2014-03-05 17:25:22 -06:00 committed by chrome-internal-fetch
commit cd1b5f757c

View file

@ -61,10 +61,10 @@ static inline int vboot_get_handoff_info(void **addr, uint32_t *size)
}
#endif
#if CONFIG_CHROMEOS_RAMOOPS
#include "gnvs.h"
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) {}