diff options
author | Shailendra Verma <shailendra.capricorn@gmail.com> | 2015-05-25 23:53:40 +0530 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2015-05-25 20:57:35 +0200 |
commit | 917a33379258c137324cb9204e2f2f6ed8dc2b78 (patch) | |
tree | 4072fea290bd5f3c2526d2525c47f1b00fe413f2 /drivers/bluetooth | |
parent | 7f6e63631dbd7fd6689b4ee301d0eea0f34c5535 (diff) | |
download | linux-917a33379258c137324cb9204e2f2f6ed8dc2b78.tar.bz2 |
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.c | 2 |
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; |