Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 39972
b: refs/heads/master
c: 8c7c7c9
h: refs/heads/master
v: v3
  • Loading branch information
Ralf Baechle authored and Linus Torvalds committed Oct 20, 2006
1 parent 0a9adad commit ff963ce
Show file tree
Hide file tree
Showing 2 changed files with 5 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: a31baca58cc16fe0584685f54c6d17494a231c92
refs/heads/master: 8c7c7c9bf39470c9689ad43cae3142cf948f4cfb
5 changes: 4 additions & 1 deletion trunk/include/asm-generic/bug.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,10 @@
#endif

#ifndef HAVE_ARCH_WARN_ON
#define WARN_ON(condition) unlikely((condition))
#define WARN_ON(condition) ({ \
typeof(condition) __ret_warn_on = (condition); \
unlikely(__ret_warn_on); \
})
#endif
#endif

Expand Down

0 comments on commit ff963ce

Please sign in to comment.