[PATCH] bluetooth:hci_bcsp - Change 1 to true for bool type variables assignments.

From: Shailendra Verma
Date: Mon May 25 2015 - 14:31:17 EST


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

Signed-off-by: Shailendra Verma <shailendra.capricorn@xxxxxxxxx>
---
drivers/bluetooth/hci_bcsp.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/bluetooth/hci_bcsp.c b/drivers/bluetooth/hci_bcsp.c
index dc8e3d4..fc0056a 100644
--- a/drivers/bluetooth/hci_bcsp.c
+++ b/drivers/bluetooth/hci_bcsp.c
@@ -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

--
1.7.9.5

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/