From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sean Young Date: Wed, 06 Nov 2019 10:06:55 +0000 Subject: Re: [RFC PATCH 00/12] i2c: replace i2c_new_probed_device with an ERR_PTR variant Message-Id: <20191106100655.GA2743@gofer.mess.org> List-Id: References: <20191106095033.25182-1-wsa+renesas@sang-engineering.com> In-Reply-To: <20191106095033.25182-1-wsa+renesas@sang-engineering.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: Wolfram Sang Cc: linux-i2c@vger.kernel.org, Wolfram Sang , dri-devel@lists.freedesktop.org, linux-fbdev@vger.kernel.org, linux-input@vger.kernel.org, linux-kernel@vger.kernel.org, linux-media@vger.kernel.org, linuxppc-dev@lists.ozlabs.org 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 From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sean Young Subject: Re: [RFC PATCH 00/12] i2c: replace i2c_new_probed_device with an ERR_PTR variant Date: Wed, 6 Nov 2019 10:06:55 +0000 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 Return-path: Content-Disposition: inline In-Reply-To: <20191106095033.25182-1-wsa+renesas@sang-engineering.com> Sender: linux-kernel-owner@vger.kernel.org To: Wolfram Sang Cc: linux-i2c@vger.kernel.org, Wolfram Sang , dri-devel@lists.freedesktop.org, linux-fbdev@vger.kernel.org, linux-input@vger.kernel.org, linux-kernel@vger.kernel.org, linux-media@vger.kernel.org, linuxppc-dev@lists.ozlabs.org List-Id: linux-i2c@vger.kernel.org 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 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 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,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 CC53AC5DF61 for ; Thu, 7 Nov 2019 07:43:53 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (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 8E56F21D79 for ; Thu, 7 Nov 2019 07:43:53 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 8E56F21D79 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=mess.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=dri-devel-bounces@lists.freedesktop.org Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id E9E706EE9E; Thu, 7 Nov 2019 07:43:24 +0000 (UTC) X-Greylist: delayed 394 seconds by postgrey-1.36 at gabe; Wed, 06 Nov 2019 10:13:34 UTC Received: from gofer.mess.org (gofer.mess.org [88.97.38.141]) by gabe.freedesktop.org (Postfix) with ESMTPS id D75D16E1DE for ; Wed, 6 Nov 2019 10:13:34 +0000 (UTC) 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-Disposition: inline In-Reply-To: <20191106095033.25182-1-wsa+renesas@sang-engineering.com> User-Agent: Mutt/1.10.1 (2018-07-13) X-Mailman-Approved-At: Thu, 07 Nov 2019 07:43:23 +0000 X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Direct Rendering Infrastructure - Development 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 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: base64 Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" Message-ID: <20191106100655.873vcGTloT-ttbpYQV1viAuOlixWp5oUIfKHUAKUDV0@z> T24gV2VkLCBOb3YgMDYsIDIwMTkgYXQgMTA6NTA6MThBTSArMDEwMCwgV29sZnJhbSBTYW5nIHdy b3RlOgo+IEZyb206IFdvbGZyYW0gU2FuZyA8d3NhQHRoZS1kcmVhbXMuZGU+Cj4gCj4gSW4gdGhl IG9uLWdvaW5nIG1pc3Npb24gdG8gbGV0IGkyY19uZXdfKiBjYWxscyByZXR1cm4gYW4gRVJSX1BU UiBpbnN0ZWFkCj4gb2YgTlVMTCwgaGVyZSBpcyBhIHNlcmllcyBjb252ZXJ0aW5nIGkyY19uZXdf cHJvYmVkX2RldmljZSgpLiBBIG5ldwo+IGZ1bmN0aW9uIGNhbGxlZCBpMmNfbmV3X3NjYW5uZWRf ZGV2aWNlKCkgaXMgaW50cm9kdWNlZCB3aXRoIHRoZSBuZXcKPiByZXR2YWwsIGJ1dCBmb3Igbm93 LCBhIGNvbXBhdGliaWxpdHkgaGVscGVyIGlzIHByb3ZpZGVkIHVudGlsIGFsbCB1c2Vycwo+IGFy ZSBjb252ZXJ0ZWQuIFRoZSByZXN0IG9mIHRoZSBwYXRjaGVzIGNvbnZlcnQgYWxsIGN1cnJlbnQg aW4tdHJlZQo+IHVzZXJzLgo+IAo+IE5vdGUgdGhhdCB0aGVzZSBwYXRjaGVzIGFyZSBSRkMgYmVj YXVzZSBJIHdhbnQgZmVlZGJhY2sgb24gdGhlIGFwcHJvYWNoCj4gYW5kIGhvcGVmdWxseSBjb2xs ZWN0IGFja3Mgb24gdGhlIGRyaXZlciBjb252ZXJzaW9ucy4gSWYgYWxsIGdvZXMgd2VsbCwKPiBJ J2xsIGFwcGx5IHRoZSBmaXJzdCB0d28gcGF0Y2hlcyBmb3IgdGhlIG5leHQgbWVyZ2Ugd2luZG93 LiBUaGVuLCBvbmNlCj4gdGhpcyBkZXBlbmRlbmN5IGlzIHVwc3RyZWFtLCBJJ2xsIHJlc2VuZCB0 aGlzIHNlcmllcyB3aXRoIGFsbCBpc3N1ZXMKPiBmaXhlZCBhbmQgYWNrcyBjb2xsZWN0ZWQuCgpU aGUgcGF0Y2hlcyB0byBkcml2ZXJzL21lZGlhL3BjaS8qIGFyZSBhbGwgSVIgcmVsYXRlZCB3aGlj aCBoYXZlIHRvdWNoZWQKb24vcmVhZCBvdmVyIHRoZSB5ZWFycy4gU28sIGZvciB0aG9zZToKCkFj a2VkLWJ5OiBTZWFuIFlvdW5nIDxzZWFuQG1lc3Mub3JnPgoKPiAKPiBDb3JlIGNoYW5nZXMgdGVz dGVkIG9uIGEgUmVuZXNhcyBTYWx2YXRvci1YUyBib2FyZCAoUi1DYXIgTTMtTiksIGRyaXZlcgo+ IHBhdGNoZXMgYnVpbGQgdGVzdGVkIGJ5IG1lIGFuZCBidWlsZGJvdC4KPiAKPiBXb2xmcmFtIFNh bmcgKDEyKToKPiAgIGkyYzogcmVwbGFjZSBpMmNfbmV3X3Byb2JlZF9kZXZpY2Ugd2l0aCBhbiBF UlJfUFRSIHZhcmlhbnQKPiAgIGkyYzogaWN5OiBjb252ZXJ0IHRvIGkyY19uZXdfc2Nhbm5lZF9k ZXZpY2UKPiAgIG1hY2ludG9zaDogY29udmVydCB0byBpMmNfbmV3X3NjYW5uZWRfZGV2aWNlCj4g ICBwbGF0Zm9ybTogY2hyb21lOiBjb252ZXJ0IHRvIGkyY19uZXdfc2Nhbm5lZF9kZXZpY2UKPiAg IHZpZGVvOiBmYmRldjogbWF0cm94OiBjb252ZXJ0IHRvIGkyY19uZXdfc2Nhbm5lZF9kZXZpY2UK PiAgIGlucHV0OiBtb3VzZTogY29udmVydCB0byBpMmNfbmV3X3NjYW5uZWRfZGV2aWNlCj4gICBt ZWRpYTogcGNpOiBjeDIzODg1OiBjb252ZXJ0IHRvIGkyY19uZXdfc2Nhbm5lZF9kZXZpY2UKPiAg IG1lZGlhOiBwY2k6IGN4ODg6IGNvbnZlcnQgdG8gaTJjX25ld19zY2FubmVkX2RldmljZQo+ICAg bWVkaWE6IHBjaTogYnQ4eHg6IGNvbnZlcnQgdG8gaTJjX25ld19zY2FubmVkX2RldmljZQo+ICAg bWVkaWE6IHBjaTogY3gxODogY29udmVydCB0byBpMmNfbmV3X3NjYW5uZWRfZGV2aWNlCj4gICBt ZWRpYTogcGNpOiBpdnR2OiBjb252ZXJ0IHRvIGkyY19uZXdfc2Nhbm5lZF9kZXZpY2UKPiAgIG1l ZGlhOiB2NGwyLWNvcmU6IGNvbnZlcnQgdG8gaTJjX25ld19zY2FubmVkX2RldmljZQo+IAo+ICBE b2N1bWVudGF0aW9uL2kyYy9pbnN0YW50aWF0aW5nLWRldmljZXMucnN0IHwgMTAgKysrKy0tLS0t Cj4gIERvY3VtZW50YXRpb24vaTJjL3dyaXRpbmctY2xpZW50cy5yc3QgICAgICAgfCAgOCArKyst LS0tCj4gIGRyaXZlcnMvaTJjL2J1c3Nlcy9pMmMtaWN5LmMgICAgICAgICAgICAgICAgfCAgOCAr KystLS0tCj4gIGRyaXZlcnMvaTJjL2kyYy1jb3JlLWJhc2UuYyAgICAgICAgICAgICAgICAgfCAy NSArKysrKysrKysrKysrKysrLS0tLS0KPiAgZHJpdmVycy9pbnB1dC9tb3VzZS9wc21vdXNlLXNt YnVzLmMgICAgICAgICB8ICA4ICsrKystLS0KPiAgZHJpdmVycy9tYWNpbnRvc2gvdGhlcm1fd2lu ZHR1bm5lbC5jICAgICAgICB8ICA0ICsrLS0KPiAgZHJpdmVycy9tZWRpYS9wY2kvYnQ4eHgvYnR0 di1pbnB1dC5jICAgICAgICB8ICA2ICsrLS0tCj4gIGRyaXZlcnMvbWVkaWEvcGNpL2N4MTgvY3gx OC1pMmMuYyAgICAgICAgICAgfCAgMiArLQo+ICBkcml2ZXJzL21lZGlhL3BjaS9jeDIzODg1L2N4 MjM4ODUtaTJjLmMgICAgIHwgIDQgKystLQo+ICBkcml2ZXJzL21lZGlhL3BjaS9jeDg4L2N4ODgt aW5wdXQuYyAgICAgICAgIHwgIDIgKy0KPiAgZHJpdmVycy9tZWRpYS9wY2kvaXZ0di9pdnR2LWky Yy5jICAgICAgICAgICB8ICA2ICsrLS0tCj4gIGRyaXZlcnMvbWVkaWEvcGNpL2l2dHYvaXZ0di1p MmMuaCAgICAgICAgICAgfCAgMiArLQo+ICBkcml2ZXJzL21lZGlhL3Y0bDItY29yZS92NGwyLWky Yy5jICAgICAgICAgIHwgMTAgKysrKy0tLS0tCj4gIGRyaXZlcnMvcGxhdGZvcm0vY2hyb21lL2No cm9tZW9zX2xhcHRvcC5jICAgfCAxOCArKysrKysrKy0tLS0tLS0KPiAgZHJpdmVycy92aWRlby9m YmRldi9tYXRyb3gvaTJjLW1hdHJveGZiLmMgICB8ICA0ICsrLS0KPiAgaW5jbHVkZS9saW51eC9p MmMuaCAgICAgICAgICAgICAgICAgICAgICAgICB8IDEyICsrKysrKystLS0KPiAgMTYgZmlsZXMg Y2hhbmdlZCwgNzYgaW5zZXJ0aW9ucygrKSwgNTMgZGVsZXRpb25zKC0pCj4gCj4gLS0gCj4gMi4y MC4xCl9fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fCmRyaS1k ZXZlbCBtYWlsaW5nIGxpc3QKZHJpLWRldmVsQGxpc3RzLmZyZWVkZXNrdG9wLm9yZwpodHRwczov L2xpc3RzLmZyZWVkZXNrdG9wLm9yZy9tYWlsbWFuL2xpc3RpbmZvL2RyaS1kZXZlbA==