mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-20 21:51:05 +00:00
[PATCH] kexec code cleanup
o Following patch provides purely cosmetic changes and corrects CodingStyle guide lines related certain issues like below in kexec related files o braces for one line "if" statements, "for" loops, o more than 80 column wide lines, o No space after "while", "for" and "switch" key words o Changes: o take-2: Removed the extra tab before "case" key words. o take-3: Put operator at the end of line and space before "*/" Signed-off-by: Maneesh Soni <maneesh@in.ibm.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
4f339ecb30
commit
72414d3f1d
10 changed files with 243 additions and 211 deletions
|
@ -159,9 +159,9 @@ asmlinkage long sys_shutdown(int, int);
|
|||
asmlinkage long sys_reboot(int magic1, int magic2, unsigned int cmd,
|
||||
void __user *arg);
|
||||
asmlinkage long sys_restart_syscall(void);
|
||||
asmlinkage long sys_kexec_load(unsigned long entry,
|
||||
unsigned long nr_segments, struct kexec_segment __user *segments,
|
||||
unsigned long flags);
|
||||
asmlinkage long sys_kexec_load(unsigned long entry, unsigned long nr_segments,
|
||||
struct kexec_segment __user *segments,
|
||||
unsigned long flags);
|
||||
|
||||
asmlinkage long sys_exit(int error_code);
|
||||
asmlinkage void sys_exit_group(int error_code);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue