diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2007-07-26 17:33:59 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-26 11:11:56 -0700 |
commit | b0a5ab93158586e599ecd0d24a9a72da74d23ddd (patch) | |
tree | 92afca08b90b5cd865bf54410017ed2bf2cdd11e /init | |
parent | ca5c8cde93d65db3139604ca6b91bf8ff3f775e2 (diff) |
initramfs: missing __init
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'init')
-rw-r--r-- | init/initramfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init/initramfs.c b/init/initramfs.c index 00eff7a11085..1db02a0025db 100644 --- a/init/initramfs.c +++ b/init/initramfs.c @@ -133,7 +133,7 @@ static __initdata loff_t this_header, next_header; static __initdata int dry_run; -static inline void eat(unsigned n) +static inline void __init eat(unsigned n) { victim += n; this_header += n; |