Patch by Hinko Kocevar, 21 Aug 2004:

Add calc_fbsize() function used with VIDEOLFB_TAG on TRAB
This commit is contained in:
wdenk 2004-10-09 23:28:40 +00:00
parent 8655b6f860
commit f325e18beb
2 changed files with 12 additions and 0 deletions

View File

@ -2,6 +2,9 @@
Changes since U-Boot 1.1.1:
======================================================================
* Patch by Hinko Kocevar, 21 Aug 2004:
Add calc_fbsize() function used with VIDEOLFB_TAG on TRAB
* Clean up tools/bmp_logo.c to not add trailing white space
* Patch by Hinko Kocevar, 21 Aug 2004:

View File

@ -559,4 +559,13 @@ ulong vfd_setmem (ulong addr)
return (size);
}
/*
* Calculate fb size for VIDEOLFB_ATAG. Size returned contains fb,
* descriptors and palette areas.
*/
ulong calc_fbsize (void)
{
return FRAME_BUF_SIZE;
}
#endif /* CONFIG_VFD */