summaryrefslogtreecommitdiff
path: root/include/linux
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.masahiro@socionext.com>2017-06-13 06:17:28 (GMT)
committerTom Rini <trini@konsulko.com>2017-06-16 14:11:38 (GMT)
commit51855e8981e1b5e0a7b919662c32d0e4a374f575 (patch)
tree762738b85b584532488494177b725e284b82cb6e /include/linux
parentf9e4afcd162301b3e32a9cceb9283005a8638bd1 (diff)
downloadu-boot-51855e8981e1b5e0a7b919662c32d0e4a374f575.tar.xz
treewide: remove unneeded semicolons
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/compat.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/compat.h b/include/linux/compat.h
index 03f9bef..2336b56 100644
--- a/include/linux/compat.h
+++ b/include/linux/compat.h
@@ -109,7 +109,7 @@ static inline void kmem_cache_destroy(struct kmem_cache *cachep)
#define WARN_ON(condition) ({ \
int __ret_warn_on = !!(condition); \
if (unlikely(__ret_warn_on)) \
- printf("WARNING in %s line %d\n", __FILE__, __LINE__);; \
+ printf("WARNING in %s line %d\n", __FILE__, __LINE__); \
unlikely(__ret_warn_on); \
})