|
From: Gordon M. <gm...@us...> - 2001-03-20 16:40:33
|
The following file was modified in linux/include/linux/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- hci.h 1.47 1.47.2.1=20=20=20=20=20=20=20=20 The accompanying log: --Initial checking of changes to HCI. Including a) fixed the hci inquiry ha= ng b) changed buffer allocation strategy for hci inquiry c) converted to ca= ll tables for HCI Command Status & Command Complete processing. The diff of the modified file(s): --- hci.h 2001/03/12 15:55:02 1.47 +++ hci.h 2001/03/20 16:42:53 1.47.2.1 @@ -99,8 +99,17 @@ s32 hci_sprint_local_info(u8 *buf); s32 hci_sprint_local_bd(u8 *buf); =20 -inquiry_results* hci_inquiry(u8 lap[], u8 inq_len, u8 num_resp); +#ifdef CONFIG_BLUETOOTH_HCI_INQUIRY +int hci_inquiry(u8 lap[], u8 inq_len, u8 num_resp, inquiry_results*); +#else +#define hci_inquiry -EINVAL +#endif + +#ifdef CONFIG_BLUETOOTH_SCO s32 hci_add_sco_connection(u32 hci_hdl); +#else +#define hci_add_sco_connection(x) -EINVAL +#endif =20 /* Link control commands */ s32 hci_link_key_request_reply(u8 *bd, u8* link_key); |