Re: [PATCH 21/21] fs: Move prototype declaration to appropriate header file

2014-02-11 Thread Andrew Morton
On Sun, 9 Feb 2014 19:03:54 +0530 Rashika Kheria wrote: > Move prototype declaration to header file include/linux/crash_dump.h It adds a prototype rather than moving it. > because it is used by more than file. True, but you didn't notice the second user ;) > --- a/include/linux/crash_dump.h

[PATCH 21/21] fs: Move prototype declaration to appropriate header file

2014-02-09 Thread Rashika Kheria
Move prototype declaration to header file include/linux/crash_dump.h because it is used by more than file. This eliminates the following warning in proc/vmcore.c: fs/proc/vmcore.c:1088:6: warning: no previous prototype for ‘vmcore_cleanup’ [-Wmissing-prototypes] Signed-off-by: Rashika Kheria Re