From: Joe Perches Date: Mon, 30 Mar 2015 23:46:10 +0000 (-0700) Subject: virtio_console: Use bool function return values of true/false not 1/0 X-Git-Tag: v5.15~15910^2~29 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f580d730c90c11be0ef4fe88aff3de80845176cb;p=platform%2Fkernel%2Flinux-starfive.git virtio_console: Use bool function return values of true/false not 1/0 Use the normal return values for bool functions Signed-off-by: Joe Perches Reviewed-by: Amit Shah Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/char/virtio_console.c b/drivers/char/virtio_console.c index 72d7028..50754d20 100644 --- a/drivers/char/virtio_console.c +++ b/drivers/char/virtio_console.c @@ -355,7 +355,7 @@ static inline bool use_multiport(struct ports_device *portdev) * early_init */ if (!portdev->vdev) - return 0; + return false; return __virtio_test_bit(portdev->vdev, VIRTIO_CONSOLE_F_MULTIPORT); }