From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-2.2 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 2035AC5DF62 for ; Wed, 6 Nov 2019 10:16:02 +0000 (UTC) Received: from lists.ozlabs.org (lists.ozlabs.org [203.11.71.2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 80AA120869 for ; Wed, 6 Nov 2019 10:16:01 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 80AA120869 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=mess.org Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=linuxppc-dev-bounces+linuxppc-dev=archiver.kernel.org@lists.ozlabs.org Received: from bilbo.ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3]) by lists.ozlabs.org (Postfix) with ESMTP id 477Mqy3KX5zF5nY for ; Wed, 6 Nov 2019 21:15:58 +1100 (AEDT) Authentication-Results: lists.ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=mess.org (client-ip=2a02:8011:d000:212::1; helo=gofer.mess.org; envelope-from=sean@mess.org; receiver=) Authentication-Results: lists.ozlabs.org; dmarc=none (p=none dis=none) header.from=mess.org X-Greylist: delayed 381 seconds by postgrey-1.36 at bilbo; Wed, 06 Nov 2019 21:13:36 AEDT Received: from gofer.mess.org (gofer.mess.org [IPv6:2a02:8011:d000:212::1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 477MnD6FbBzF1RP for ; Wed, 6 Nov 2019 21:13:36 +1100 (AEDT) Received: by gofer.mess.org (Postfix, from userid 1000) id 5EF88C635F; Wed, 6 Nov 2019 10:06:55 +0000 (GMT) Date: Wed, 6 Nov 2019 10:06:55 +0000 From: Sean Young To: Wolfram Sang Subject: Re: [RFC PATCH 00/12] i2c: replace i2c_new_probed_device with an ERR_PTR variant Message-ID: <20191106100655.GA2743@gofer.mess.org> References: <20191106095033.25182-1-wsa+renesas@sang-engineering.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20191106095033.25182-1-wsa+renesas@sang-engineering.com> User-Agent: Mutt/1.10.1 (2018-07-13) X-BeenThere: linuxppc-dev@lists.ozlabs.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: linux-fbdev@vger.kernel.org, Wolfram Sang , linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org, linux-i2c@vger.kernel.org, linux-input@vger.kernel.org, linuxppc-dev@lists.ozlabs.org, linux-media@vger.kernel.org Errors-To: linuxppc-dev-bounces+linuxppc-dev=archiver.kernel.org@lists.ozlabs.org Sender: "Linuxppc-dev" On Wed, Nov 06, 2019 at 10:50:18AM +0100, Wolfram Sang wrote: > From: Wolfram Sang > > In the on-going mission to let i2c_new_* calls return an ERR_PTR instead > of NULL, here is a series converting i2c_new_probed_device(). A new > function called i2c_new_scanned_device() is introduced with the new > retval, but for now, a compatibility helper is provided until all users > are converted. The rest of the patches convert all current in-tree > users. > > Note that these patches are RFC because I want feedback on the approach > and hopefully collect acks on the driver conversions. If all goes well, > I'll apply the first two patches for the next merge window. Then, once > this dependency is upstream, I'll resend this series with all issues > fixed and acks collected. The patches to drivers/media/pci/* are all IR related which have touched on/read over the years. So, for those: Acked-by: Sean Young > > Core changes tested on a Renesas Salvator-XS board (R-Car M3-N), driver > patches build tested by me and buildbot. > > Wolfram Sang (12): > i2c: replace i2c_new_probed_device with an ERR_PTR variant > i2c: icy: convert to i2c_new_scanned_device > macintosh: convert to i2c_new_scanned_device > platform: chrome: convert to i2c_new_scanned_device > video: fbdev: matrox: convert to i2c_new_scanned_device > input: mouse: convert to i2c_new_scanned_device > media: pci: cx23885: convert to i2c_new_scanned_device > media: pci: cx88: convert to i2c_new_scanned_device > media: pci: bt8xx: convert to i2c_new_scanned_device > media: pci: cx18: convert to i2c_new_scanned_device > media: pci: ivtv: convert to i2c_new_scanned_device > media: v4l2-core: convert to i2c_new_scanned_device > > Documentation/i2c/instantiating-devices.rst | 10 ++++----- > Documentation/i2c/writing-clients.rst | 8 +++---- > drivers/i2c/busses/i2c-icy.c | 8 +++---- > drivers/i2c/i2c-core-base.c | 25 ++++++++++++++++----- > drivers/input/mouse/psmouse-smbus.c | 8 ++++--- > drivers/macintosh/therm_windtunnel.c | 4 ++-- > drivers/media/pci/bt8xx/bttv-input.c | 6 ++--- > drivers/media/pci/cx18/cx18-i2c.c | 2 +- > drivers/media/pci/cx23885/cx23885-i2c.c | 4 ++-- > drivers/media/pci/cx88/cx88-input.c | 2 +- > drivers/media/pci/ivtv/ivtv-i2c.c | 6 ++--- > drivers/media/pci/ivtv/ivtv-i2c.h | 2 +- > drivers/media/v4l2-core/v4l2-i2c.c | 10 ++++----- > drivers/platform/chrome/chromeos_laptop.c | 18 ++++++++------- > drivers/video/fbdev/matrox/i2c-matroxfb.c | 4 ++-- > include/linux/i2c.h | 12 +++++++--- > 16 files changed, 76 insertions(+), 53 deletions(-) > > -- > 2.20.1