|
From: Peter K. <pk...@us...> - 2001-06-05 09:48:16
|
The following file was modified in linux/drivers/char/bluetooth:
Name Old version New version Comment
---- ----------- ----------- -------
hci.c 1.152 1.153=20=20=20=20=20=20=20=20=20=20=20
The accompanying log:
Removed a line of unnecessary code.
The diff of the modified file(s):
--- hci.c 2001/06/05 09:19:34 1.152
+++ hci.c 2001/06/05 09:48:16 1.153
@@ -702,7 +702,7 @@
void
update_ncp(u8 nbr_of_hdl, u8 *pkt)
{
- s32 i, tmp;
+ s32 i;
=20
D_REC(__FUNCTION__", acl_num before : %d\n", hci_ctrl.hc_buf.acl_num);
=20=09
@@ -712,7 +712,6 @@
that have been sent */
=20
for (i =3D 0; i < 4 * nbr_of_hdl; i +=3D 4) {
- tmp =3D CHAR2INT16(pkt[i+3], pkt[i+2]);
hci_ctrl.hc_buf.acl_num +=3D CHAR2INT16(pkt[i+3], pkt[i+2]);
}
=20=09
|