init: properly placing noinline keyword
authorRakib Mullick <rakib.mullick@gmail.com>
Tue, 6 Jan 2009 22:40:38 +0000 (14:40 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Tue, 6 Jan 2009 23:59:10 +0000 (15:59 -0800)
commitf99ebf0a86de13f77bc4ee349de96db9f2f67f2e
tree1f286cd9cd4d69638b4b3cc5d2ed48a6e566ce98
parent91f47662dfaa5b459aebe13284c6c38db27350dc
init: properly placing noinline keyword

checkpatch warns about 'static void noinline'.  It wants `static noinline
void'.

Both are permissible, but the kernel consistently uses `static inline' and
`static noinline', and consistency is good.  Hence let's keep the
checkpatch warning and fix up this code site.

[akpm@linux-foundation.org: rewrote changelog]
Signed-off-by: Md.Rakib H. Mullick <rakib.mullick@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
init/main.c