From: Alexey Brodkin Date: Sat, 8 Feb 2014 06:24:35 +0000 (+0400) Subject: axs101: fix dw gmac instantiation for updated dw gmac driver X-Git-Tag: v2014.04-rc2~124 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=f39b2a6e88ba6328879507d618da5d44dd9b4297;p=oweals%2Fu-boot.git axs101: fix dw gmac instantiation for updated dw gmac driver With accepted change to DW GMAC driver - 92a190aaab3536d695c51e0739f925910eb49889 (net/designware - switch driver to phylib usage) we need to update this board because "designware_initialize" now accepts only 2 parameters instead of 4. Cc: Vineet Gupta Cc: Tom Rini Signed-off-by: Alexey Brodkin --- diff --git a/board/synopsys/axs101/axs101.c b/board/synopsys/axs101/axs101.c index 4dbeaea161..d1271ffcca 100644 --- a/board/synopsys/axs101/axs101.c +++ b/board/synopsys/axs101/axs101.c @@ -36,7 +36,7 @@ int board_mmc_init(bd_t *bis) int board_eth_init(bd_t *bis) { - if (designware_initialize(0, ARC_DWGMAC_BASE, 0, + if (designware_initialize(ARC_DWGMAC_BASE, PHY_INTERFACE_MODE_RGMII) >= 0) return 1;