diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2023-01-14 07:30:21 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-05-26 13:45:24 +0000 |
commit | 3813ca521a6cd7348ce111c3f46cbee66a1b964d (patch) | |
tree | 327922404460cd26388d1f26721670879cb619c9 /src/drivers/i2c | |
parent | 764167b8ca91b136b068f1d3f03adf5f50af615a (diff) |
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>
Diffstat (limited to 'src/drivers/i2c')
-rw-r--r-- | src/drivers/i2c/ptn3460/ptn3460.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/drivers/i2c/ptn3460/ptn3460.h b/src/drivers/i2c/ptn3460/ptn3460.h index a3fa60bdc0..ac342abefc 100644 --- a/src/drivers/i2c/ptn3460/ptn3460.h +++ b/src/drivers/i2c/ptn3460/ptn3460.h @@ -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_ */ |