diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/net/bluetooth/hci_core.h | 2 | ||||
-rw-r--r-- | include/net/bluetooth/mgmt.h | 8 |
2 files changed, 10 insertions, 0 deletions
diff --git a/include/net/bluetooth/hci_core.h b/include/net/bluetooth/hci_core.h index 3b2f09df279a..2a88fc82429b 100644 --- a/include/net/bluetooth/hci_core.h +++ b/include/net/bluetooth/hci_core.h | |||
@@ -787,6 +787,8 @@ int mgmt_auth_failed(u16 index, bdaddr_t *bdaddr, u8 status); | |||
787 | int mgmt_set_local_name_complete(u16 index, u8 *name, u8 status); | 787 | int mgmt_set_local_name_complete(u16 index, u8 *name, u8 status); |
788 | int mgmt_read_local_oob_data_reply_complete(u16 index, u8 *hash, u8 *randomizer, | 788 | int mgmt_read_local_oob_data_reply_complete(u16 index, u8 *hash, u8 *randomizer, |
789 | u8 status); | 789 | u8 status); |
790 | int mgmt_device_found(u16 index, bdaddr_t *bdaddr, u8 *dev_class, s8 rssi, | ||
791 | u8 *eir); | ||
790 | 792 | ||
791 | /* HCI info for socket */ | 793 | /* HCI info for socket */ |
792 | #define hci_pi(sk) ((struct hci_pinfo *) sk) | 794 | #define hci_pi(sk) ((struct hci_pinfo *) sk) |
diff --git a/include/net/bluetooth/mgmt.h b/include/net/bluetooth/mgmt.h index 1a6283f9fee8..864d0cbd2d57 100644 --- a/include/net/bluetooth/mgmt.h +++ b/include/net/bluetooth/mgmt.h | |||
@@ -267,3 +267,11 @@ struct mgmt_ev_auth_failed { | |||
267 | struct mgmt_ev_local_name_changed { | 267 | struct mgmt_ev_local_name_changed { |
268 | __u8 name[MGMT_MAX_NAME_LENGTH]; | 268 | __u8 name[MGMT_MAX_NAME_LENGTH]; |
269 | } __packed; | 269 | } __packed; |
270 | |||
271 | #define MGMT_EV_DEVICE_FOUND 0x0012 | ||
272 | struct mgmt_ev_device_found { | ||
273 | bdaddr_t bdaddr; | ||
274 | __u8 dev_class[3]; | ||
275 | __s8 rssi; | ||
276 | __u8 eir[HCI_MAX_EIR_LENGTH]; | ||
277 | } __packed; | ||