diff options
author | Angel Pons <th3fanbus@gmail.com> | 2021-02-19 20:13:35 +0100 |
---|---|---|
committer | Angel Pons <th3fanbus@gmail.com> | 2021-03-01 19:39:59 +0000 |
commit | 423c9faf63d78511902f9f7979685492fe678dc4 (patch) | |
tree | 56be8d03c3c10ffca8b2a26803cc192b28a35700 | |
parent | e178df27dd8e30c34fda568c7fa890512a55e7f0 (diff) |
soc/intel/skylake: Drop unused function prototypes
Change-Id: I1b08b31876d6c10ac155fd67d4a505e8c272a15c
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/50943
Reviewed-by: Michael Niewöhner <foss@mniewoehner.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r-- | src/soc/intel/skylake/include/soc/bootblock.h | 1 | ||||
-rw-r--r-- | src/soc/intel/skylake/include/soc/romstage.h | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/src/soc/intel/skylake/include/soc/bootblock.h b/src/soc/intel/skylake/include/soc/bootblock.h index bde941c12b..6b6af36504 100644 --- a/src/soc/intel/skylake/include/soc/bootblock.h +++ b/src/soc/intel/skylake/include/soc/bootblock.h @@ -10,7 +10,6 @@ void bootblock_cpu_init(void); void bootblock_pch_early_init(void); /* Bootblock post console init programming */ -void i2c_early_init(void); void bootblock_pch_init(void); void pch_early_iorange_init(void); void report_platform_info(void); diff --git a/src/soc/intel/skylake/include/soc/romstage.h b/src/soc/intel/skylake/include/soc/romstage.h index fe8bc21907..3772db4bc1 100644 --- a/src/soc/intel/skylake/include/soc/romstage.h +++ b/src/soc/intel/skylake/include/soc/romstage.h @@ -8,7 +8,7 @@ void mainboard_memory_init_params(FSPM_UPD *mupd); void systemagent_early_init(void); void romstage_pch_init(void); -int smbus_read_byte(unsigned int device, unsigned int address); + /* Board type */ enum board_type { BOARD_TYPE_MOBILE = 0, |