|
From: Fredrik S. <fre...@us...> - 2002-03-13 09:56:12
|
The following file was modified in linux/drivers/char/bluetooth:
Name Old version New version Tag Comment
---- ----------- ----------- --- -------
bnep.c 1.11 1.12=20=20=20=20=20=20=20=20=20=20=20=20=20=20
The accompanying log:
Disabled a debug printout.
The diff of the modified file(s):
--- bnep.c 8 Mar 2002 09:41:42 -0000 1.11
+++ bnep.c 13 Mar 2002 09:56:11 -0000 1.12
@@ -339,7 +339,7 @@
{
struct sockaddr *addr =3D p;
memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
- DSYS("%s: changed MAC to %02x:%02x:%02x:%02x:%02x:%02x\n", dev->name,
+ D_MISC("%s: changed MAC to %02x:%02x:%02x:%02x:%02x:%02x\n", dev->name,
dev->dev_addr[0], dev->dev_addr[1], dev->dev_addr[2],=20
dev->dev_addr[3], dev->dev_addr[4], dev->dev_addr[5]);
return 0;
@@ -599,7 +599,7 @@
=20
D_XMIT("buflen %i\n",buflen);
if (buf_write_room() < buflen) {
- D_ERR(__FUNCTION__": not enough room for a %d byte bt_tx_buf\n", skb->le=
n);
+ D_XMIT(__FUNCTION__": not enough room for a %d byte bt_tx_buf\n", skb->l=
en);
/* don't necessarily need to discard the buffer; could set dev->tbusy =
=3D 1
and then start a timer to check for free buffer space */
local->stats.tx_dropped++;
|