|
From: Anders J. <and...@us...> - 2001-10-16 16:25:00
|
The following files were modified in linux/include/linux/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- bt_errno.h 1.4 1.5=20=20=20=20=20=20=20=20=20=20=20=20=20 test.h 1.10 1.11=20=20=20=20=20=20=20=20=20=20=20=20 unplug_test.h 1.2 1.3=20=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: * Changed functions to return a value. * Added HCI_INQUIRY_FAILED The diff of the modified file(s): --- bt_errno.h 2001/10/12 12:03:45 1.4 +++ bt_errno.h 2001/10/16 16:24:51 1.5 @@ -107,3 +107,4 @@ #define BT_ALREADYCONNECTED 0x2 #define BT_TIMEOUT 0x3 #define BT_LINE_BUSY 0x4 +#define BT_INQ_FAILED 0x5 --- test.h 2001/08/27 15:42:37 1.10 +++ test.h 2001/10/16 16:24:51 1.11 @@ -76,7 +76,7 @@ void test_disconnect_cfm(l2cap_con *l2cap); void test_receive_data(l2cap_con *l2cap, u8 *data, u32 len); s32 test_send_data(l2cap_con *con, u8 *testdata, s32 len); -void test_process_cmd(u8 *cmd, s32 size); +s32 test_process_cmd(u8 *cmd, s32 size); =20 #endif /****************** END OF FILE sdp.h ************************************= ***/ --- unplug_test.h 2001/08/27 15:42:00 1.2 +++ unplug_test.h 2001/10/16 16:24:50 1.3 @@ -44,7 +44,7 @@ =20 =20 void unplug_test_init(void); -void process_test_cmd(s32 test_case); -void do_sdp_test(int n); +s32 process_test_cmd(s32 test_case); +s32 do_sdp_test(int n); =20 #endif |