diff options
author | Aaron Durbin <adurbin@chromium.org> | 2016-05-12 16:08:28 -0500 |
---|---|---|
committer | Aaron Durbin <adurbin@chromium.org> | 2016-05-13 17:22:33 +0200 |
commit | c10ac755f0a18b3bf75f20b109ca2d70464393e4 (patch) | |
tree | 481474d79c16964eb9f430102496d831ea495e92 /src/ec/google/chromeec | |
parent | 572f07497104e1f9c4e1ed0fd01850a9e2a4803f (diff) | |
download | coreboot-c10ac755f0a18b3bf75f20b109ca2d70464393e4.tar.xz |
ec/google/chromeec: don't guard function declarations
In order to allow using the same C source to be compiled
for multiple stages (with #if/#endif guards) one needs the
necessary function delcarations. Therefore, remove the
guards.
Change-Id: Iea94d456451c5d3db8b8b339e81163b3b3fed3ed
Signed-off-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: https://review.coreboot.org/14796
Reviewed-by: Duncan Laurie <dlaurie@google.com>
Tested-by: build bot (Jenkins)
Reviewed-by: Furquan Shaikh <furquan@google.com>
Diffstat (limited to 'src/ec/google/chromeec')
-rw-r--r-- | src/ec/google/chromeec/ec.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/ec/google/chromeec/ec.h b/src/ec/google/chromeec/ec.h index 19507bb86f..d3e6d78e4d 100644 --- a/src/ec/google/chromeec/ec.h +++ b/src/ec/google/chromeec/ec.h @@ -24,7 +24,6 @@ /* Fill in base and size of the IO port resources used. */ void google_chromeec_ioport_range(uint16_t *base, size_t *size); -#ifndef __PRE_RAM__ int google_chromeec_i2c_xfer(uint8_t chip, uint8_t addr, int alen, uint8_t *buffer, int len, int is_read); u32 google_chromeec_get_wake_mask(void); @@ -34,16 +33,13 @@ int google_chromeec_set_wake_mask(u32 mask); u8 google_chromeec_get_event(void); int google_ec_running_ro(void); void google_chromeec_init(void); -#endif -#ifdef __PRE_RAM__ /* If recovery mode is enabled and EC is not running RO firmware reboot. */ void google_chromeec_early_init(void); void google_chromeec_early_pd_init(void); /* Reboot if EC firmware is not expected type. */ void google_chromeec_check_ec_image(int expected_type); void google_chromeec_check_pd_image(int expected_type); -#endif int google_chromeec_check_feature(int feature); uint8_t google_chromeec_calc_checksum(const uint8_t *data, int size); |