|
From: Mats F. <ma...@us...> - 2001-05-15 14:44:50
|
The following file was modified in linux/drivers/char/bluetooth:
Name Old version New version Comment
---- ----------- ----------- -------
bluetooth.c 1.173 1.174=20=20=20=20=20=20=20=20=20=20=20
The accompanying log:
If using BCSP, then the incomming data should be sent to BCSP instead of HCI
The diff of the modified file(s):
--- bluetooth.c 2001/04/26 13:27:21 1.173
+++ bluetooth.c 2001/05/15 14:44:50 1.174
@@ -91,6 +91,10 @@
#include <linux/bluetooth/bt_proc.h>
#endif
=20
+#ifdef CONFIG_BLUETOOTH_USE_BCSP
+#define hci_receive_data(data, len) bcsp_receive_lower(data, len)
+#endif
+
#ifdef __CRIS__
#include <asm/io.h>
#endif
@@ -2309,6 +2313,9 @@
=20
DSYS("Current HW: %s\n", bt_hw_vendor());
=20
+#ifdef CONFIG_BLUETOOTH_USE_BCSP
+ bcsp_init();
+#endif
hci_init();
l2cap_init();
=20
|