chromeos: Add empty functions when CONFIG_CHROMEOS is disabled
This allows the chromeos header and functions to be included without needing to guard with #if CONFIG_CHROMEOS. BUG=chrome-os-partner:28234 BRANCH=None TEST=emerge-rambi coreboot Original-Change-Id: I523813dc9521d533242ae2d2bc822eb8b0ffa5e2 Original-Signed-off-by: Duncan Laurie <dlaurie@chromium.org> Original-Reviewed-on: https://chromium-review.googlesource.com/196265 Original-Reviewed-by: Aaron Durbin <adurbin@chromium.org> (cherry picked from commit b78ccada9a01f54a60993dfc2c618201d31df9ad) Signed-off-by: Marc Jones <marc.jones@se-eng.com> Change-Id: Ic2f7127966da716e114336c30829a6403d82e180 Reviewed-on: http://review.coreboot.org/7843 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
parent
455fcaf146
commit
203e8cecdf
|
@ -31,8 +31,12 @@ int vboot_wants_oprom(void);
|
|||
void read_vbnv(uint8_t *vbnv_copy);
|
||||
void save_vbnv(const uint8_t *vbnv_copy);
|
||||
|
||||
#if CONFIG_CHROMEOS
|
||||
/* functions implemented in vboot.c */
|
||||
void init_chromeos(int bootmode);
|
||||
#else
|
||||
static inline void init_chromeos(int bootmode) { }
|
||||
#endif /* CONFIG_CHROMEOS */
|
||||
|
||||
struct romstage_handoff;
|
||||
|
||||
|
|
Loading…
Reference in New Issue