|
From: Ulf H. <ul...@us...> - 2001-03-26 14:58:28
|
The following file was modified in linux/drivers/char/bluetooth:
Name Old version New version Comment
---- ----------- ----------- -------
hci.c 1.133 1.134=20=20=20=20=20=20=20=20=20=20=20
The accompanying log:
Chenged the return parameters for the HCI event READ_STORED_LINK_KEY.
It now also returns both the current number of stored link keys and
the total capacity (storage space for link keys)
The diff of the modified file(s):
--- hci.c 2001/03/21 11:53:09 1.133
+++ hci.c 2001/03/26 14:58:26 1.134
@@ -1051,7 +1051,8 @@
result_param =3D - r_val[0];
} else {
D_CMD(__FUNCTION__", READ_STORED_LINK_KEY Success\n");
- result_param =3D CHAR2INT16(r_val[4], r_val[3]);
+ result_param =3D CHAR2INT32(r_val[4], r_val[3],
+ r_val[2], r_val[=
1]);
}
D_CMD(__FUNCTION__", Max number of Linkkeys: %d\n",
CHAR2INT16(r_val[2], r_val[1]));
|