diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2014-06-29 14:21:36 +0400 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2014-08-26 11:35:57 +0400 |
commit | c614f13a9680a483f3558e20dc5fa350700f83fb (patch) | |
tree | 4083eaf9958664703e2ea012aa81f7dfe22896c9 /arch/powerpc/boot | |
parent | 336ec137340daa62e9d61bce09d635b603aa4f2a (diff) | |
download | linux-c614f13a9680a483f3558e20dc5fa350700f83fb.tar.xz |
powerpc/simpleboot: fix comment
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: linuxppc-dev@lists.ozlabs.org
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'arch/powerpc/boot')
-rw-r--r-- | arch/powerpc/boot/simpleboot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/boot/simpleboot.c b/arch/powerpc/boot/simpleboot.c index 21cd48074ec8..9f8c678f0d9a 100644 --- a/arch/powerpc/boot/simpleboot.c +++ b/arch/powerpc/boot/simpleboot.c @@ -61,7 +61,7 @@ void platform_init(unsigned long r3, unsigned long r4, unsigned long r5, if (*reg++ != 0) fatal("Memory range is not based at address 0\n"); - /* get the memsize and trucate it to under 4G on 32 bit machines */ + /* get the memsize and truncate it to under 4G on 32 bit machines */ memsize64 = 0; for (i = 0; i < *ns; i++) memsize64 = (memsize64 << 32) | *reg++; |