Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 263919
b: refs/heads/master
c: 483f97f
h: refs/heads/master
i:
  263917: fd579ad
  263915: eb901b2
  263911: 785321b
  263903: 2a16ce6
v: v3
  • Loading branch information
Ben Hutchings authored and David S. Miller committed Sep 15, 2011
1 parent 9c376be commit 6a70db2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 86c432ca5d6da90a26ac8d3e680f2268b502d9c5
refs/heads/master: 483f97f8b2b7f0ab09e14c06fe327d5e346fac28
9 changes: 5 additions & 4 deletions trunk/drivers/net/sfc/io.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@
* replacing the low 96 bits with zero does not affect functionality.
* - If the host writes to the last dword address of such a register
* (i.e. the high 32 bits) the underlying register will always be
* written. If the collector does not hold values for the low 96
* bits of the register, they will be written as zero. Writing to
* the last qword does not have this effect and must not be done.
* written. If the collector and the current write together do not
* provide values for all 128 bits of the register, the low 96 bits
* will be written as zero.
* - If the host writes to the address of any other part of such a
* register while the collector already holds values for some other
* register, the write is discarded and the collector maintains its
Expand Down Expand Up @@ -237,12 +237,13 @@ static inline void _efx_writeo_page(struct efx_nic *efx, efx_oword_t *value,

#ifdef EFX_USE_QWORD_IO
_efx_writeq(efx, value->u64[0], reg + 0);
_efx_writeq(efx, value->u64[1], reg + 8);
#else
_efx_writed(efx, value->u32[0], reg + 0);
_efx_writed(efx, value->u32[1], reg + 4);
#endif
_efx_writed(efx, value->u32[2], reg + 8);
_efx_writed(efx, value->u32[3], reg + 12);
#endif
}
#define efx_writeo_page(efx, value, reg, page) \
_efx_writeo_page(efx, value, \
Expand Down

0 comments on commit 6a70db2

Please sign in to comment.