drivers/intel/i210.h: Remove 'extern' from declaration

"extern" is always implied with function declarations.
Also remove the comment as the linker will just tell you the same if a
definition is missing.

Change-Id: I53679ab57981790f82affb46a006281b348af574
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/71869
Reviewed-by: Paul Menzel <paulepanter@mailbox.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Werner Zeh <werner.zeh@siemens.com>
This commit is contained in:
Arthur Heymans 2023-01-12 11:47:05 +01:00 committed by Felix Held
parent 9f87ad2c2f
commit 1d380128aa
1 changed files with 1 additions and 2 deletions

View File

@ -30,7 +30,6 @@
#define MAC_ADDR_LEN 6 #define MAC_ADDR_LEN 6
/* We need one function we can call to get a MAC address to use */ /* We need one function we can call to get a MAC address to use */
/* This function can be coded somewhere else but must exist. */ enum cb_err mainboard_get_mac_address(struct device *dev, uint8_t mac[MAC_ADDR_LEN]);
extern enum cb_err mainboard_get_mac_address(struct device *dev, uint8_t mac[MAC_ADDR_LEN]);
#endif /* _INTEL_I210_H_ */ #endif /* _INTEL_I210_H_ */