summaryrefslogtreecommitdiff
path: root/lib_arm
diff options
context:
space:
mode:
authorLily Zhang <r58066@freescale.com>2012-03-09 21:16:51 +0800
committerJustin Waters <justin.waters@timesys.com>2012-09-05 14:58:06 -0400
commit41a96ec1477bb8af4fdbe4f339658934305a175e (patch)
treeebbcf9c2184647761e6709ac630718ce9a032a44 /lib_arm
parente4e65157820822ef55e9321a4fec5d328b94d9bf (diff)
ENGR00176347-7 bootm: remove build warning
Remove the following build warning: bootm.c: In function 'do_booti_linux': bootm.c:147: warning: pointer targets in assignment differ in signedness Signed-off-by: Lily Zhang <r58066@freescale.com>
Diffstat (limited to 'lib_arm')
-rw-r--r--lib_arm/bootm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib_arm/bootm.c b/lib_arm/bootm.c
index f301edbe72..5da34251b8 100644
--- a/lib_arm/bootm.c
+++ b/lib_arm/bootm.c
@@ -144,7 +144,7 @@ void do_booti_linux (boot_img_hdr *hdr)
/* If no bootargs env, just use hdr command line */
if (!commandline)
- commandline = hdr->cmdline;
+ commandline = (char *)hdr->cmdline;
/* XXX: in production, you should always use boot.img 's cmdline !!! */