mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
via-velocity: Fix test of mii_status bit VELOCITY_DUPLEX_FULL
Test whether VELOCITY_DUPLEX_FULL bit is set in mii_status. Signed-off-by: Roel Kluin <roel.kluin@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
88512935a2
commit
0527a1a844
1 changed files with 1 additions and 1 deletions
|
@ -1778,7 +1778,7 @@ static void velocity_error(struct velocity_info *vptr, int status)
|
|||
* mode
|
||||
*/
|
||||
if (vptr->rev_id < REV_ID_VT3216_A0) {
|
||||
if (vptr->mii_status | VELOCITY_DUPLEX_FULL)
|
||||
if (vptr->mii_status & VELOCITY_DUPLEX_FULL)
|
||||
BYTE_REG_BITS_ON(TCR_TB2BDIS, ®s->TCR);
|
||||
else
|
||||
BYTE_REG_BITS_OFF(TCR_TB2BDIS, ®s->TCR);
|
||||
|
|
Loading…
Reference in a new issue