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:
Elyes Haouas
2023-01-14 07:30:21 +01:00
committed by Felix Held
parent 764167b8ca
commit 3813ca521a
15 changed files with 35 additions and 36 deletions

View File

@@ -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_ */