diff options
author | Jiri Slaby <jslaby@suse.cz> | 2017-05-12 04:06:29 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-05-17 05:27:41 -0400 |
commit | 7cdfe4ddea47dbc66306edf802fd2ef86a6c8867 (patch) | |
tree | 4058b626a9acc0c4748d1382e1dee14acaf25eed | |
parent | 41318a2b82f5d5fe1fb408f6d6e0b22aa557111d (diff) |
sisusb_con: fix coccinelle warning
After commit d705ff3818 (tty: vt, cleanup and document con_scroll), in
the coccinelle output, we can see:
drivers/usb/misc/sisusbvga/sisusb_con.c:852:8-9: WARNING: return of 0/1 in function 'sisusbcon_scroll_area' with return type bool
Return true instead of 1 in the function returning bool which was
intended to do in d705ff3818 but omitted.
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Fixes: d705ff3818 (tty: vt, cleanup and document con_scroll)
Cc: Thomas Winischhofer <thomas@winischhofer.net>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: linux-usb@vger.kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/usb/misc/sisusbvga/sisusb_con.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/misc/sisusbvga/sisusb_con.c b/drivers/usb/misc/sisusbvga/sisusb_con.c index 3c6948af726a..f019d80ca9e4 100644 --- a/drivers/usb/misc/sisusbvga/sisusb_con.c +++ b/drivers/usb/misc/sisusbvga/sisusb_con.c | |||
@@ -973,7 +973,7 @@ sisusbcon_set_origin(struct vc_data *c) | |||
973 | 973 | ||
974 | mutex_unlock(&sisusb->lock); | 974 | mutex_unlock(&sisusb->lock); |
975 | 975 | ||
976 | return 1; | 976 | return true; |
977 | } | 977 | } |
978 | 978 | ||
979 | /* Interface routine */ | 979 | /* Interface routine */ |