staging: vme_user: replace 'unsigned' with 'unsigned int'
authorMatt Jan <zoo868e@gmail.com>
Fri, 9 Dec 2022 02:17:56 +0000 (10:17 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 17 Jan 2023 18:18:44 +0000 (19:18 +0100)
Update the bare use of "unsigned" to the preferred "unsigned int".

Signed-off-by: Matt Jan <zoo868e@gmail.com>
Link: https://lore.kernel.org/r/20221209021756.5597-3-zoo868e@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vme_user/vme_bridge.h

index 5da2643..11df0a5 100644 (file)
@@ -84,7 +84,7 @@ struct vme_error_handler {
        unsigned long long end;         /* End of error window */
        unsigned long long first_error; /* Address of the first error */
        u32 aspace;                     /* Address space of error window*/
-       unsigned num_errors;            /* Number of errors */
+       unsigned int num_errors;        /* Number of errors */
 };
 
 struct vme_callback {