Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 224440
b: refs/heads/master
c: 30dfe2c
h: refs/heads/master
v: v3
  • Loading branch information
David S. Miller committed Nov 18, 2010
1 parent 030dec5 commit 51798f9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 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: 57e1ab6eaddc9f2c358cd4afb497cda6e3c6821a
refs/heads/master: 30dfe2c05037fbc021121c037872c09956938c2f
2 changes: 1 addition & 1 deletion trunk/drivers/atm/fore200e.c
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@

#define FORE200E_INDEX(virt_addr, type, index) (&((type *)(virt_addr))[ index ])

#define FORE200E_NEXT_ENTRY(index, modulo) (index = ++(index) % (modulo))
#define FORE200E_NEXT_ENTRY(index, modulo) (index = ((index) + 1) % (modulo))

#if 1
#define ASSERT(expr) if (!(expr)) { \
Expand Down

0 comments on commit 51798f9

Please sign in to comment.