From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtpout-04.galae.net (smtpout-04.galae.net [185.171.202.116]) (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 804EC3C7E0C for ; Fri, 13 Mar 2026 16:57:26 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=185.171.202.116 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773421048; cv=none; b=YwAtifRHobgwnIQ8eAwf0k0FFif25elJuTIZsEUt7cT0fS1Ry2chXDHNvtygQgSQx+zxgBpfIXn+8QWMlZZSbyTfp0k46lj7X9hAiZlMqe9htXSLQo7J2cenT1OZxQjTorfs2c+LuzLOOd+gIj2/lfMGQ7ECfgOzMB5pamRCMic= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773421048; c=relaxed/simple; bh=GunX44sdPxo3G2fzl0sFW70WnjttiuYI8fYE7rzWEf4=; h=Mime-Version:Content-Type:Date:Message-Id:To:From:Subject:Cc: References:In-Reply-To; b=l0oqMvqcUhZ9ICoiRc7tDgWwaSadDw4FaFCOCPH8CGECRo1ioakZNH6cx88ocsW5Kucuhhe4jP2RwWlvRtmwd/pZdmQaYNITsp9sJR1rmWRYo1Og4hOybJAsqboeALZm1Jn2d/Y7YQ0tCYvWt5ELXX9eeGcy7ghbNjkSt65H0DI= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=reject dis=none) header.from=bootlin.com; spf=pass smtp.mailfrom=bootlin.com; dkim=pass (2048-bit key) header.d=bootlin.com header.i=@bootlin.com header.b=vtMfS975; arc=none smtp.client-ip=185.171.202.116 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=reject dis=none) header.from=bootlin.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=bootlin.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=bootlin.com header.i=@bootlin.com header.b="vtMfS975" Received: from smtpout-01.galae.net (smtpout-01.galae.net [212.83.139.233]) by smtpout-04.galae.net (Postfix) with ESMTPS id D9424C4270E; Fri, 13 Mar 2026 16:57:46 +0000 (UTC) Received: from mail.galae.net (mail.galae.net [212.83.136.155]) by smtpout-01.galae.net (Postfix) with ESMTPS id 9A9D560027; Fri, 13 Mar 2026 16:57:24 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) by localhost (Mailerdaemon) with ESMTPSA id ED4C910369F5B; Fri, 13 Mar 2026 17:57:17 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bootlin.com; s=dkim; t=1773421043; h=from:subject:date:message-id:to:cc:mime-version:content-type: content-transfer-encoding:in-reply-to:references; bh=GunX44sdPxo3G2fzl0sFW70WnjttiuYI8fYE7rzWEf4=; b=vtMfS975zyzcnz+C61KB4ixj6CvyQQGeK+B53NG7Gihhsh0SJzpyneDfJBbZm7KrJfX/FL Bxu+Nerau777hOQ0wWVMY5mzAb0+qOcYixcxjqNZhY/Br+3qZmu7ZyMoV9g45dMiDrBQTU y+XsZHVki3dxTL/4uGrRVGxv+yDiRkTeCQlsBlD6E+8dtm2aVQwpb35o3F7izif28vC4Ax Grf4Ec7PjfAuorssRR/J8TFmnC6PoNrzOitQeemDPgwKJJLAUy9O6Im0fInyGe3O0EPISE H0Y+KOrIoaZzeAQfvuJS7u5Ml24WbqHEYVs5T1q9rMr1x3WJfO0C3e2Ci/0tGg== Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: Mime-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=UTF-8 Date: Fri, 13 Mar 2026 17:57:17 +0100 Message-Id: To: "Kory Maincent" , "Herve Codina" , , From: "Luca Ceresoli" Subject: Re: [PATCH] drm/tilcdc: Fix type mismatch Cc: "Bajjuri Praneeth" , "kernel test robot" , , "Jyri Sarha" , "Tomi Valkeinen" , "Maarten Lankhorst" , "Maxime Ripard" , "Thomas Zimmermann" , "David Airlie" , "Simona Vetter" X-Mailer: aerc 0.20.1 References: <20260305163907.717719-1-kory.maincent@bootlin.com> In-Reply-To: <20260305163907.717719-1-kory.maincent@bootlin.com> X-Last-TLS-Session-Version: TLSv1.3 On Thu Mar 5, 2026 at 5:39 PM CET, Kory Maincent wrote: > From: "Kory Maincent (TI)" > > cpu_to_be32() returns a __be32 big-endian value, but the compound literal= s > passed to tilcdc_panel_update_prop() were typed as u32. This causes a > sparse type mismatch warning. Fix it by using __be32 as the compound > literal type to match the return type of cpu_to_be32(). > > Reported-by: kernel test robot > Closes: https://lore.kernel.org/oe-kbuild-all/202602200130.LjofC7YE-lkp@i= ntel.com/ > Fixes: 0ff223d991477 ("drm/tilcdc: Convert legacy panel binding via DT ov= erlay at boot time") > Signed-off-by: Kory Maincent (TI) Reviewed-by: Luca Ceresoli -- Luca Ceresoli, Bootlin Embedded Linux and Kernel engineering https://bootlin.com