From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 86555409273 for ; Mon, 20 Jul 2026 13:04:54 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784552695; cv=none; b=XtmRd30BYnlDCT5eOtbd/Lf0/AQ0k4FaMei98YQKKH7SR8SPzm11UzGAi5d8XqjwzFLhhKrQdMctuIbI07WZzQN40LspnEjcyGbQ5DSUXTKZkRiHwU1M/I/K3zqmvn+r5zsD5INCuzrPteWrnHlJIXw38wglD9oMabT0nv8NSnE= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784552695; c=relaxed/simple; bh=23l2ngWyn+hzWTPWPpAHIpCxMUe90xYoOU1TK5XM9j4=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=tuOv9cmSLbgKixkaRva/wlS0WatjyfGsIY+9YYKYOD+66+Ejk8mpcG61tOx80mFpmcn+SwT6tA3AsM7RCsWw3dqerxjmw9YgqxOI6YzO6nsnF5Zd5mit4lEtTgEYXYdGnWZcdjGBTzRF9tiRzKazcNhCzvB9ToUSHnSLhGJmB74= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=JolGGOex; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="JolGGOex" Received: by smtp.kernel.org (Postfix) with ESMTPSA id CD98C1F00A3A; Mon, 20 Jul 2026 13:04:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1784552694; bh=ISsGvIfiVmCTmpBk17+CxNOpuAPZuqtsfciv62CwcyI=; h=Date:Subject:To:Cc:References:From:In-Reply-To; b=JolGGOexPicnfnErFSAn/d0jmybfzVKbMPFtTGBWBI9gY0GlJLD5IKQEZrCm5ezuv tZZ3x74Pur4I5yLFBe+CBpQ/nkZ+E866N6QM3GazmNC99hjZ8+IrdLXegfctA6oWdd daaV1yYFdiTwoEi7B8RG5sZVOwwuHZe57aBK35fm2XPOt6tjCYs9MgA1OKEREi8rMl xVGlwZQz8KbKepXqoGl48aD2SEwrkFPUMAXmGMS9kYljVXvgGVrBSHKNXGaGCCHicj QGBti7p5s2Jb6JiEFhqJEgKSXvUUAamXEXRMSaWescmtPxSoDWc+hPsYaNyzOfXS3m lQdm3WuluL6eA== Message-ID: Date: Mon, 20 Jul 2026 15:04:50 +0200 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH v2 3/3] drm/nouveau: Use named initializers for i2c_device_id arrays To: =?UTF-8?Q?Uwe_Kleine-K=C3=B6nig_=28The_Capable_Hub=29?= Cc: Lyude Paul , Maarten Lankhorst , Maxime Ripard , Thomas Zimmermann , David Airlie , Simona Vetter , Kees Cook , dri-devel@lists.freedesktop.org, nouveau@lists.freedesktop.org, linux-kernel@vger.kernel.org, Luca Ceresoli References: <7d6033270daf9ff409b427897cb8218f9a69048a.1784545092.git.u.kleine-koenig@baylibre.com> From: Danilo Krummrich Content-Language: en-US In-Reply-To: <7d6033270daf9ff409b427897cb8218f9a69048a.1784545092.git.u.kleine-koenig@baylibre.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit On 7/20/26 1:25 PM, Uwe Kleine-König (The Capable Hub) wrote: > Named initializers are better readable and more robust to changes of the > struct definition. This robustness is relevant for a planned change to > struct platform_device_id replacing .driver_data by an anonymous union. > (Though these drivers don't use .driver_data, so this patch isn't > strictly needed, but still good for consistency.) > > Reviewed-by: Luca Ceresoli > Signed-off-by: Uwe Kleine-König (The Capable Hub) Acked-by: Danilo Krummrich