diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2007-03-06 01:35:50 +0300 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2007-03-06 01:35:50 +0300 |
commit | 5ea732fba7cf1ccded5e762f219a892be4d8d8dc (patch) | |
tree | a6761fa427763e357b8d9d4757dc4b4e200e43ef /include | |
parent | 4925c7e22293dbf2b85351e8c2323ad8282396b3 (diff) | |
download | linux-5ea732fba7cf1ccded5e762f219a892be4d8d8dc.tar.xz |
[S390] check_bugs() should be inline.
Don't have functions in header files unless they are inline.
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-s390/bugs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-s390/bugs.h b/include/asm-s390/bugs.h index 2c3659621314..011f1e6a2a6c 100644 --- a/include/asm-s390/bugs.h +++ b/include/asm-s390/bugs.h @@ -16,7 +16,7 @@ * void check_bugs(void); */ -static void __init check_bugs(void) +static inline void check_bugs(void) { /* s390 has no bugs ... */ } |