mbox series

[v3,0/1] media: ovm6211: Adds support for OVM6211

Message ID 20220106160426.2683742-1-petko.manolov@konsulko.com (mailing list archive)
Headers show
Series media: ovm6211: Adds support for OVM6211 | expand

Message

Petko Manolov Jan. 6, 2022, 4:04 p.m. UTC
v3: As usual, not everything is perfect, hence v3.  The patch set is now merged
into one big patch, redundant code was removed and the end result tested on the
board.  DT bindings are coming some time later.

v2: Removes an unused function (ovm6211_set_pix_clk) and this patch series is
now based on media/master; Didn't receive any comments about the RFC version,
thus i assume everything is perfect... :P
                                                                                                                               
                                                       
This patch adds ovm6211 driver into the staging directory.  It also creates
media/i2c entry, where ovm6211.c lives for now, to mimic the generic media
source tree.

Petko Manolov (1):
  media: ovm6211: Adds support for OVM6211

 drivers/media/i2c/Kconfig   |   10 +
 drivers/media/i2c/Makefile  |    1 +
 drivers/media/i2c/ovm6211.c | 1043 +++++++++++++++++++++++++++++++++++
 3 files changed, 1054 insertions(+)
 create mode 100644 drivers/media/i2c/ovm6211.c


base-commit: 68b9bcc8a534cd11fe55f8bc82f948aae7d81b3c

Comments

Petko Manolov Jan. 6, 2022, 4:09 p.m. UTC | #1
On 22-01-06 18:04:25, Petko Manolov wrote:
> v3: As usual, not everything is perfect, hence v3.  The patch set is now merged
> into one big patch, redundant code was removed and the end result tested on the
> board.  DT bindings are coming some time later.
> 
> v2: Removes an unused function (ovm6211_set_pix_clk) and this patch series is
> now based on media/master; Didn't receive any comments about the RFC version,
> thus i assume everything is perfect... :P
>                                                                                                                                
>                                                        
> This patch adds ovm6211 driver into the staging directory.  It also creates
> media/i2c entry, where ovm6211.c lives for now, to mimic the generic media
> source tree.
> 
> Petko Manolov (1):
>   media: ovm6211: Adds support for OVM6211
> 
>  drivers/media/i2c/Kconfig   |   10 +
>  drivers/media/i2c/Makefile  |    1 +
>  drivers/media/i2c/ovm6211.c | 1043 +++++++++++++++++++++++++++++++++++
>  3 files changed, 1054 insertions(+)
>  create mode 100644 drivers/media/i2c/ovm6211.c

This is a lot cleaner version than before.  I've removed the xclk related code
and header files, removed dead code, etc.  Overall, things are looking a bit
better.  I'll send the DT bindings in a different email, perhaps tomorrow.


cheers,
Petko