diff options
author | Sebastian Reichel <sre@kernel.org> | 2017-03-28 17:59:34 +0200 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2017-04-12 22:12:17 +0200 |
commit | aeac30140694824f26d14655271e1dcf3e32fd49 (patch) | |
tree | e3c11cc8c3231ae7c6bd60ef20bf9871500cd91d /drivers/bluetooth/hci_uart.h | |
parent | serdev: add helpers for cts and rts handling (diff) | |
download | linux-aeac30140694824f26d14655271e1dcf3e32fd49.tar.xz linux-aeac30140694824f26d14655271e1dcf3e32fd49.zip |
Bluetooth: hci_uart: add support for word alignment
This will be used by Nokia's H4+ protocol, which
uses 2-byte aligned packets.
Acked-by: Pavel Machek <pavel@ucw.cz>
Signed-off-by: Sebastian Reichel <sre@kernel.org>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'drivers/bluetooth/hci_uart.h')
-rw-r--r-- | drivers/bluetooth/hci_uart.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/bluetooth/hci_uart.h b/drivers/bluetooth/hci_uart.h index 070139513e65..4aff50960cac 100644 --- a/drivers/bluetooth/hci_uart.h +++ b/drivers/bluetooth/hci_uart.h @@ -92,6 +92,9 @@ struct hci_uart { unsigned int init_speed; unsigned int oper_speed; + + u8 alignment; + u8 padding; }; /* HCI_UART proto flag bits */ |