Bluetooth: Remove interval parameter from HCI connection
The conn->interval parameter of HCI connections is not used at all and so just remove it. Signed-off-by: Marcel Holtmann <marcel@holtmann.org> Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
This commit is contained in:
Родитель
cfbb2b5b91
Коммит
3497ac84bd
|
@ -315,7 +315,6 @@ struct hci_conn {
|
||||||
__u8 attempt;
|
__u8 attempt;
|
||||||
__u8 dev_class[3];
|
__u8 dev_class[3];
|
||||||
__u8 features[HCI_MAX_PAGES][8];
|
__u8 features[HCI_MAX_PAGES][8];
|
||||||
__u16 interval;
|
|
||||||
__u16 pkt_type;
|
__u16 pkt_type;
|
||||||
__u16 link_policy;
|
__u16 link_policy;
|
||||||
__u32 link_mode;
|
__u32 link_mode;
|
||||||
|
|
|
@ -2549,7 +2549,6 @@ static void hci_mode_change_evt(struct hci_dev *hdev, struct sk_buff *skb)
|
||||||
conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
|
conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(ev->handle));
|
||||||
if (conn) {
|
if (conn) {
|
||||||
conn->mode = ev->mode;
|
conn->mode = ev->mode;
|
||||||
conn->interval = __le16_to_cpu(ev->interval);
|
|
||||||
|
|
||||||
if (!test_and_clear_bit(HCI_CONN_MODE_CHANGE_PEND,
|
if (!test_and_clear_bit(HCI_CONN_MODE_CHANGE_PEND,
|
||||||
&conn->flags)) {
|
&conn->flags)) {
|
||||||
|
|
Загрузка…
Ссылка в новой задаче