|
From: Mats F. <ma...@us...> - 2001-05-15 15:10:13
|
The following file was modified in linux/include/linux/bluetooth:
Name Old version New version Comment
---- ----------- ----------- -------
hci_internal.h 1.13 1.14=20=20=20=20=20=20=20=20=20=20=20=20
The accompanying log:
* Moved defines for H4 UART packet types to hci.h
* Added two functions for parsing BCSP packets
The diff of the modified file(s):
--- hci_internal.h 2001/03/30 10:53:31 1.13
+++ hci_internal.h 2001/05/15 15:10:11 1.14
@@ -116,14 +116,6 @@
=20
#define NBR_CMD_BUFS 10
=20
-/* Defines for the packet types */
-#define CMD_PKT 0x01
-#define ACL_PKT 0x02
-#define SCO_PKT 0x03
-#define EVENT_PKT 0x04
-#define ERROR_PKT 0x05
-#define NEG_PKT 0x06
-
/* Define the different OpCode Group Field (OGF) values */
#define HCI_LC 0x01 /* Link Control Command */
#define HCI_LP 0x02 /* Link Policy Command */
@@ -360,12 +352,16 @@
s32 send_cmd(u8 *cmd, u8 len);
s32 send_cmd_block(u8 *cmd, u8 len);
=20
+#ifdef CONFIG_BLUETOOTH_USE_BCSP
+void hci_receive_hq(u8 *data, u32 count);
+void hci_receive_bcsp(u8 *data, u32 count);
+#endif
+
/*
Called from hci.c.
Implemented in hci_vendor.c
*/
void process_vendor_return_param(u32 ocf, u8* r_val);
void process_vendor_event(u8 *buf, u32 len, u32 event_code);
-
#endif
/****************** END OF FILE hci_internal.h ***************************=
***/
|