From: Wolfgang Denk Date: Sat, 16 May 2009 08:47:40 +0000 (+0200) Subject: cpu/mpc512x/diu.c: fix warning: assignment from incompatible pointer type X-Git-Tag: v2009.08-rc1~153^2~48 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=debf87415579c0f50aab9e0832976d4506babe0f;p=u-boot cpu/mpc512x/diu.c: fix warning: assignment from incompatible pointer type Signed-off-by: Wolfgang Denk Cc: John Rigby --- diff --git a/cpu/mpc512x/diu.c b/cpu/mpc512x/diu.c index 6d7e40f0b7..70849ee21b 100644 --- a/cpu/mpc512x/diu.c +++ b/cpu/mpc512x/diu.c @@ -95,7 +95,7 @@ int mpc5121_diu_init(void) bmp = valid_bmp(bmp_env); } if (!bmp) - bmp = FSL_Logo_BMP; + bmp = (char *)FSL_Logo_BMP; return fsl_diu_init(xres, pixel_format, 0, (unsigned char *)bmp); }