From: Olaf Hering <olh@suse.de>

fix a comment about the array size.

Signed-off-by: Olaf Hering <olh@suse.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
---

 arch/ppc/boot/openfirmware/chrpmain.c |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

diff -puN arch/ppc/boot/openfirmware/chrpmain.c~update-comment-about-gzip-scratch-size arch/ppc/boot/openfirmware/chrpmain.c
--- 25/arch/ppc/boot/openfirmware/chrpmain.c~update-comment-about-gzip-scratch-size	Fri May 27 14:50:06 2005
+++ 25-akpm/arch/ppc/boot/openfirmware/chrpmain.c	Fri May 27 14:50:06 2005
@@ -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);
 
_