mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-03-16 23:07:00 +00:00
Fix compile error caused by incorrect function return type
Rename int mii_init(void) to void mii_init(void) for idmr ColdFire platform Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
This commit is contained in:
parent
4b50cd12a3
commit
5c40548f01
1 changed files with 1 additions and 1 deletions
|
@ -200,7 +200,7 @@ int mii_discover_phy(struct eth_device *dev)
|
|||
}
|
||||
#endif /* CFG_DISCOVER_PHY */
|
||||
|
||||
int mii_init(void) __attribute__((weak,alias("__mii_init")));
|
||||
void mii_init(void) __attribute__((weak,alias("__mii_init")));
|
||||
|
||||
void __mii_init(void)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue