x86: unify whitespace and comments in arch/x86/boot/compressed/misc_??.c
size reports no change in arch/x86/boot/compressed/vmlinux. Signed-off-by: Ian Campbell <ijc@hellion.org.uk> Cc: H. Peter Anvin <hpa@zytor.com> Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
This commit is contained in:
parent
6b3c0426a7
commit
818a08f8a5
|
@ -9,6 +9,11 @@
|
||||||
* High loaded stuff by Hans Lermen & Werner Almesberger, Feb. 1996
|
* High loaded stuff by Hans Lermen & Werner Almesberger, Feb. 1996
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* we have to be careful, because no indirections are allowed here, and
|
||||||
|
* paravirt_ops is a kind of one. As it will only run in baremetal anyway,
|
||||||
|
* we just keep it from happening
|
||||||
|
*/
|
||||||
#undef CONFIG_PARAVIRT
|
#undef CONFIG_PARAVIRT
|
||||||
#include <linux/linkage.h>
|
#include <linux/linkage.h>
|
||||||
#include <linux/vmalloc.h>
|
#include <linux/vmalloc.h>
|
||||||
|
@ -345,7 +350,8 @@ static void error(char *x)
|
||||||
}
|
}
|
||||||
|
|
||||||
asmlinkage void decompress_kernel(void *rmode, unsigned long end,
|
asmlinkage void decompress_kernel(void *rmode, unsigned long end,
|
||||||
uch *input_data, unsigned long input_len, uch *output)
|
uch *input_data, unsigned long input_len,
|
||||||
|
uch *output)
|
||||||
{
|
{
|
||||||
real_mode = rmode;
|
real_mode = rmode;
|
||||||
|
|
||||||
|
|
|
@ -344,7 +344,8 @@ static void error(char *x)
|
||||||
}
|
}
|
||||||
|
|
||||||
asmlinkage void decompress_kernel(void *rmode, unsigned long heap,
|
asmlinkage void decompress_kernel(void *rmode, unsigned long heap,
|
||||||
uch *input_data, unsigned long input_len, uch *output)
|
uch *input_data, unsigned long input_len,
|
||||||
|
uch *output)
|
||||||
{
|
{
|
||||||
real_mode = rmode;
|
real_mode = rmode;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue