Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 75578
b: refs/heads/master
c: c15561f
h: refs/heads/master
v: v3
  • Loading branch information
Al Viro authored and Jeff Garzik committed Jan 18, 2008
1 parent d028c6e commit 7261e15
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 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: 44b1e77a0275975f3bd8bdeba6c5524105216d6d
refs/heads/master: c15561f0e5615607e2b5524c4b3af64d20cd6e28
12 changes: 9 additions & 3 deletions trunk/drivers/net/wan/sbni.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,15 @@ enum {
#define PR_RES 0x80

struct sbni_csr1 {
unsigned rxl : 5;
unsigned rate : 2;
unsigned : 1;
#ifdef __LITTLE_ENDIAN_BITFIELD
u8 rxl : 5;
u8 rate : 2;
u8 : 1;
#else
u8 : 1;
u8 rate : 2;
u8 rxl : 5;
#endif
};

/* fields in frame header */
Expand Down

0 comments on commit 7261e15

Please sign in to comment.