From: Matt Jan Date: Fri, 9 Dec 2022 02:17:56 +0000 (+0800) Subject: staging: vme_user: replace 'unsigned' with 'unsigned int' X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=e185623a495e85faa8fe899a2d6bf17dc5bbc12b;p=linux.git staging: vme_user: replace 'unsigned' with 'unsigned int' Update the bare use of "unsigned" to the preferred "unsigned int". Signed-off-by: Matt Jan Link: https://lore.kernel.org/r/20221209021756.5597-3-zoo868e@gmail.com Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/vme_user/vme_bridge.h b/drivers/staging/vme_user/vme_bridge.h index 5da2643e20d5a..11df0a5e7f7b1 100644 --- a/drivers/staging/vme_user/vme_bridge.h +++ b/drivers/staging/vme_user/vme_bridge.h @@ -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 {