diff options
author | Aaron Ma | 2018-02-03 23:57:15 +0800 |
---|---|---|
committer | Jiri Kosina | 2018-02-16 13:30:56 +0100 |
commit | 3064a03b94e60388f0955fcc29f3e8a978d28f75 (patch) | |
tree | aa533760ffce91785050d48be73e287043dd47f9 /drivers/hid/hid-rmi.c | |
parent | 6de0b13cc0b4ba10e98a9263d7a83b940720b77a (diff) |
HID: Fix hid_report_len usage
Follow the change of return type u32 of hid_report_len,
fix all the types of variables those get the return value of
hid_report_len to u32, and all other code already uses u32.
Cc: stable@vger.kernel.org
Signed-off-by: Aaron Ma <aaron.ma@canonical.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid/hid-rmi.c')
-rw-r--r-- | drivers/hid/hid-rmi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/hid/hid-rmi.c b/drivers/hid/hid-rmi.c index c6c05df3e8d2..9c9362149641 100644 --- a/drivers/hid/hid-rmi.c +++ b/drivers/hid/hid-rmi.c @@ -89,8 +89,8 @@ struct rmi_data { u8 *writeReport; u8 *readReport; - int input_report_size; - int output_report_size; + u32 input_report_size; + u32 output_report_size; unsigned long flags; |