From 380f978e45d3af59e5f0c8f20d11e2e4c9def340 Mon Sep 17 00:00:00 2001 From: Mark Cave-Ayland Date: Sun, 17 Oct 2010 09:13:14 +0000 Subject: [PATCH] Fix comment typo from r896 as pointed out by Andreas. Signed-off-by: Mark Cave-Ayland git-svn-id: svn://coreboot.org/openbios/trunk/openbios-devel@913 f158a5a8-5612-0410-a976-696ce0be7e32 --- libopenbios/ofmem_common.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libopenbios/ofmem_common.c b/libopenbios/ofmem_common.c index af87c60..ceacbb6 100644 --- a/libopenbios/ofmem_common.c +++ b/libopenbios/ofmem_common.c @@ -211,7 +211,7 @@ static void ofmem_update_mmu_translations( void ) if (prop_used > trans_prop_size) { - /* The property doesn't fix within the existing space, so keep doubling it + /* The property doesn't fit within the existing space, so keep doubling it until it does */ prop_size = trans_prop_size; while (prop_size < prop_used) { @@ -262,7 +262,7 @@ static void ofmem_update_memory_available( phandle_t ph, range_t *range, if (prop_used > *mem_prop_size) { - /* The property doesn't fix within the existing space, so keep doubling it + /* The property doesn't fit within the existing space, so keep doubling it until it does */ prop_size = *mem_prop_size; while (prop_size < prop_used) {