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

2023-04-06 Thread Nikhil M Jain
On 06/04/23 13:11, Vignesh Raghavendra wrote: Hi Nikhil, On 06/04/23 11:57, Nikhil M Jain wrote: +struct bmp_image *gunzip_bmp(unsigned long addr, unsigned long *lenp, +    void **alloc_addr) +{ +   void *dst; +   unsigned long len; +   struct bmp_image

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

2023-04-06 Thread Vignesh Raghavendra
Hi Nikhil, On 06/04/23 11:57, Nikhil M Jain wrote: >>> +struct bmp_image *gunzip_bmp(unsigned long addr, unsigned long *lenp, >>> +    void **alloc_addr) >>> +{ >>> +   void *dst; >>> +   unsigned long len; >>> +   struct bmp_image *bmp; >>> + >> >> if

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

2023-04-06 Thread Nikhil M Jain
Hi Simon, On 06/04/23 00:07, Simon Glass wrote: On Wed, 5 Apr 2023 at 01:06, Nikhil M Jain wrote: To enable splash screen at SPL, need to compile cmd/bmp.c which also includes bmp commands, since SPL doesn't use commands split bmp.c into common/bmp.c which includes all bmp functions and

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

2023-04-05 Thread Simon Glass
On Wed, 5 Apr 2023 at 01:06, Nikhil M Jain wrote: > > To enable splash screen at SPL, need to compile cmd/bmp.c which also > includes bmp commands, since SPL doesn't use commands split bmp.c into > common/bmp.c which includes all bmp functions and cmd/bmp.c which only > contains bmp commands. > >

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

2023-04-04 Thread Nikhil M Jain
To enable splash screen at SPL, need to compile cmd/bmp.c which also includes bmp commands, since SPL doesn't use commands split bmp.c into common/bmp.c which includes all bmp functions and cmd/bmp.c which only contains bmp commands. Add function delclaration for bmp_info in video.h.