aboutsummaryrefslogtreecommitdiff
path: root/lib_sh
diff options
context:
space:
mode:
authorWolfgang Denk <wd@denx.de>2008-03-26 11:48:46 +0100
committerWolfgang Denk <wd@denx.de>2008-03-26 11:48:46 +0100
commit438a4c11260b4ea9805039b0b4f92f9df5306b02 (patch)
tree129249d52bde5db280441f76f4141a9214f558d0 /lib_sh
parentb951f8d31711f3f10ad119ddcf5a3d0afe14d561 (diff)
Cleanup coding style, update CHANGELOG
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'lib_sh')
-rw-r--r--lib_sh/bootm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib_sh/bootm.c b/lib_sh/bootm.c
index 49462c845..3d5c3bbc9 100644
--- a/lib_sh/bootm.c
+++ b/lib_sh/bootm.c
@@ -30,7 +30,7 @@
* arch/sh/kernel/setup.c and may require tweaking if the kernel sources
* change.
*/
-#define PARAM ((unsigned char *)CFG_SDRAM_BASE + 0x1000)
+#define PARAM ((unsigned char *)CFG_SDRAM_BASE + 0x1000)
#define MOUNT_ROOT_RDONLY (*(unsigned long *) (PARAM+0x000))
#define RAMDISK_FLAGS (*(unsigned long *) (PARAM+0x004))
@@ -41,7 +41,7 @@
/* ... */
#define COMMAND_LINE ((char *) (PARAM+0x100))
-#define RAMDISK_IMAGE_START_MASK 0x07FF
+#define RAMDISK_IMAGE_START_MASK 0x07FF
extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
@@ -60,7 +60,7 @@ static void hexdump (unsigned char *buf, int len)
#endif
void do_bootm_linux (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
- bootm_headers_t *images)
+ bootm_headers_t *images)
{
ulong ep = 0;
char *bootargs = getenv("bootargs");