diff options
author | Andreas Färber <andreas.faerber@web.de> | 2010-11-07 18:08:41 +0000 |
---|---|---|
committer | Andreas Färber <afaerber@suse.de> | 2010-11-07 18:08:41 +0000 |
commit | 54c0ea8a54f2099b52b9f6eeee92264676a9ce3d (patch) | |
tree | dca05a2cce20f5797ff5150682ad6426c3ce3764 | |
parent | 652ebc448fa7bad10ee0153a6c48bfdfda7001f4 (diff) | |
download | openbios-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.c | 2 |
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) ); |