From 0a8028cefcb96015af970b11acf62fa2f274b21e Mon Sep 17 00:00:00 2001 From: Laurent Vivier Date: Sat, 10 Jan 2009 23:47:37 +0000 Subject: [PATCH] Correct comment about dictionnary size (512K) git-svn-id: svn://coreboot.org/openbios/openbios-devel@383 f158a5a8-5612-0410-a976-696ce0be7e32 --- arch/ppc/kernel.c | 2 +- arch/ppc/qemu/kernel.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/ppc/kernel.c b/arch/ppc/kernel.c index e3473d1..d4dbe82 100644 --- a/arch/ppc/kernel.c +++ b/arch/ppc/kernel.c @@ -26,7 +26,7 @@ #include "kernel.h" #define MEMORY_SIZE (256*1024) /* 256K ram for hosted system */ -#define DICTIONARY_SIZE (512*1024) /* 128K for the dictionary */ +#define DICTIONARY_SIZE (512*1024) /* 512K for the dictionary */ static ucell *memory; diff --git a/arch/ppc/qemu/kernel.c b/arch/ppc/qemu/kernel.c index 0eece95..d81c1f4 100644 --- a/arch/ppc/qemu/kernel.c +++ b/arch/ppc/qemu/kernel.c @@ -27,7 +27,7 @@ #include "kernel.h" #define MEMORY_SIZE (256*1024) /* 256K ram for hosted system */ -#define DICTIONARY_SIZE (512*1024) /* 128K for the dictionary */ +#define DICTIONARY_SIZE (512*1024) /* 512K for the dictionary */ static ucell *memory;