All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jani Nikula <jani.nikula@linux.intel.com>
To: Nathan Chancellor <nathan@kernel.org>,
	Aun-Ali Zaidi <admin@kodeit.net>,
	Aditya Garg <gargaditya08@live.com>,
	Maarten Lankhorst <maarten.lankhorst@linux.intel.com>,
	Maxime Ripard <mripard@kernel.org>,
	Thomas Zimmermann <tzimmermann@suse.de>
Cc: Atharva Tiwari <evepolonium@gmail.com>,
	Kerem Karabay <kekrby@gmail.com>,
	dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org,
	patches@lists.linux.dev, Nathan Chancellor <nathan@kernel.org>
Subject: Re: [PATCH] drm/appletbdrm: Fix format specifier for size_t variables
Date: Tue, 04 Mar 2025 16:09:44 +0200	[thread overview]
Message-ID: <87h648zy3b.fsf@intel.com> (raw)
In-Reply-To: <20250304-appletbdrm-fix-size_t-specifier-v1-1-94fe1d2c91f8@kernel.org>

On Tue, 04 Mar 2025, Nathan Chancellor <nathan@kernel.org> wrote:
> When building for a 32-bit platform, there are some warnings (or errors
> with CONFIG_WERROR=y) due to an incorrect specifier for 'size_t'
> variables, which is typedef'd as 'unsigned int' for these architectures:
>
>   drivers/gpu/drm/tiny/appletbdrm.c:171:17: error: format specifies type 'unsigned long' but the argument has type 'size_t' (aka 'unsigned int') [-Werror,-Wformat]
>     170 |                 drm_err(drm, "Actual size (%d) doesn't match expected size (%lu)\n",
>         |                                                                             ~~~
>         |                                                                             %zu
>     171 |                         actual_size, size);
>         |                                      ^~~~
>   ...
>   drivers/gpu/drm/tiny/appletbdrm.c:212:17: error: format specifies type 'unsigned long' but the argument has type 'size_t' (aka 'unsigned int') [-Werror,-Wformat]
>     211 |                 drm_err(drm, "Actual size (%d) doesn't match expected size (%lu)\n",
>         |                                                                             ~~~
>         |                                                                             %zu
>     212 |                         actual_size, size);
>         |                                      ^~~~
>
> Use '%zu' as suggested, clearing up the warnings.
>
> Fixes: 0670c2f56e45 ("drm/tiny: add driver for Apple Touch Bars in x86 Macs")
> Signed-off-by: Nathan Chancellor <nathan@kernel.org>

Just sent an identical patch [1]. :)

You have a better commit message, let's go with this. With Aditya's ack
from the other thread,

Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Acked-by: Aditya Garg <gargaditya08@live.com>

[1] https://lore.kernel.org/r/20250304135456.429407-1-jani.nikula@intel.com

> ---
>  drivers/gpu/drm/tiny/appletbdrm.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/tiny/appletbdrm.c b/drivers/gpu/drm/tiny/appletbdrm.c
> index f5d177e234e4..394c8f9bd41a 100644
> --- a/drivers/gpu/drm/tiny/appletbdrm.c
> +++ b/drivers/gpu/drm/tiny/appletbdrm.c
> @@ -167,7 +167,7 @@ static int appletbdrm_send_request(struct appletbdrm_device *adev,
>  	}
>  
>  	if (actual_size != size) {
> -		drm_err(drm, "Actual size (%d) doesn't match expected size (%lu)\n",
> +		drm_err(drm, "Actual size (%d) doesn't match expected size (%zu)\n",
>  			actual_size, size);
>  		return -EIO;
>  	}
> @@ -208,7 +208,7 @@ static int appletbdrm_read_response(struct appletbdrm_device *adev,
>  	}
>  
>  	if (actual_size != size) {
> -		drm_err(drm, "Actual size (%d) doesn't match expected size (%lu)\n",
> +		drm_err(drm, "Actual size (%d) doesn't match expected size (%zu)\n",
>  			actual_size, size);
>  		return -EBADMSG;
>  	}
>
> ---
> base-commit: 95a5c9d197bb22a506913acb330a926d4e51aa95
> change-id: 20250304-appletbdrm-fix-size_t-specifier-d3c547522379
>
> Best regards,

-- 
Jani Nikula, Intel

  reply	other threads:[~2025-03-04 14:09 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-03-04 13:19 [PATCH] drm/appletbdrm: Fix format specifier for size_t variables Nathan Chancellor
2025-03-04 14:09 ` Jani Nikula [this message]
2025-03-04 14:20 ` Aditya Garg
2025-03-04 15:22   ` Jani Nikula

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87h648zy3b.fsf@intel.com \
    --to=jani.nikula@linux.intel.com \
    --cc=admin@kodeit.net \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=evepolonium@gmail.com \
    --cc=gargaditya08@live.com \
    --cc=kekrby@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=maarten.lankhorst@linux.intel.com \
    --cc=mripard@kernel.org \
    --cc=nathan@kernel.org \
    --cc=patches@lists.linux.dev \
    --cc=tzimmermann@suse.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.