Hi Mauro, Here's the regular set of sensor driver patches. This time is noteworthy, because there's nothing else. New drivers for mt9m001 (converted from SoC camera; the corresponding old SoC camera driver to be removed after this set) and ov8856 are included. Please pull. The following changes since commit 337e90ed028643c7acdfd0d31e3224d05ca03d66: media: imx-csi: Input connections to CSI should be optional (2019-01-21 16:46:02 -0200) are available in the git repository at: ssh://linuxtv.org/git/sailus/media_tree.git tags/for-5.1-2-sign for you to fetch changes up to 72a16f66761793d9d7bb5b55b68cb99562f7c229: media: ov2640: fix initial try format (2019-01-22 18:29:16 +0200) ---------------------------------------------------------------- More sensor patches for 5.1 ---------------------------------------------------------------- Akinobu Mita (17): media: i2c: mt9m001: copy mt9m001 soc_camera sensor driver media: i2c: mt9m001: dt: add binding for mt9m001 media: mt9m001: convert to SPDX license identifer media: mt9m001: sort headers alphabetically media: mt9m001: add of_match_table media: mt9m001: introduce multi_reg_write() media: mt9m001: switch s_power callback to runtime PM media: mt9m001: remove remaining soc_camera specific code media: mt9m001: add media controller support media: mt9m001: register to V4L2 asynchronous subdevice framework media: mt9m001: support log_status ioctl and event interface media: mt9m001: make VIDIOC_SUBDEV_G_FMT ioctl work with V4L2_SUBDEV_FORMAT_TRY media: mt9m001: set all mbus format field when G_FMT and S_FMT ioctls media: mt9m111: make VIDIOC_SUBDEV_G_FMT ioctl work with V4L2_SUBDEV_FORMAT_TRY media: mt9m111: set all mbus format field when G_FMT and S_FMT ioctls media: mt9m111: set initial frame size other than 0x0 media: ov2640: fix initial try format Ben Kao (2): media: ov8856: Add support for OV8856 sensor media: ov8856: Modify ov8856 register reading function to be simplified Dan Carpenter (1): media: s5k4ecgx: delete a bogus error message Lubomir Rintel (4): media: ov7670: split register setting from set_fmt() logic media: ov7670: split register setting from set_framerate() logic media: ov7670: hook s_power onto v4l2 core media: ov7670: control clock along with power Luca Ceresoli (1): media: imx274: remote unused function imx274_read_reg Sakari Ailus (1): ov7670: Remove useless use of a ret variable .../devicetree/bindings/media/i2c/mt9m001.txt | 38 + MAINTAINERS | 7 + drivers/media/i2c/Kconfig | 20 + drivers/media/i2c/Makefile | 2 + drivers/media/i2c/imx274.c | 18 - drivers/media/i2c/mt9m001.c | 884 ++++++++++++++ drivers/media/i2c/mt9m111.c | 39 + drivers/media/i2c/ov2640.c | 10 +- drivers/media/i2c/ov7670.c | 187 +-- drivers/media/i2c/ov8856.c | 1268 ++++++++++++++++++++ drivers/media/i2c/s5k4ecgx.c | 2 - 11 files changed, 2380 insertions(+), 95 deletions(-) create mode 100644 Documentation/devicetree/bindings/media/i2c/mt9m001.txt create mode 100644 drivers/media/i2c/mt9m001.c create mode 100644 drivers/media/i2c/ov8856.c -- Sakari Ailus