diff options
author | Andre Guedes <andre.guedes@openbossa.org> | 2014-01-30 16:22:05 -0500 |
---|---|---|
committer | Johan Hedberg <johan.hedberg@intel.com> | 2014-02-13 02:51:41 -0500 |
commit | 5c136e90a45e3d8e050b212f8f40f2d81f096879 (patch) | |
tree | 414bc5d7ecad4fd56fe9137b3ac54afcde5f3aaf /include/net/bluetooth | |
parent | 1e406eefbe41467c00973939c2b61b37bf0e1323 (diff) |
Bluetooth: Group list_head fields from strcut hci_dev together
This patch groups the list_head fields from struct hci_dev together
and removes empty lines between them.
Signed-off-by: Andre Guedes <andre.guedes@openbossa.org>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'include/net/bluetooth')
-rw-r--r-- | include/net/bluetooth/hci_core.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/include/net/bluetooth/hci_core.h b/include/net/bluetooth/hci_core.h index b9676cc1a59d..2e1d184bd8d3 100644 --- a/include/net/bluetooth/hci_core.h +++ b/include/net/bluetooth/hci_core.h | |||
@@ -259,18 +259,15 @@ struct hci_dev { | |||
259 | __u32 req_status; | 259 | __u32 req_status; |
260 | __u32 req_result; | 260 | __u32 req_result; |
261 | 261 | ||
262 | struct list_head mgmt_pending; | ||
263 | 262 | ||
264 | struct discovery_state discovery; | 263 | struct discovery_state discovery; |
265 | struct hci_conn_hash conn_hash; | 264 | struct hci_conn_hash conn_hash; |
266 | struct list_head blacklist; | ||
267 | 265 | ||
266 | struct list_head mgmt_pending; | ||
267 | struct list_head blacklist; | ||
268 | struct list_head uuids; | 268 | struct list_head uuids; |
269 | |||
270 | struct list_head link_keys; | 269 | struct list_head link_keys; |
271 | |||
272 | struct list_head long_term_keys; | 270 | struct list_head long_term_keys; |
273 | |||
274 | struct list_head remote_oob_data; | 271 | struct list_head remote_oob_data; |
275 | 272 | ||
276 | struct hci_dev_stats stat; | 273 | struct hci_dev_stats stat; |