diff options
author | Matt Jan <zoo868e@gmail.com> | 2022-12-09 10:17:56 +0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2023-01-17 19:18:44 +0100 |
commit | e185623a495e85faa8fe899a2d6bf17dc5bbc12b (patch) | |
tree | a6e3999f9b83e40796b6d303e8069f2a0d7a3384 /drivers/staging/vme_user | |
parent | 3b529e145ea4c2aa59b6bada0aa10b13d2dbc1fa (diff) | |
download | linux-e185623a495e85faa8fe899a2d6bf17dc5bbc12b.tar.gz linux-e185623a495e85faa8fe899a2d6bf17dc5bbc12b.tar.bz2 linux-e185623a495e85faa8fe899a2d6bf17dc5bbc12b.zip |
staging: vme_user: replace 'unsigned' with 'unsigned int'
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>
Diffstat (limited to 'drivers/staging/vme_user')
-rw-r--r-- | drivers/staging/vme_user/vme_bridge.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/vme_user/vme_bridge.h b/drivers/staging/vme_user/vme_bridge.h index 5da2643e20d5..11df0a5e7f7b 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 { |