aboutsummaryrefslogtreecommitdiffstats
path: root/arch/ppc/boot/openfirmware/chrpmain.c
diff options
context:
space:
mode:
authorOlaf Hering <olh@suse.de>2005-06-25 14:59:21 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-06-25 16:25:07 -0700
commitf14c6fd0fc9fbaf242254c84ba2632decb25e91a (patch)
tree6f4c2e27291edd7926636ef932ac79816a6d4084 /arch/ppc/boot/openfirmware/chrpmain.c
parent[PATCH] ll_merge_requests_fn() cleanup (diff)
downloadlinux-dev-f14c6fd0fc9fbaf242254c84ba2632decb25e91a.tar.xz
linux-dev-f14c6fd0fc9fbaf242254c84ba2632decb25e91a.zip
[PATCH] update comment about gzip scratch size
fix a comment about the array size. Signed-off-by: Olaf Hering <olh@suse.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to '')
-rw-r--r--arch/ppc/boot/openfirmware/chrpmain.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/ppc/boot/openfirmware/chrpmain.c b/arch/ppc/boot/openfirmware/chrpmain.c
index 6fb4f738728c..effe4a0624b0 100644
--- a/arch/ppc/boot/openfirmware/chrpmain.c
+++ b/arch/ppc/boot/openfirmware/chrpmain.c
@@ -39,7 +39,7 @@ char *avail_high;
#define SCRATCH_SIZE (128 << 10)
-static char scratch[SCRATCH_SIZE]; /* 1MB of scratch space for gunzip */
+static char scratch[SCRATCH_SIZE]; /* 128k of scratch space for gunzip */
typedef void (*kernel_start_t)(int, int, void *, unsigned int, unsigned int);