patch-2.4.23 linux-2.4.23/net/irda/irlmp_frame.c
Next file: linux-2.4.23/net/irda/irnet/irnet.h
Previous file: linux-2.4.23/net/irda/irlap_frame.c
Back to the patch index
Back to the overall index
- Lines: 158
- Date:
2003-11-28 10:26:21.000000000 -0800
- Orig file:
linux-2.4.22/net/irda/irlmp_frame.c
- Orig date:
2002-11-28 15:53:16.000000000 -0800
diff -urN linux-2.4.22/net/irda/irlmp_frame.c linux-2.4.23/net/irda/irlmp_frame.c
@@ -45,7 +45,7 @@
skb->data[1] = slsap;
if (expedited) {
- IRDA_DEBUG(4, __FUNCTION__ "(), sending expedited data\n");
+ IRDA_DEBUG(4, "%s(), sending expedited data\n", __FUNCTION__);
irlap_data_request(self->irlap, skb, TRUE);
} else
irlap_data_request(self->irlap, skb, FALSE);
@@ -61,7 +61,7 @@
{
__u8 *frame;
- IRDA_DEBUG(2, __FUNCTION__ "()\n");
+ IRDA_DEBUG(2, "%s()\n", __FUNCTION__);
ASSERT(self != NULL, return;);
ASSERT(self->magic == LMP_LAP_MAGIC, return;);
@@ -96,7 +96,7 @@
__u8 dlsap_sel; /* Destination LSAP address */
__u8 *fp;
- IRDA_DEBUG(4, __FUNCTION__ "()\n");
+ IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
ASSERT(self != NULL, return;);
ASSERT(self->magic == LMP_LAP_MAGIC, return;);
@@ -116,9 +116,9 @@
* it in a different way than other established connections.
*/
if ((fp[0] & CONTROL_BIT) && (fp[2] == CONNECT_CMD)) {
- IRDA_DEBUG(3, __FUNCTION__ "(), incoming connection, "
+ IRDA_DEBUG(3, "%s(), incoming connection, "
"source LSAP=%d, dest LSAP=%d\n",
- slsap_sel, dlsap_sel);
+ __FUNCTION__, slsap_sel, dlsap_sel);
/* Try to find LSAP among the unconnected LSAPs */
lsap = irlmp_find_lsap(self, dlsap_sel, slsap_sel, CONNECT_CMD,
@@ -126,7 +126,7 @@
/* Maybe LSAP was already connected, so try one more time */
if (!lsap) {
- IRDA_DEBUG(1, __FUNCTION__ "(), incoming connection for LSAP already connected\n");
+ IRDA_DEBUG(1, "%s(), incoming connection for LSAP already connected\n", __FUNCTION__);
lsap = irlmp_find_lsap(self, dlsap_sel, slsap_sel, 0,
self->lsaps);
}
@@ -136,14 +136,12 @@
if (lsap == NULL) {
IRDA_DEBUG(2, "IrLMP, Sorry, no LSAP for received frame!\n");
- IRDA_DEBUG(2, __FUNCTION__
- "(), slsap_sel = %02x, dlsap_sel = %02x\n", slsap_sel,
+ IRDA_DEBUG(2, "%s(), slsap_sel = %02x, dlsap_sel = %02x\n", __FUNCTION__, slsap_sel,
dlsap_sel);
if (fp[0] & CONTROL_BIT) {
- IRDA_DEBUG(2, __FUNCTION__
- "(), received control frame %02x\n", fp[2]);
+ IRDA_DEBUG(2, "%s(), received control frame %02x\n", __FUNCTION__, fp[2]);
} else {
- IRDA_DEBUG(2, __FUNCTION__ "(), received data frame\n");
+ IRDA_DEBUG(2, "%s(), received data frame\n", __FUNCTION__);
}
dev_kfree_skb(skb);
return;
@@ -162,8 +160,7 @@
irlmp_do_lsap_event(lsap, LM_CONNECT_CONFIRM, skb);
break;
case DISCONNECT:
- IRDA_DEBUG(4, __FUNCTION__
- "(), Disconnect indication!\n");
+ IRDA_DEBUG(4, "%s(), Disconnect indication!\n", __FUNCTION__);
irlmp_do_lsap_event(lsap, LM_DISCONNECT_INDICATION,
skb);
break;
@@ -176,8 +173,7 @@
dev_kfree_skb(skb);
break;
default:
- IRDA_DEBUG(0, __FUNCTION__
- "(), Unknown control frame %02x\n", fp[2]);
+ IRDA_DEBUG(0, "%s(), Unknown control frame %02x\n", __FUNCTION__, fp[2]);
dev_kfree_skb(skb);
break;
}
@@ -211,7 +207,7 @@
__u8 pid; /* Protocol identifier */
__u8 *fp;
- IRDA_DEBUG(4, __FUNCTION__ "()\n");
+ IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
ASSERT(self != NULL, return;);
ASSERT(self->magic == LMP_LAP_MAGIC, return;);
@@ -228,7 +224,7 @@
pid = fp[2];
if (pid & 0x80) {
- IRDA_DEBUG(0, __FUNCTION__ "(), extension in PID not supp!\n");
+ IRDA_DEBUG(0, "%s(), extension in PID not supp!\n", __FUNCTION__);
dev_kfree_skb(skb);
return;
@@ -236,7 +232,7 @@
/* Check if frame is addressed to the connectionless LSAP */
if ((slsap_sel != LSAP_CONNLESS) || (dlsap_sel != LSAP_CONNLESS)) {
- IRDA_DEBUG(0, __FUNCTION__ "(), dropping frame!\n");
+ IRDA_DEBUG(0, "%s(), dropping frame!\n", __FUNCTION__);
dev_kfree_skb(skb);
return;
@@ -258,7 +254,7 @@
if (lsap)
irlmp_connless_data_indication(lsap, skb);
else {
- IRDA_DEBUG(0, __FUNCTION__ "(), found no matching LSAP!\n");
+ IRDA_DEBUG(0, "%s(), found no matching LSAP!\n", __FUNCTION__);
dev_kfree_skb(skb);
}
}
@@ -275,7 +271,7 @@
LAP_REASON reason,
struct sk_buff *userdata)
{
- IRDA_DEBUG(2, __FUNCTION__ "()\n");
+ IRDA_DEBUG(2, "%s()\n", __FUNCTION__);
ASSERT(lap != NULL, return;);
ASSERT(lap->magic == LMP_LAP_MAGIC, return;);
@@ -303,7 +299,7 @@
__u32 daddr, struct qos_info *qos,
struct sk_buff *skb)
{
- IRDA_DEBUG(4, __FUNCTION__ "()\n");
+ IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
/* Copy QoS settings for this session */
self->qos = qos;
@@ -324,7 +320,7 @@
void irlmp_link_connect_confirm(struct lap_cb *self, struct qos_info *qos,
struct sk_buff *userdata)
{
- IRDA_DEBUG(4, __FUNCTION__ "()\n");
+ IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
ASSERT(self != NULL, return;);
ASSERT(self->magic == LMP_LAP_MAGIC, return;);
@@ -391,7 +387,7 @@
*/
void irlmp_link_discovery_confirm(struct lap_cb *self, hashbin_t *log)
{
- IRDA_DEBUG(4, __FUNCTION__ "()\n");
+ IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
ASSERT(self != NULL, return;);
ASSERT(self->magic == LMP_LAP_MAGIC, return;);
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)