From: Peter K. <pk...@us...> - 2001-05-18 16:04:17
|
The following file was modified in linux/include/linux/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- bcsp.h 1.4 1.5=20=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Made all global function names start with bcsp_. The diff of the modified file(s): --- bcsp.h 2001/05/18 09:14:21 1.4 +++ bcsp.h 2001/05/18 16:04:16 1.5 @@ -112,38 +112,38 @@ s32 bcsp_write_lower(u8 *data, u32 len); s32 bcsp_receive_top(u8 *data, u32 len, u8 chn); s32 bcsp_receive_lower(u8 *data, u32 len); -void init_bcsp_packet(struct bcsp *bcsp); +void bcsp_init_packet(struct bcsp *bcsp); =20 /************************* functions in slip.c ***************************= ***/ =20 -s32 slip_send(struct bcsp* bcsp); -s32 slip_receive(struct bcsp* bcsp, const u8* packet, u32 len); +s32 bcsp_slip_send(struct bcsp* bcsp); +s32 bcsp_slip_receive(struct bcsp* bcsp, const u8* packet, u32 len); =20 /************************* functions in integrity.c **********************= ****/ =20 -s32 integrity_send(struct bcsp *bcsp); -s32 integrity_receive(struct bcsp *bcsp); +s32 bcsp_integrity_send(struct bcsp *bcsp); +s32 bcsp_integrity_receive(struct bcsp *bcsp); =20 /************************* functions in mux.c ****************************= ***/ =20 -s32 mux_send(struct bcsp *bcsp); -s32 mux_receive(struct bcsp *bcsp); -s32 mux_send(struct bcsp *bcsp); -s32 send_txack(u8 txack); +s32 bcsp_mux_send(struct bcsp *bcsp); +s32 bcsp_mux_receive(struct bcsp *bcsp); +s32 bcsp_mux_send(struct bcsp *bcsp); +s32 bcsp_send_txack(u8 txack); =20 /************************* functions in sequence.c ***********************= ***/ =20 -void sequence_init(void); -void sequence_shutdown(void); -s32 sequence_receive(struct bcsp *bcsp); -s32 sequence_send(u8 *data, u32 len, u8 chn); -void signal_rxack(u8 ack); +void bcsp_sequence_init(void); +void bcsp_sequence_shutdown(void); +s32 bcsp_sequence_receive(struct bcsp *bcsp); +s32 bcsp_sequence_send(u8 *data, u32 len, u8 chn); +void bcsp_signal_rxack(u8 ack); =20 /************************* functions in datagram.c ***********************= ****/ =20 -s32 datagram_receive(struct bcsp *bcsp); -s32 datagram_send(u8 *data, u32 len, u8 chn); -s32 send_sync(void); +s32 bcsp_datagram_receive(struct bcsp *bcsp); +s32 bcsp_datagram_send(u8 *data, u32 len, u8 chn); +s32 bcsp_send_sync(void); =20 #endif /****************** END OF FILE bcsp.h ***********************************= ***/ |