diff options
author | Lily Zhang <r58066@freescale.com> | 2012-03-02 19:15:19 +0800 |
---|---|---|
committer | Lily Zhang <r58066@freescale.com> | 2012-03-02 19:15:19 +0800 |
commit | 3b6fe9f99af0e411b0fc891848f79147d761b475 (patch) | |
tree | e35c9a8c5d780bc44a9c174f65f8fb0825017abe /include/configs | |
parent | 2706397c1c0da569ee74dbb3d16189ef7702e471 (diff) | |
download | u-boot-imx-3b6fe9f99af0e411b0fc891848f79147d761b475.zip u-boot-imx-3b6fe9f99af0e411b0fc891848f79147d761b475.tar.gz u-boot-imx-3b6fe9f99af0e411b0fc891848f79147d761b475.tar.bz2 |
ENGR00175981-2 mx53 smd android: fix build error
Fix the following build error when building mx53_smd_android
config:
mx53_smd_android.h:175: error: expected identifier or xx
before string constant
Signed-off-by: Lily Zhang <r58066@freescale.com>
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/mx53_smd_android.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/mx53_smd_android.h b/include/configs/mx53_smd_android.h index 61bac34..0101169 100644 --- a/include/configs/mx53_smd_android.h +++ b/include/configs/mx53_smd_android.h @@ -171,7 +171,7 @@ "rd_loadaddr=0x70D00000\0" \ "bootargs=console=ttymxc0 init=/init " \ "androidboot.console=ttymxc0 video=mxcdi1fb:RGB666,XGA " \ - "ldb=di1 di1_primary pmem=32M,64M fbmem=5M gpu_memory=64M\0" + "ldb=di1 di1_primary pmem=32M,64M fbmem=5M gpu_memory=64M\0" \ "bootcmd_SD=mmc dev 1 0;" \ "mmc read ${loadaddr} 0x800 0x2000;" \ "mmc read ${rd_loadaddr} 0x3000 0x300\0" \ |