From: Shailendra Verma Date: Mon, 25 May 2015 18:23:40 +0000 (+0530) Subject: Bluetooth: btusb: Change 1 to true in bool type variable assignment X-Git-Tag: v4.9.8~4072^2~183^2~16 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=917a33379258c137324cb9204e2f2f6ed8dc2b78;p=platform%2Fkernel%2Flinux-rpi3.git Bluetooth: btusb: Change 1 to true in bool type variable assignment The reset is a bool type variable. So assigning true to reset instead of 1. Signed-off-by: Shailendra Verma Signed-off-by: Marcel Holtmann --- diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c index c334620..8ff0e16 100644 --- a/drivers/bluetooth/btusb.c +++ b/drivers/bluetooth/btusb.c @@ -38,7 +38,7 @@ static bool disable_scofix; static bool force_scofix; -static bool reset = 1; +static bool reset = true; static struct usb_driver btusb_driver;