diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2015-04-04 22:11:43 -0700 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2015-04-07 18:47:10 +0200 |
commit | 4ee7ef19894c0ac35cc6dc374d65658a26d7496a (patch) | |
tree | 433bc1e398bae66dba47afc0f8b98f71915b32b1 /drivers/bluetooth/hci_ll.c | |
parent | 2d7cc19eebc182dbdda228aa26eb5bfff97ac072 (diff) |
Bluetooth: hci_uart: Make struct hci_uart_proto always const
The usage of struct hci_uart_proto should always be const. Change the
function headers and individual protocol drivers.
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Diffstat (limited to 'drivers/bluetooth/hci_ll.c')
-rw-r--r-- | drivers/bluetooth/hci_ll.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/bluetooth/hci_ll.c b/drivers/bluetooth/hci_ll.c index 79eea1cbd988..e66f0fa65485 100644 --- a/drivers/bluetooth/hci_ll.c +++ b/drivers/bluetooth/hci_ll.c @@ -505,7 +505,7 @@ static struct sk_buff *ll_dequeue(struct hci_uart *hu) return skb_dequeue(&ll->txq); } -static struct hci_uart_proto llp = { +static const struct hci_uart_proto llp = { .id = HCI_UART_LL, .open = ll_open, .close = ll_close, |