diff options
| author | Graeme Russ <graeme.russ@gmail.com> | 2011-07-15 23:31:37 +0000 | 
|---|---|---|
| committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2011-07-16 11:55:00 +0200 | 
| commit | a60d1e5b8e5007f53c198acc5ca636ae570ae180 (patch) | |
| tree | ce621710efc0ecace5a53c22e93f4c6dfcf03be2 /drivers/net/netarm_eth.c | |
| parent | 4e0499ebb0ac53aca45735ed63a3230df3280fb8 (diff) | |
| download | olio-uboot-2014.01-a60d1e5b8e5007f53c198acc5ca636ae570ae180.tar.xz olio-uboot-2014.01-a60d1e5b8e5007f53c198acc5ca636ae570ae180.zip | |
Timer: Fix misuse of ARM *timer_masked() functions outside arch/arm
Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
Diffstat (limited to 'drivers/net/netarm_eth.c')
| -rw-r--r-- | drivers/net/netarm_eth.c | 12 | 
1 files changed, 7 insertions, 5 deletions
| diff --git a/drivers/net/netarm_eth.c b/drivers/net/netarm_eth.c index c9e324ee2..f54817e58 100644 --- a/drivers/net/netarm_eth.c +++ b/drivers/net/netarm_eth.c @@ -81,9 +81,10 @@ static unsigned int na_mii_read (int reg)  static int na_mii_poll_busy (void)  { +	ulong start;  	/* arm simple, non interrupt dependent timer */ -	reset_timer_masked (); -	while (get_timer_masked () < NA_MII_POLL_BUSY_DELAY) { +	start = get_timer(0)); +	while (get_timer(start) < NA_MII_POLL_BUSY_DELAY) {  		if (!(GET_EADDR (NETARM_ETH_MII_IND) & NETARM_ETH_MIII_BUSY)) {  			return 1;  		} @@ -164,19 +165,20 @@ static unsigned int na_mii_check_speed (void)  static int reset_eth (void)  {  	int pt; +	ulong start;  	na_get_mac_addr ();  	pt = na_mii_identify_phy ();  	/* reset the phy */  	na_mii_write (MII_PHY_CONTROL, 0x8000); -	reset_timer_masked (); -	while (get_timer_masked () < NA_MII_NEGOTIATE_DELAY) { +	start = get_timer(0); +	while (get_timer(start) < NA_MII_NEGOTIATE_DELAY) {  		if ((na_mii_read (MII_PHY_STATUS) & 0x8000) == 0) {  			break;  		}  	} -	if (get_timer_masked () >= NA_MII_NEGOTIATE_DELAY) +	if (get_timer(start) >= NA_MII_NEGOTIATE_DELAY)  		printf ("phy reset timeout\n");  	/* set the PCS reg */ |