Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 63530
b: refs/heads/master
c: fd0cbdd
h: refs/heads/master
v: v3
  • Loading branch information
Heiko Carstens authored and Linus Torvalds committed Aug 2, 2007
1 parent 6c3040d commit 6c2c504
Show file tree
Hide file tree
Showing 5 changed files with 5 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: 8d4fbcfbe0a4bfc73e7f0297c59ae514e1f1436f
refs/heads/master: fd0cbdd378258fdf44eac5ea091256a4a665315b
2 changes: 1 addition & 1 deletion trunk/include/asm-avr32/bug.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@

#define WARN_ON(condition) \
({ \
typeof(condition) __ret_warn_on = (condition); \
int __ret_warn_on = !!(condition); \
if (unlikely(__ret_warn_on)) \
_BUG_OR_WARN(BUGFLAG_WARNING); \
unlikely(__ret_warn_on); \
Expand Down
2 changes: 1 addition & 1 deletion trunk/include/asm-parisc/bug.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@


#define WARN_ON(x) ({ \
typeof(x) __ret_warn_on = (x); \
int __ret_warn_on = !!(x); \
if (__builtin_constant_p(__ret_warn_on)) { \
if (__ret_warn_on) \
__WARN(); \
Expand Down
2 changes: 1 addition & 1 deletion trunk/include/asm-s390/bug.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
#define BUG() __EMIT_BUG(0)

#define WARN_ON(x) ({ \
typeof(x) __ret_warn_on = (x); \
int __ret_warn_on = !!(x); \
if (__builtin_constant_p(__ret_warn_on)) { \
if (__ret_warn_on) \
__EMIT_BUG(BUGFLAG_WARNING); \
Expand Down
2 changes: 1 addition & 1 deletion trunk/include/asm-sh/bug.h
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ do { \
} while (0)

#define WARN_ON(x) ({ \
typeof(x) __ret_warn_on = (x); \
int __ret_warn_on = !!(x); \
if (__builtin_constant_p(__ret_warn_on)) { \
if (__ret_warn_on) \
__WARN(); \
Expand Down

0 comments on commit 6c2c504

Please sign in to comment.