Skip to content

Commit

Permalink
Bluetooth: hci_uart: Change 1 to true for bool type variables assignm…
Browse files Browse the repository at this point in the history
…ents

The variables txcrc and hciextn are bool type. So assigning true
instead of 1.

Signed-off-by: Shailendra Verma <shailendra.capricorn@gmail.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
  • Loading branch information
Shailendra Verma authored and Marcel Holtmann committed May 25, 2015
1 parent 917a333 commit bff6b89
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/bluetooth/hci_bcsp.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@

#include "hci_uart.h"

static bool txcrc = 1;
static bool hciextn = 1;
static bool txcrc = true;
static bool hciextn = true;

#define BCSP_TXWINSIZE 4

Expand Down

0 comments on commit bff6b89

Please sign in to comment.