|
From: Mattias A. <mat...@us...> - 2001-06-06 16:28:02
|
The following file was modified in linux/drivers/char/bluetooth:
Name Old version New version Comment
---- ----------- ----------- -------
hci_vendor.c 1.42 1.43=20=20=20=20=20=20=20=20=20=20=20=20
The accompanying log:
* added more debug when setting ps keys
The diff of the modified file(s):
--- hci_vendor.c 2001/06/06 14:53:41 1.42
+++ hci_vendor.c 2001/06/06 16:28:01 1.43
@@ -563,7 +563,7 @@
break;
=20=09=09=09=09
case CSR_CMD_PS:
- printk("ps key[0x%x] ", ps->ps_key);
+ printk(__FUNCTION__": ps key[0x%x] ", ps->ps_key);
print_data("", (u8*)ps->ps_val, ps->ps_len*sizeof(u16));
=20=09=09=09=09
/* Now copy this data to return buf */
@@ -689,7 +689,8 @@
csr_bccmd *cmd;
csr_bccmd_ps *ps;
=20
- printk(__FUNCTION__" : ps 0x%x\n", ps_key);=09
+ printk(__FUNCTION__" : ps_key 0x%x [%d]\n", ps_key, rw_mode);=09
+ print_data("pars : ", (u8*)retb, n_pars*sizeof(u16));
=20
/* HCI Manufacturer specific header */
c_pkt.type =3D CMD_PKT;
@@ -1005,7 +1006,7 @@
break;
=20
case CSR_CMD_PS:
- printk("ps key[0x%x] ", ps->ps_key);
+ printk(__FUNCTION__": ps key[0x%x] ", ps->ps_key);
print_data("", (u8*)ps->ps_val, ps->ps_len*sizeof(u16));
=20=09=09=09=09
/* Now copy this data to return buf */
|