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=-3.9 required=3.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS 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 DA2BFC2D0BF for ; Tue, 17 Dec 2019 20:22:13 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 9E98A24679 for ; Tue, 17 Dec 2019 20:22:13 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=canb.auug.org.au header.i=@canb.auug.org.au header.b="rv6PmcXH" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728062AbfLQUWM (ORCPT ); Tue, 17 Dec 2019 15:22:12 -0500 Received: from ozlabs.org ([203.11.71.1]:38737 "EHLO ozlabs.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727036AbfLQUWM (ORCPT ); Tue, 17 Dec 2019 15:22:12 -0500 Received: from authenticated.ozlabs.org (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail.ozlabs.org (Postfix) with ESMTPSA id 47cqLP4KnCz9sR4; Wed, 18 Dec 2019 07:22:05 +1100 (AEDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=canb.auug.org.au; s=201702; t=1576614128; bh=HNE5QHDUpxYl9Gzpb/l907YVIFjvEkK/+MtEopkr4DA=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=rv6PmcXHfNhTSM8MDTyYiTm/oeNrBYgP6Y96EF/L825FjFNR52ZF2cF7QHb2ATXce SMhAj85MStFfrhdi6xUfYjth0bBc/USrqLnDXEODzD7AFCYRgPre9kar4oW/Z21d0S wS2InJKRaDB3x0yuEYoQHy+i9VBRw/pG219TntpTFxpVfGhKCxAoL0xWQUMD85qDDE V6X7Q8e2aQq3MuD/MxIymsXlzeUuaT4tYTXQFmbRNMIo9W8rXtqSFPAaST1xuZkTM2 Xgf6d4Pl35ZYFoc0dhssM1cf7wts60hsYV1whyHkl15lCCTtQIEUY8JQfrRzlM7VJC ujSQIxs1cyFYA== Date: Wed, 18 Dec 2019 07:22:04 +1100 From: Stephen Rothwell To: Daniel Vetter Cc: Daniel Vetter , Intel Graphics , DRI , Linux Next Mailing List , Linux Kernel Mailing List , Icenowy Zheng , Wolfram Sang , Wolfram Sang Subject: Re: linux-next: build failure after merge of the drm-misc tree Message-ID: <20191218072204.06ca0cd9@canb.auug.org.au> In-Reply-To: <20191217131937.GZ624164@phenom.ffwll.local> References: <20191216122331.43c766f1@canb.auug.org.au> <20191217131937.GZ624164@phenom.ffwll.local> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="Sig_/qP.7snxCKhckK3Gxq8N8hHT"; protocol="application/pgp-signature"; micalg=pgp-sha256 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org --Sig_/qP.7snxCKhckK3Gxq8N8hHT Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Hi Daniel, On Tue, 17 Dec 2019 14:19:37 +0100 Daniel Vetter wrote: > > On Mon, Dec 16, 2019 at 12:23:31PM +1100, Stephen Rothwell wrote: > >=20 > > After merging the drm-misc tree, today's linux-next build (x86_64 > > allmodconfig) failed like this: > >=20 > > drivers/gpu/drm/bridge/analogix/analogix-anx6345.c: In function 'anx634= 5_i2c_probe': > > drivers/gpu/drm/bridge/analogix/analogix-anx6345.c:738:30: error: impli= cit declaration of function 'i2c_new_dummy' [-Werror=3Dimplicit-function-de= claration] > > 738 | anx6345->i2c_clients[i] =3D i2c_new_dummy(client->adapter, > > | ^~~~~~~~~~~~~ > > drivers/gpu/drm/bridge/analogix/analogix-anx6345.c:738:28: warning: ass= ignment to 'struct i2c_client *' from 'int' makes pointer from integer with= out a cast [-Wint-conversion] > > 738 | anx6345->i2c_clients[i] =3D i2c_new_dummy(client->adapter, > > | ^ > >=20 > > Caused by commit > >=20 > > 6aa192698089 ("drm/bridge: Add Analogix anx6345 support") > >=20 > > interacting with commit > >=20 > > 2c2f00ab1641 ("i2c: remove i2c_new_dummy() API") > >=20 > > From Linus' tree. > >=20 > > I have applied the following fix up patch for today: > >=20 > > From: Stephen Rothwell > > Date: Mon, 16 Dec 2019 12:11:19 +1100 > > Subject: [PATCH] drm/bridge: fix up for removal of i2c_new_dummy() > >=20 > > Signed-off-by: Stephen Rothwell =20 >=20 > Thanks pulled into drm-next since I just processed the first drm-misc-next > pull. Thanks. For the future, though, merge fixes like this should be part of the actual merge commit to avoid bisection problems. --=20 Cheers, Stephen Rothwell --Sig_/qP.7snxCKhckK3Gxq8N8hHT Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEENIC96giZ81tWdLgKAVBC80lX0GwFAl35OOwACgkQAVBC80lX 0GyJpAf/ZAQL39Fy+xbh/QKHNPjpxIBNkCwgsPMRTUIUT/rkDwmYQSHdjFWhOdHH zG/io4ZNhuqtAjttARJgAVzeT9JBKlCEVFABGRZE6C5VrTRbeCsjN6uU/+jqk0sx xkBxXz7y/sld8dFFsmJb7NxutkanUeVAGKzhjHMOEwrf33tEaGKWjnODtzc2y1TB 3e62mnjllvYR04jEMJhOLW6HJoFXM5CsXlTUVaQ3vw6P9lPXTSQ7+9q8FkDeQfyc VbrI9HUJpsjt25Nz+XSPCBoS1sEt79FvpgkxjI7sZDrnmVcyeoZSWetl1aO/GFA/ /NxVcfb1iWbgF4q83MtZq9mwqZRT2A== =PKb0 -----END PGP SIGNATURE----- --Sig_/qP.7snxCKhckK3Gxq8N8hHT-- 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=-3.6 required=3.0 tests=DKIM_INVALID,DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE, SPF_PASS 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 51B4BC3F68F for ; Tue, 17 Dec 2019 20:22:14 +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 12BA420716 for ; Tue, 17 Dec 2019 20:22:13 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (2048-bit key) header.d=canb.auug.org.au header.i=@canb.auug.org.au header.b="rv6PmcXH" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 12BA420716 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=canb.auug.org.au 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 448226E117; Tue, 17 Dec 2019 20:22:13 +0000 (UTC) X-Greylist: delayed 156624 seconds by postgrey-1.36 at gabe; Tue, 17 Dec 2019 20:22:11 UTC Received: from ozlabs.org (bilbo.ozlabs.org [203.11.71.1]) by gabe.freedesktop.org (Postfix) with ESMTPS id C79ED6E117; Tue, 17 Dec 2019 20:22:11 +0000 (UTC) Received: from authenticated.ozlabs.org (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail.ozlabs.org (Postfix) with ESMTPSA id 47cqLP4KnCz9sR4; Wed, 18 Dec 2019 07:22:05 +1100 (AEDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=canb.auug.org.au; s=201702; t=1576614128; bh=HNE5QHDUpxYl9Gzpb/l907YVIFjvEkK/+MtEopkr4DA=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=rv6PmcXHfNhTSM8MDTyYiTm/oeNrBYgP6Y96EF/L825FjFNR52ZF2cF7QHb2ATXce SMhAj85MStFfrhdi6xUfYjth0bBc/USrqLnDXEODzD7AFCYRgPre9kar4oW/Z21d0S wS2InJKRaDB3x0yuEYoQHy+i9VBRw/pG219TntpTFxpVfGhKCxAoL0xWQUMD85qDDE V6X7Q8e2aQq3MuD/MxIymsXlzeUuaT4tYTXQFmbRNMIo9W8rXtqSFPAaST1xuZkTM2 Xgf6d4Pl35ZYFoc0dhssM1cf7wts60hsYV1whyHkl15lCCTtQIEUY8JQfrRzlM7VJC ujSQIxs1cyFYA== Date: Wed, 18 Dec 2019 07:22:04 +1100 From: Stephen Rothwell To: Daniel Vetter Subject: Re: linux-next: build failure after merge of the drm-misc tree Message-ID: <20191218072204.06ca0cd9@canb.auug.org.au> In-Reply-To: <20191217131937.GZ624164@phenom.ffwll.local> References: <20191216122331.43c766f1@canb.auug.org.au> <20191217131937.GZ624164@phenom.ffwll.local> MIME-Version: 1.0 X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Wolfram Sang , Daniel Vetter , Intel Graphics , Linux Kernel Mailing List , DRI , Wolfram Sang , Linux Next Mailing List , Icenowy Zheng Content-Type: multipart/mixed; boundary="===============0169934669==" Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" --===============0169934669== Content-Type: multipart/signed; boundary="Sig_/qP.7snxCKhckK3Gxq8N8hHT"; protocol="application/pgp-signature"; micalg=pgp-sha256 --Sig_/qP.7snxCKhckK3Gxq8N8hHT Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Hi Daniel, On Tue, 17 Dec 2019 14:19:37 +0100 Daniel Vetter wrote: > > On Mon, Dec 16, 2019 at 12:23:31PM +1100, Stephen Rothwell wrote: > >=20 > > After merging the drm-misc tree, today's linux-next build (x86_64 > > allmodconfig) failed like this: > >=20 > > drivers/gpu/drm/bridge/analogix/analogix-anx6345.c: In function 'anx634= 5_i2c_probe': > > drivers/gpu/drm/bridge/analogix/analogix-anx6345.c:738:30: error: impli= cit declaration of function 'i2c_new_dummy' [-Werror=3Dimplicit-function-de= claration] > > 738 | anx6345->i2c_clients[i] =3D i2c_new_dummy(client->adapter, > > | ^~~~~~~~~~~~~ > > drivers/gpu/drm/bridge/analogix/analogix-anx6345.c:738:28: warning: ass= ignment to 'struct i2c_client *' from 'int' makes pointer from integer with= out a cast [-Wint-conversion] > > 738 | anx6345->i2c_clients[i] =3D i2c_new_dummy(client->adapter, > > | ^ > >=20 > > Caused by commit > >=20 > > 6aa192698089 ("drm/bridge: Add Analogix anx6345 support") > >=20 > > interacting with commit > >=20 > > 2c2f00ab1641 ("i2c: remove i2c_new_dummy() API") > >=20 > > From Linus' tree. > >=20 > > I have applied the following fix up patch for today: > >=20 > > From: Stephen Rothwell > > Date: Mon, 16 Dec 2019 12:11:19 +1100 > > Subject: [PATCH] drm/bridge: fix up for removal of i2c_new_dummy() > >=20 > > Signed-off-by: Stephen Rothwell =20 >=20 > Thanks pulled into drm-next since I just processed the first drm-misc-next > pull. Thanks. For the future, though, merge fixes like this should be part of the actual merge commit to avoid bisection problems. --=20 Cheers, Stephen Rothwell --Sig_/qP.7snxCKhckK3Gxq8N8hHT Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEENIC96giZ81tWdLgKAVBC80lX0GwFAl35OOwACgkQAVBC80lX 0GyJpAf/ZAQL39Fy+xbh/QKHNPjpxIBNkCwgsPMRTUIUT/rkDwmYQSHdjFWhOdHH zG/io4ZNhuqtAjttARJgAVzeT9JBKlCEVFABGRZE6C5VrTRbeCsjN6uU/+jqk0sx xkBxXz7y/sld8dFFsmJb7NxutkanUeVAGKzhjHMOEwrf33tEaGKWjnODtzc2y1TB 3e62mnjllvYR04jEMJhOLW6HJoFXM5CsXlTUVaQ3vw6P9lPXTSQ7+9q8FkDeQfyc VbrI9HUJpsjt25Nz+XSPCBoS1sEt79FvpgkxjI7sZDrnmVcyeoZSWetl1aO/GFA/ /NxVcfb1iWbgF4q83MtZq9mwqZRT2A== =PKb0 -----END PGP SIGNATURE----- --Sig_/qP.7snxCKhckK3Gxq8N8hHT-- --===============0169934669== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ dri-devel mailing list dri-devel@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/dri-devel --===============0169934669==-- 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=-3.6 required=3.0 tests=DKIM_INVALID,DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE, SPF_PASS 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 E2F30C2D0BF for ; Tue, 17 Dec 2019 20:22:19 +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 B2C042176D for ; Tue, 17 Dec 2019 20:22:18 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (2048-bit key) header.d=canb.auug.org.au header.i=@canb.auug.org.au header.b="rv6PmcXH" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org B2C042176D Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=canb.auug.org.au Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=intel-gfx-bounces@lists.freedesktop.org Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id A25076E11F; Tue, 17 Dec 2019 20:22:13 +0000 (UTC) X-Greylist: delayed 156624 seconds by postgrey-1.36 at gabe; Tue, 17 Dec 2019 20:22:11 UTC Received: from ozlabs.org (bilbo.ozlabs.org [203.11.71.1]) by gabe.freedesktop.org (Postfix) with ESMTPS id C79ED6E117; Tue, 17 Dec 2019 20:22:11 +0000 (UTC) Received: from authenticated.ozlabs.org (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail.ozlabs.org (Postfix) with ESMTPSA id 47cqLP4KnCz9sR4; Wed, 18 Dec 2019 07:22:05 +1100 (AEDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=canb.auug.org.au; s=201702; t=1576614128; bh=HNE5QHDUpxYl9Gzpb/l907YVIFjvEkK/+MtEopkr4DA=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=rv6PmcXHfNhTSM8MDTyYiTm/oeNrBYgP6Y96EF/L825FjFNR52ZF2cF7QHb2ATXce SMhAj85MStFfrhdi6xUfYjth0bBc/USrqLnDXEODzD7AFCYRgPre9kar4oW/Z21d0S wS2InJKRaDB3x0yuEYoQHy+i9VBRw/pG219TntpTFxpVfGhKCxAoL0xWQUMD85qDDE V6X7Q8e2aQq3MuD/MxIymsXlzeUuaT4tYTXQFmbRNMIo9W8rXtqSFPAaST1xuZkTM2 Xgf6d4Pl35ZYFoc0dhssM1cf7wts60hsYV1whyHkl15lCCTtQIEUY8JQfrRzlM7VJC ujSQIxs1cyFYA== Date: Wed, 18 Dec 2019 07:22:04 +1100 From: Stephen Rothwell To: Daniel Vetter Message-ID: <20191218072204.06ca0cd9@canb.auug.org.au> In-Reply-To: <20191217131937.GZ624164@phenom.ffwll.local> References: <20191216122331.43c766f1@canb.auug.org.au> <20191217131937.GZ624164@phenom.ffwll.local> MIME-Version: 1.0 Subject: Re: [Intel-gfx] linux-next: build failure after merge of the drm-misc tree X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Wolfram Sang , Daniel Vetter , Intel Graphics , Linux Kernel Mailing List , DRI , Wolfram Sang , Linux Next Mailing List , Icenowy Zheng Content-Type: multipart/mixed; boundary="===============1161986286==" Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" --===============1161986286== Content-Type: multipart/signed; boundary="Sig_/qP.7snxCKhckK3Gxq8N8hHT"; protocol="application/pgp-signature"; micalg=pgp-sha256 --Sig_/qP.7snxCKhckK3Gxq8N8hHT Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Hi Daniel, On Tue, 17 Dec 2019 14:19:37 +0100 Daniel Vetter wrote: > > On Mon, Dec 16, 2019 at 12:23:31PM +1100, Stephen Rothwell wrote: > >=20 > > After merging the drm-misc tree, today's linux-next build (x86_64 > > allmodconfig) failed like this: > >=20 > > drivers/gpu/drm/bridge/analogix/analogix-anx6345.c: In function 'anx634= 5_i2c_probe': > > drivers/gpu/drm/bridge/analogix/analogix-anx6345.c:738:30: error: impli= cit declaration of function 'i2c_new_dummy' [-Werror=3Dimplicit-function-de= claration] > > 738 | anx6345->i2c_clients[i] =3D i2c_new_dummy(client->adapter, > > | ^~~~~~~~~~~~~ > > drivers/gpu/drm/bridge/analogix/analogix-anx6345.c:738:28: warning: ass= ignment to 'struct i2c_client *' from 'int' makes pointer from integer with= out a cast [-Wint-conversion] > > 738 | anx6345->i2c_clients[i] =3D i2c_new_dummy(client->adapter, > > | ^ > >=20 > > Caused by commit > >=20 > > 6aa192698089 ("drm/bridge: Add Analogix anx6345 support") > >=20 > > interacting with commit > >=20 > > 2c2f00ab1641 ("i2c: remove i2c_new_dummy() API") > >=20 > > From Linus' tree. > >=20 > > I have applied the following fix up patch for today: > >=20 > > From: Stephen Rothwell > > Date: Mon, 16 Dec 2019 12:11:19 +1100 > > Subject: [PATCH] drm/bridge: fix up for removal of i2c_new_dummy() > >=20 > > Signed-off-by: Stephen Rothwell =20 >=20 > Thanks pulled into drm-next since I just processed the first drm-misc-next > pull. Thanks. For the future, though, merge fixes like this should be part of the actual merge commit to avoid bisection problems. --=20 Cheers, Stephen Rothwell --Sig_/qP.7snxCKhckK3Gxq8N8hHT Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEENIC96giZ81tWdLgKAVBC80lX0GwFAl35OOwACgkQAVBC80lX 0GyJpAf/ZAQL39Fy+xbh/QKHNPjpxIBNkCwgsPMRTUIUT/rkDwmYQSHdjFWhOdHH zG/io4ZNhuqtAjttARJgAVzeT9JBKlCEVFABGRZE6C5VrTRbeCsjN6uU/+jqk0sx xkBxXz7y/sld8dFFsmJb7NxutkanUeVAGKzhjHMOEwrf33tEaGKWjnODtzc2y1TB 3e62mnjllvYR04jEMJhOLW6HJoFXM5CsXlTUVaQ3vw6P9lPXTSQ7+9q8FkDeQfyc VbrI9HUJpsjt25Nz+XSPCBoS1sEt79FvpgkxjI7sZDrnmVcyeoZSWetl1aO/GFA/ /NxVcfb1iWbgF4q83MtZq9mwqZRT2A== =PKb0 -----END PGP SIGNATURE----- --Sig_/qP.7snxCKhckK3Gxq8N8hHT-- --===============1161986286== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx --===============1161986286==--