From c10ac755f0a18b3bf75f20b109ca2d70464393e4 Mon Sep 17 00:00:00 2001 From: Aaron Durbin Date: Thu, 12 May 2016 16:08:28 -0500 Subject: 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 Reviewed-on: https://review.coreboot.org/14796 Reviewed-by: Duncan Laurie Tested-by: build bot (Jenkins) Reviewed-by: Furquan Shaikh --- src/ec/google/chromeec/ec.h | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/ec') 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); -- cgit v1.2.3