Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 325204
b: refs/heads/master
c: e3845b3
h: refs/heads/master
v: v3
  • Loading branch information
Daniel Cotey authored and Greg Kroah-Hartman committed Sep 11, 2012
1 parent 5f01650 commit 587a0d4
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 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: b67cd424600dd42527a3eeb21a148a10683d2491
refs/heads/master: e3845b34e8bcda7a420af582f4a3f3986c35e709
21 changes: 11 additions & 10 deletions trunk/drivers/staging/silicom/bp_mod.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,17 @@

#define usec_delay(x) udelay(x)
#ifndef msec_delay_bp
#define msec_delay_bp(x) do { \
int i; \
if(1) { \
for(i = 0; i < 1000; i++) \
{ \
udelay(x) ; \
} \
} else { \
msleep(x); \
} } while(0)
#define msec_delay_bp(x) \
do { \
int i; \
if (1) { \
for (i = 0; i < 1000; i++) { \
udelay(x) ; \
} \
} else { \
msleep(x); \
} \
} while (0)

#endif

Expand Down

0 comments on commit 587a0d4

Please sign in to comment.