aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrei Emeltchenko <andrei.emeltchenko@intel.com>2015-11-26 09:49:33 -0500
committerMarcel Holtmann <marcel@holtmann.org>2015-12-09 18:51:49 -0500
commit1d3a1e69adde1f854d3fdeda64019b54189a390c (patch)
tree690b0f8dd60bd1f04c48030b8e325501aae8e977
parent17fd08ffb5981cff2c921eb479f46b872b02b2b9 (diff)
Bluetooth: Use hexadecimal notation for mask
Using hexadecimal notation for mask makes code easier to read Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
-rw-r--r--drivers/bluetooth/hci_h5.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/bluetooth/hci_h5.c b/drivers/bluetooth/hci_h5.c
index db039f2ce655..fc1a499bca95 100644
--- a/drivers/bluetooth/hci_h5.c
+++ b/drivers/bluetooth/hci_h5.c
@@ -317,7 +317,7 @@ static void h5_handle_internal_rx(struct hci_uart *hu)
317 h5_link_control(hu, conf_req, 3); 317 h5_link_control(hu, conf_req, 3);
318 } else if (memcmp(data, conf_rsp, 2) == 0) { 318 } else if (memcmp(data, conf_rsp, 2) == 0) {
319 if (H5_HDR_LEN(hdr) > 2) 319 if (H5_HDR_LEN(hdr) > 2)
320 h5->tx_win = (data[2] & 7); 320 h5->tx_win = (data[2] & 0x07);
321 BT_DBG("Three-wire init complete. tx_win %u", h5->tx_win); 321 BT_DBG("Three-wire init complete. tx_win %u", h5->tx_win);
322 h5->state = H5_ACTIVE; 322 h5->state = H5_ACTIVE;
323 hci_uart_init_ready(hu); 323 hci_uart_init_ready(hu);