Re: [PATCH 3/4] video: add MIPI DBI framebuffer helpers

2023-03-30 Thread Philipp Zabel
Hi Ahmad, thank you for the review. On Thu, Mar 30, 2023 at 10:43:54AM +0200, Ahmad Fatoum wrote: > On 29.03.23 12:56, Philipp Zabel wrote: [...] > > +static void mipi_dbi_buf_copy(void *dst, struct fb_info *info, bool swap) > > +{ > > + u16 *src = (u16 *)info->screen_base; > > + u16 *dst16

Re: [PATCH 3/4] video: add MIPI DBI framebuffer helpers

2023-03-30 Thread Ahmad Fatoum
On 29.03.23 12:56, Philipp Zabel wrote: > Port helper functions for the panel-mipi-dbi driver from the Linux > kernel. > > Signed-off-by: Philipp Zabel > --- > drivers/video/mipi_dbi.c | 242 +++ > include/video/mipi_dbi.h | 63 ++ > 2 files changed,

[PATCH 3/4] video: add MIPI DBI framebuffer helpers

2023-03-29 Thread Philipp Zabel
Port helper functions for the panel-mipi-dbi driver from the Linux kernel. Signed-off-by: Philipp Zabel --- drivers/video/mipi_dbi.c | 242 +++ include/video/mipi_dbi.h | 63 ++ 2 files changed, 305 insertions(+) diff --git