[PATCH] fix rtl8150
That code doesn't do what its author apparently thought it would do... Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
ce35a81a71
commit
886ae1fa13
1 changed files with 2 additions and 1 deletions
|
@ -284,7 +284,8 @@ static int write_mii_word(rtl8150_t * dev, u8 phy, __u8 indx, u16 reg)
|
|||
u8 data[3], tmp;
|
||||
|
||||
data[0] = phy;
|
||||
*(data + 1) = cpu_to_le16p(®);
|
||||
data[1] = reg & 0xff;
|
||||
data[2] = (reg >> 8) & 0xff;
|
||||
tmp = indx | PHY_WRITE | PHY_GO;
|
||||
i = 0;
|
||||
|
||||
|
|
Loading…
Reference in a new issue