staging: greybus: remove redundant 'int' from unsigned long long

Replace 'unsigned long long int' with 'unsigned long long' as the
'int' suffix is unnecessary and not preferred by kernel coding style.

Signed-off-by: Oskar Ray-Frayssinet <rayfraytech@gmail.com>
Link: https://patch.msgid.link/20260304193206.4992-1-rayfraytech@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Oskar Ray-Frayssinet 2026-03-04 20:32:06 +01:00 committed by Greg Kroah-Hartman
parent 1fc63bfed1
commit cd002b58ec

View File

@ -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");