From patchwork Wed Jul 25 12:48:17 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sakari Ailus X-Patchwork-Id: 10543987 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 4533C112B for ; Wed, 25 Jul 2018 12:48:21 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 3404029DE0 for ; Wed, 25 Jul 2018 12:48:21 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 2848229DFC; Wed, 25 Jul 2018 12:48:21 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 265BF29DE0 for ; Wed, 25 Jul 2018 12:48:20 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729045AbeGYN7v (ORCPT ); Wed, 25 Jul 2018 09:59:51 -0400 Received: from nblzone-211-213.nblnetworks.fi ([83.145.211.213]:47646 "EHLO hillosipuli.retiisi.org.uk" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1728927AbeGYN7v (ORCPT ); Wed, 25 Jul 2018 09:59:51 -0400 Received: from valkosipuli.localdomain (valkosipuli.retiisi.org.uk [IPv6:2001:1bc8:1a6:d3d5::80:2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by hillosipuli.retiisi.org.uk (Postfix) with ESMTPS id 7ECF0634C7F for ; Wed, 25 Jul 2018 15:48:17 +0300 (EEST) Received: from sakke by valkosipuli.localdomain with local (Exim 4.89) (envelope-from ) id 1fiJDF-0008UX-8G for linux-media@vger.kernel.org; Wed, 25 Jul 2018 15:48:17 +0300 Date: Wed, 25 Jul 2018 15:48:17 +0300 From: Sakari Ailus To: linux-media@vger.kernel.org Subject: [GIT PULL for 4.19] ov2680 driver and dw9807 driver rename Message-ID: <20180725124816.z26t5cvwsjkvlytd@valkosipuli.retiisi.org.uk> MIME-Version: 1.0 Content-Disposition: inline User-Agent: NeoMutt/20170113 (1.7.2) Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Hi Mauro, Here's a driver for the ov2680 sensor and a patch that renamed dw0807 as dw9807-vcm for it's a driver for the VCM bit only. Rename it now to avoid Kconfig option fuss for most people. Please pull. The following changes since commit 8601494e0ec0a7697230b2abca25d786b793341b: media: media-ioc-enum-entities.rst/-g-topology.rst: clarify ID/name usage (2018-07-25 08:05:06 -0400) are available in the git repository at: ssh://linuxtv.org/git/sailus/media_tree.git for-4.19-4 for you to fetch changes up to 070438e314c5f7f8bbb6d7af9bfc4cf20f33a275: dw9807-vcm: Recognise this is just the VCM bit of the device (2018-07-25 15:45:08 +0300) ---------------------------------------------------------------- Rui Miguel Silva (2): media: ov2680: dt: Add bindings for OV2680 media: ov2680: Add Omnivision OV2680 sensor driver Sakari Ailus (1): dw9807-vcm: Recognise this is just the VCM bit of the device .../devicetree/bindings/media/i2c/ov2680.txt | 46 + drivers/media/i2c/Kconfig | 14 +- drivers/media/i2c/Makefile | 3 +- drivers/media/i2c/{dw9807.c => dw9807-vcm.c} | 0 drivers/media/i2c/ov2680.c | 1186 ++++++++++++++++++++ 5 files changed, 1247 insertions(+), 2 deletions(-) create mode 100644 Documentation/devicetree/bindings/media/i2c/ov2680.txt rename drivers/media/i2c/{dw9807.c => dw9807-vcm.c} (100%) create mode 100644 drivers/media/i2c/ov2680.c