Re: [PATCH V5 08/13] cmd: bmp: Split bmp commands and functions

2023-04-03 Thread Devarsh Thakkar
On 03/04/23 13:44, Nikhil M Jain wrote: > To enable splash screen at spl, need to compile cmd/bmp.c which also s/spl/SPL > includes bmp commands, since SPL can't have commands split bmp.c into since SPL doesn't use bmp commands, split cmd/bmp.c into ... > common/bmp.c which includes all bmp f

[PATCH V5 08/13] cmd: bmp: Split bmp commands and functions

2023-04-03 Thread Nikhil M Jain
To enable splash screen at spl, need to compile cmd/bmp.c which also includes bmp commands, since SPL can't have commands split bmp.c into common/bmp.c which includes all bmp functions and cmd/bmp.c contains bmp commands. Add delclaration for bmp_info in video.h. Signed-off-by: Nikhil M Jain ---