treewide: Remove 'extern' from functions declaration
"extern" is automatically implied with function declaration. Change-Id: Ic40218acab5a009621b6882faacfcac800aaf0b9 Signed-off-by: Elyes Haouas <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/71890 Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Yu-Ping Wu <yupingso@google.com>
This commit is contained in:
@@ -51,9 +51,8 @@ struct ptn_3460_flash {
|
||||
} __packed;
|
||||
|
||||
/* We need functions which we can call to get mainboard specific data */
|
||||
/* These functions can be implemented somewhere else but must exist. */
|
||||
extern enum cb_err mainboard_ptn3460_get_edid(uint8_t edid_data[PTN_EDID_LEN]);
|
||||
extern uint8_t mainboard_ptn3460_select_edid_table(void);
|
||||
extern enum cb_err mainboard_ptn3460_config(struct ptn_3460_config *cfg_ptr);
|
||||
enum cb_err mainboard_ptn3460_get_edid(uint8_t edid_data[PTN_EDID_LEN]);
|
||||
uint8_t mainboard_ptn3460_select_edid_table(void);
|
||||
enum cb_err mainboard_ptn3460_config(struct ptn_3460_config *cfg_ptr);
|
||||
|
||||
#endif /* _I2C_PTN3460_H_ */
|
||||
|
Reference in New Issue
Block a user