Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 175248
b: refs/heads/master
c: 02cdb0b
h: refs/heads/master
v: v3
  • Loading branch information
Alan Cox authored and Greg Kroah-Hartman committed Dec 11, 2009
1 parent e7b41ba commit 140e214
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 18 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: cfc52eb676a88721221bd89e94222483f681ffe6
refs/heads/master: 02cdb0b427486355b9b8d715e529cff5b7b7b0e8
22 changes: 5 additions & 17 deletions trunk/drivers/staging/et131x/et1310_address_map.h
Original file line number Diff line number Diff line change
Expand Up @@ -675,23 +675,11 @@ typedef union _TXMAC_CTL_t {
/*
* structure for shadow pointer reg in txmac address map
* located at address 0x3004
* 31-27: reserved
* 26-16: txq rd ptr
* 15-11: reserved
* 10-0: txq wr ptr
*/
typedef union _TXMAC_SHADOW_PTR_t {
u32 value;
struct {
#ifdef _BIT_FIELDS_HTOL
u32 reserved2:5; /* bits 27-31 */
u32 txq_rd_ptr:11; /* bits 16-26 */
u32 reserved:5; /* bits 11-15 */
u32 txq_wr_ptr:11; /* bits 0-10 */
#else
u32 txq_wr_ptr:11; /* bits 0-10 */
u32 reserved:5; /* bits 11-15 */
u32 txq_rd_ptr:11; /* bits 16-26 */
u32 reserved2:5; /* bits 27-31 */
#endif
} bits;
} TXMAC_SHADOW_PTR_t, *PTXMAC_SHADOW_PTR_t;

/*
* structure for error count reg in txmac address map
Expand Down Expand Up @@ -814,7 +802,7 @@ typedef union _TXMAC_ERR_INT_t {
*/
typedef struct _TXMAC_t { /* Location: */
TXMAC_CTL_t ctl; /* 0x3000 */
TXMAC_SHADOW_PTR_t shadow_ptr; /* 0x3004 */
u32 shadow_ptr; /* 0x3004 */
TXMAC_ERR_CNT_t err_cnt; /* 0x3008 */
u32 max_fill; /* 0x300C */
u32 cf_param; /* 0x3010 */
Expand Down

0 comments on commit 140e214

Please sign in to comment.