mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-05 06:05:06 +00:00
HID: multitouch: fix types returned from mt_need_to_apply_feature()
Some exit paths from mt_need_to_apply_feature() returned int instead of bool; fix that up. Reported-by: kbuild test robot <lkp@intel.com> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
This commit is contained in:
parent
02946f4b43
commit
99c703acad
1 changed files with 3 additions and 3 deletions
|
@ -1206,15 +1206,15 @@ static bool mt_need_to_apply_feature(struct hid_device *hdev,
|
|||
|
||||
case HID_DG_LATENCYMODE:
|
||||
field->value[index] = latency;
|
||||
return 1;
|
||||
return true;
|
||||
|
||||
case HID_DG_SURFACESWITCH:
|
||||
field->value[index] = surface_switch;
|
||||
return 1;
|
||||
return true;
|
||||
|
||||
case HID_DG_BUTTONSWITCH:
|
||||
field->value[index] = button_switch;
|
||||
return 1;
|
||||
return true;
|
||||
}
|
||||
|
||||
return false; /* no need to update the report */
|
||||
|
|
Loading…
Add table
Reference in a new issue