Jeff Garzik wrote:
>> -IXGB_WRITE_REG_ARRAY(hw, RA, (i << 1), 0);
>> +/* Write high reg first to disable the AV bit first */
>> IXGB_WRITE_REG_ARRAY(hw, RA, ((i << 1) + 1), 0);
>> +IXGB_WRITE_REG_ARRAY(hw, RA, (i << 1), 0);
>
> Are you sure the orde
Kok, Auke wrote:
We need to disable the AV bit before flushing the low register.
Signed-off-by: <[EMAIL PROTECTED]>
Signed-off-by: Auke Kok <[EMAIL PROTECTED]>
---
drivers/net/ixgb/ixgb_hw.c |3 ++-
drivers/net/ixgb/ixgb_main.c |2 +-
2 files changed, 3 insertions(+), 2 deletions(-)
We need to disable the AV bit before flushing the low register.
Signed-off-by: <[EMAIL PROTECTED]>
Signed-off-by: Auke Kok <[EMAIL PROTECTED]>
---
drivers/net/ixgb/ixgb_hw.c |3 ++-
drivers/net/ixgb/ixgb_main.c |2 +-
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/driv