aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Färber <andreas.faerber@web.de>2010-11-07 18:08:41 +0000
committerAndreas Färber <afaerber@suse.de>2010-11-07 18:08:41 +0000
commit54c0ea8a54f2099b52b9f6eeee92264676a9ce3d (patch)
treedca05a2cce20f5797ff5150682ad6426c3ce3764
parent652ebc448fa7bad10ee0153a6c48bfdfda7001f4 (diff)
downloadopenbios-54c0ea8a54f2099b52b9f6eeee92264676a9ce3d.zip
openbios-54c0ea8a54f2099b52b9f6eeee92264676a9ce3d.tar.gz
openbios-54c0ea8a54f2099b52b9f6eeee92264676a9ce3d.tar.bz2
ppc: Fix indentation
Tab-indent to match surrounding code. Signed-off-by: Andreas Färber <andreas.faerber@web.de> git-svn-id: svn://coreboot.org/openbios/trunk/openbios-devel@948 f158a5a8-5612-0410-a976-696ce0be7e32
-rw-r--r--arch/ppc/qemu/ofmem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/ppc/qemu/ofmem.c b/arch/ppc/qemu/ofmem.c
index a507009..fd417c2 100644
--- a/arch/ppc/qemu/ofmem.c
+++ b/arch/ppc/qemu/ofmem.c
@@ -395,7 +395,7 @@ setup_mmu( unsigned long ramsize )
/* SDR1: Storage Description Register 1 */
hash_base = (ramsize - 0x00100000 - HASH_SIZE) & hash_mask;
- memset((void *)hash_base, 0, HASH_SIZE);
+ memset((void *)hash_base, 0, HASH_SIZE);
sdr1 = hash_base | ((HASH_SIZE-1) >> 16);
asm volatile("mtsdr1 %0" :: "r" (sdr1) );