From: Mattias ?g. <mat...@us...> - 2001-02-27 17:14:23
|
The following file was modified in linux/include/linux/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- bluetooth.h 1.33 1.34=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: * added bt_disconnect_cfm * added generic waitqueue timer used to wake up 'failed' blocking function calls The diff of the modified file(s): --- bluetooth.h 2001/02/15 16:28:46 1.33 +++ bluetooth.h 2001/02/27 17:15:32 1.34 @@ -75,6 +75,7 @@ =20 void bt_connect_ind(u32 con_id); void bt_disconnect_ind(u32 con_id); +void bt_disconnect_cfm(u32 con_id, s32 status); =20 /******************/ /* Misc functions */ @@ -83,6 +84,13 @@ s32 bt_initiated(void); void bt_connect_cfm(u32 con_id, s32 status); s32 bt_sprint_status(u8 *buf); + +/* Handles wakeup of failed blocking function calls */ + +void start_wq_timer(struct timer_list *wq_timer, + u32 timeout, struct wait_queue **wq); +static void release_wq_timer(struct timer_list *wq_timer); +static void wq_timeout(unsigned long ptr); =20 #endif /****************** END OF FILE bluetooth.h ******************************= ***/ |
From: Gordon M. <gm...@us...> - 2001-03-07 18:12:06
|
The following file was modified in linux/include/linux/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- bluetooth.h 1.36 1.37=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: --Added __init & __exit to module init & cleanup routines. The code is now = properly initialized when included as part of a 2.4 kernel. The diff of the modified file(s): --- bluetooth.h 2001/03/01 00:31:05 1.36 +++ bluetooth.h 2001/03/07 18:13:48 1.37 @@ -59,7 +59,9 @@ /* Init, shutdown and registration */ /***********************************/ =20 +#if !defined(MODULE) && !defined(__KERNEL__) s32 bt_init(void); +#endif =20 s32 bt_register_rfcomm(rfcomm_con *rfcomm, u8 dlci); s32 bt_unregister_rfcomm(s32 line); |
From: Mattias A. <mat...@us...> - 2001-03-30 10:51:54
|
The following file was modified in linux/include/linux/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- bluetooth.h 1.37 1.38=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: added release_wq_timer The diff of the modified file(s): --- bluetooth.h 2001/03/07 18:13:48 1.37 +++ bluetooth.h 2001/03/30 10:51:53 1.38 @@ -99,7 +99,9 @@ #else void start_wq_timer(struct timer_list *wq_timer, u32 timeout, struct wait_queue **wq); + #endif /* LINUX_VERSION_CODE */ +void release_wq_timer(struct timer_list *wq_timer); #endif /* __KERNEL__ */ =20 #endif |
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); |
From: Mattias A. <mat...@us...> - 2001-06-06 14:59:09
|
The following file was modified in linux/include/linux/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- bluetooth.h 1.40 1.41=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: * Added bt_reset_phys_hw function The diff of the modified file(s): --- bluetooth.h 2001/05/22 09:45:53 1.40 +++ bluetooth.h 2001/06/06 14:59:08 1.41 @@ -92,6 +92,7 @@ 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); +void bt_reset_phys_hw(void); =20 /* Handles wakeup of failed blocking function calls */ #ifdef __KERNEL__ |
From: Mattias A. <mat...@us...> - 2001-06-13 12:39:23
|
The following file was modified in linux/include/linux/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- bluetooth.h 1.41 1.42=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: * added bt_wait_tx The diff of the modified file(s): --- bluetooth.h 2001/06/06 14:59:08 1.41 +++ bluetooth.h 2001/06/13 12:13:50 1.42 @@ -78,6 +78,7 @@ void bt_shutdown(void); void bt_hangupline(s32 line); void bt_feedstack(void); +void bt_wait_tx(s32 trim_delay); =20 void bt_connect_ind(u32 con_id); void bt_disconnect_ind(u32 con_id); |
From: Anders J. <and...@us...> - 2001-11-15 15:02:37
|
The following file was modified in linux/include/linux/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- bluetooth.h 1.46 1.47=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: * Added bt_handle_hw_error The diff of the modified file(s): --- bluetooth.h 2001/09/18 10:48:22 1.46 +++ bluetooth.h 2001/11/15 15:02:37 1.47 @@ -96,6 +96,7 @@ s32 bt_sprint_status(u8 *buf); void bt_send_sdp_data_received(u8 line, u8 *data, int len); void bt_reset_phys_hw(void); +void bt_handle_hw_error(u8 error); =20 /* Handles wakeup of failed blocking function calls */ #ifdef __KERNEL__ |
From: Alain P. <apa...@us...> - 2002-07-31 08:21:47
|
The following file was modified in linux/include/linux/bluetooth: Name Old version New version Tag Comment ---- ----------- ----------- --- ------- bluetooth.h 1.48 1.49=20=20=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Added a new proc file. This profile is only for read, and is blocking. When a new connection from remote device happen, it recieve next informatio= n : <line>:<server channel> Note that it recieves the same thing when we localy initiate the connection. proc file : bt_channel_con The diff of the modified file(s): --- bluetooth.h 22 Nov 2001 14:06:20 -0000 1.48 +++ bluetooth.h 31 Jul 2002 08:21:16 -0000 1.49 @@ -85,6 +85,12 @@ void bt_disconnect_ind(u32 con_id); void bt_disconnect_cfm(u32 con_id, s32 status); =20 +#ifdef __KERNEL__ +#ifdef CONFIG_BLUETOOTH_PROC +s32 channel_con_create_proc_file(void); +#endif /* CONFIG_BLUETOOTH_PROC */ +#endif /* __KERNEL__ */ + /******************/ /* Misc functions */ /******************/ |