diff options
author | Johan Hedberg <johan.hedberg@intel.com> | 2014-07-04 12:37:17 +0300 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2014-07-04 11:58:08 +0200 |
commit | 93450c75448e370659ce7ca9c192298596fb055e (patch) | |
tree | 4d8b492b0cd5d2d360818a91c74cb449f2a01876 /include/net/bluetooth | |
parent | 97bf2e99934bdfd3f91914e6c935271b62567470 (diff) | |
download | linux-93450c75448e370659ce7ca9c192298596fb055e.tar.gz linux-93450c75448e370659ce7ca9c192298596fb055e.tar.bz2 linux-93450c75448e370659ce7ca9c192298596fb055e.zip |
Bluetooth: Convert pend_le_conn list to a generic action list
In preparation to store also HCI_AUTO_CONN_REPORT entries in a list it
makes sense to convert the existing pend_le_conn list head of
hci_conn_params into a more generically named "action". This makes sense
because a parameter entry will never participate in more than one action
list.
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'include/net/bluetooth')
-rw-r--r-- | include/net/bluetooth/hci_core.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/bluetooth/hci_core.h b/include/net/bluetooth/hci_core.h index 09f9fb85d8fd..3b1143caa380 100644 --- a/include/net/bluetooth/hci_core.h +++ b/include/net/bluetooth/hci_core.h @@ -439,7 +439,7 @@ struct hci_chan { struct hci_conn_params { struct list_head list; - struct list_head pend_le_conn; + struct list_head action; bdaddr_t addr; u8 addr_type; |