Bluetooth: Use hex notation for mask
authorAndrei Emeltchenko <andrei.emeltchenko@intel.com>
Thu, 19 Nov 2015 14:47:38 +0000 (16:47 +0200)
committerMarcel Holtmann <marcel@holtmann.org>
Thu, 19 Nov 2015 16:50:33 +0000 (17:50 +0100)
This makes it easier to read and makes code consistent.

Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
drivers/bluetooth/hci_h5.c

index 012248e..db039f2 100644 (file)
@@ -119,7 +119,7 @@ static u8 h5_cfg_field(struct h5 *h5)
        u8 field = 0;
 
        /* Sliding window size (first 3 bits) */
-       field |= (h5->tx_win & 7);
+       field |= (h5->tx_win & 0x07);
 
        return field;
 }