diff options
Diffstat (limited to 'arch/ppc64/boot')
-rw-r--r-- | arch/ppc64/boot/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/ppc64/boot/main.c b/arch/ppc64/boot/main.c index c2c1f3309113..3304ed34c44b 100644 --- a/arch/ppc64/boot/main.c +++ b/arch/ppc64/boot/main.c | |||
@@ -38,9 +38,9 @@ struct addr_range { | |||
38 | unsigned long size; | 38 | unsigned long size; |
39 | unsigned long memsize; | 39 | unsigned long memsize; |
40 | }; | 40 | }; |
41 | static struct addr_range vmlinux = {0, 0, 0}; | 41 | static struct addr_range vmlinux; |
42 | static struct addr_range vmlinuz = {0, 0, 0}; | 42 | static struct addr_range vmlinuz; |
43 | static struct addr_range initrd = {0, 0, 0}; | 43 | static struct addr_range initrd; |
44 | 44 | ||
45 | static char scratch[46912]; /* scratch space for gunzip, from zlib_inflate_workspacesize() */ | 45 | static char scratch[46912]; /* scratch space for gunzip, from zlib_inflate_workspacesize() */ |
46 | static char elfheader[256]; | 46 | static char elfheader[256]; |