aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/bluetooth
diff options
context:
space:
mode:
authorShailendra Verma <shailendra.capricorn@gmail.com>2015-05-25 23:53:40 +0530
committerMarcel Holtmann <marcel@holtmann.org>2015-05-25 20:57:35 +0200
commit917a33379258c137324cb9204e2f2f6ed8dc2b78 (patch)
tree4072fea290bd5f3c2526d2525c47f1b00fe413f2 /drivers/bluetooth
parentBluetooth: btusb: Support QCA61x4 ROME v2.0 (diff)
downloadlinux-dev-917a33379258c137324cb9204e2f2f6ed8dc2b78.tar.xz
linux-dev-917a33379258c137324cb9204e2f2f6ed8dc2b78.zip
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 <shailendra.capricorn@gmail.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'drivers/bluetooth')
-rw-r--r--drivers/bluetooth/btusb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c
index c334620c07b3..8ff0e162341d 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;