From: Peter K. <pk...@us...> - 2001-04-19 10:31:35
|
The following file was modified in linux/include/linux/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- l2cap_con.h 1.5 1.6=20=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: * Renamed free_list() to free_con_list(). * Redefined FLAG_* defines to more sensible values. The diff of the modified file(s): --- l2cap_con.h 2001/03/30 09:45:06 1.5 +++ l2cap_con.h 2001/04/19 10:31:34 1.6 @@ -60,11 +60,10 @@ /****************** TYPE DEFINITION SECTION ******************************= ***/ =20 /* con->c_flags */ -#define FLAG_WAKEMEUP 0x1 /* wake up con->wq */ -#define FLAG_RETURNNOW 2 /* return immediately, used when setting up=20 +#define FLAG_WAKEMEUP 0x0001 /* wake up con->wq */ +#define FLAG_RETURNNOW 0x0002 /* return immediately, used when setting up= =20 baseband */ -#define FLAG_DONTSLEEP (2<<2) /* used when e.g ertx_timeout calls disc req= */ -#define FLAG_SOMETHING (2<<3) /* ??? */ +#define FLAG_DONTSLEEP 0x0004 /* used when e.g ertx_timeout calls disc req= */ =20 /* con->c_status */ #define CSTATUS_SUCCESS 0 /* return status success to upper caller */ @@ -82,7 +81,7 @@ /*********************************************************************/ =20 void init_con_list(void); -void free_list(void); +void free_con_list(void); =20 l2cap_con* create_con(u16 hci_hdl, CID lcid, CID rcid); s32 delete_con(l2cap_con *con); |