On Wed, May 04, 2022 at 11:30:27PM +0100, Daniel Scally wrote: > Add a vblank control to the ov7251 driver. > +static int ov7251_vts_configure(struct ov7251 *ov7251, s32 vblank) > +{ > + u8 vts[2]; > + > + vts[0] = ((ov7251->current_mode->height + vblank) & 0xff00) >> 8; > + vts[1] = ((ov7251->current_mode->height + vblank) & 0x00ff); __be16 vts; cpu_to_be16(); > + return ov7251_write_seq_regs(ov7251, OV7251_TIMING_VTS_REG, vts, 2); > +} -- With Best Regards, Andy Shevchenko