https://github.com/torvalds/linux
Revision 7e99e9b66336565f0088ea59d848ab187f9689c3 authored by Eric Sesterhenn on 02 April 2006, 11:50:14 UTC, committed by Adrian Bunk on 02 April 2006, 11:50:14 UTC
this changes if() BUG(); constructs to BUG_ON() which is
cleaner, contains unlikely() and can better optimized away.

Signed-off-by: Eric Sesterhenn <snakebyte@gmx.de>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
1 parent 40094fa
Raw File
Tip revision: 7e99e9b66336565f0088ea59d848ab187f9689c3 authored by Eric Sesterhenn on 02 April 2006, 11:50:14 UTC
BUG_ON() Conversion in drivers/s390/net/lcs.c
Tip revision: 7e99e9b
.gitignore
#
# NOTE! Don't add files that are generated in specific
# subdirectories here. Add them in the ".gitignore" file
# in that subdirectory instead.
#
# Normal rules
#
.*
*.o
*.a
*.s
*.ko
*.so
*.mod.c

#
# Top-level generic files
#
tags
vmlinux*
System.map
Module.symvers

#
# Generated include files
#
include/asm
include/asm-*/asm-offsets.h
include/config
include/linux/autoconf.h
include/linux/compile.h
include/linux/version.h

# stgit generated dirs
patches-*
back to top