|
From: Peter K. <pk...@us...> - 2001-10-05 12:06:43
|
The following files were modified in linux/include/linux/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- hci.h 1.71 1.72=20=20=20=20=20=20=20=20=20=20=20=20 rfcomm.h 1.39 1.40=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: * Some initialization needs to be done at module start time, not when the stack is initialized. * Initialize (part of) hci even when in DFU mode. The diff of the modified file(s): --- hci.h 2001/10/02 13:44:49 1.71 +++ hci.h 2001/10/05 12:06:43 1.72 @@ -95,6 +95,7 @@ =20 s32 hci_trig_send(void); s32 hci_acl_num_cnt(void); +s32 hci_module_init(void); s32 hci_init(void); void hci_shutdown(void); void hci_clear_buffer(u32 con_hdl); @@ -112,7 +113,7 @@ =20 s32 hci_read_dfu(u8* data, u32 count); =20 -void hci_init_dfu(void); +void hci_dfu_module_init(void); void hci_shutdown_dfu(void); #endif =20 --- rfcomm.h 2001/07/31 17:18:44 1.39 +++ rfcomm.h 2001/10/05 12:06:43 1.40 @@ -189,6 +189,7 @@ =20 /****************** EXPORTED FUNCTION DECLARATION SECTION ****************= ***/ =20 +s32 rfcomm_module_init(void); void rfcomm_init(void); void rfcomm_close(void); s32 rfcomm_connect_req(u8* bd_addr, u8 server_chan, u8 line); |