|
From: Peter K. <pk...@us...> - 2001-05-22 09:45:58
|
The following file was modified in linux/include/linux/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- bluetooth.h 1.39 1.40=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: BCSP can now be turned on/off in run-time if it is enabled. The diff of the modified file(s): --- bluetooth.h 2001/04/17 16:06:49 1.39 +++ bluetooth.h 2001/05/22 09:45:53 1.40 @@ -50,6 +50,9 @@ =20 /* glue functions */ s32 bt_write_lower_driver(u8 *data, s32 len); +#ifdef CONFIG_BLUETOOTH_USE_BCSP +s32 bt_write_lower_driver_real(u8 *data, s32 len); +#endif s32 bt_receive_top(u32 con_id, u8 *data, s32 len); =20 void parse_event(u8 *event); @@ -85,6 +88,7 @@ /******************/ =20 s32 bt_initiated(void); +s32 bt_use_bcsp(s32 new_use_bcsp); void bt_connect_cfm(u32 con_id, s32 status); s32 bt_sprint_status(u8 *buf); void bt_send_sdp_data_received(u8 line, u8 *data, int len); |