mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-27 23:21:01 +00:00
cpu/mpc512x/diu.c: fix warning: assignment from incompatible pointer type
Signed-off-by: Wolfgang Denk <wd@denx.de> Cc: John Rigby <jcrigby@gmail.com>
This commit is contained in:
parent
8b25126319
commit
debf874155
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue