Re: [PATCH v3 1/2] staging: greybus: fix unsigned long long type warning
From: Greg KH
Date: Sun Apr 26 2026 - 23:54:11 EST
On Sat, Apr 04, 2026 at 09:59:37AM +0900, Kosugi Souta wrote:
> Fix the checkpatch.pl warning "Prefer 'unsigned long long' over
> 'unsigned long long int'". This cleans up the code style in
> authenticate.c.
>
> Signed-off-by: Kosugi Souta <k.souta0926@xxxxxxxxx>
> ---
> drivers/staging/greybus/Documentation/firmware/authenticate.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/staging/greybus/Documentation/firmware/authenticate.c b/drivers/staging/greybus/Documentation/firmware/authenticate.c
> index 3d2c6f88a138a5..0ef88b7d24de02 100644
> --- a/drivers/staging/greybus/Documentation/firmware/authenticate.c
> +++ b/drivers/staging/greybus/Documentation/firmware/authenticate.c
> @@ -58,7 +58,7 @@ int main(int argc, char *argv[])
> goto close_fd;
> }
>
> - printf("UID received: 0x%llx\n", *(unsigned long long int *)(uid.uid));
> + printf("UID received: 0x%llx\n", *(unsigned long long *)(uid.uid));
>
> /* Get certificate */
> printf("Get IMS certificate\n");
> --
> 2.43.0
>
>
Does not apply to the tree anymore :(