net: replace remaining __FUNCTION__ occurrences
__FUNCTION__ is gcc-specific, use __func__ Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
6387c4bed5
commit
0dc47877a3
@@ -85,14 +85,14 @@ static int irda_data_indication(void *instance, void *sap, struct sk_buff *skb)
|
||||
struct sock *sk;
|
||||
int err;
|
||||
|
||||
IRDA_DEBUG(3, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(3, "%s()\n", __func__);
|
||||
|
||||
self = instance;
|
||||
sk = instance;
|
||||
|
||||
err = sock_queue_rcv_skb(sk, skb);
|
||||
if (err) {
|
||||
IRDA_DEBUG(1, "%s(), error: no more mem!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(1, "%s(), error: no more mem!\n", __func__);
|
||||
self->rx_flow = FLOW_STOP;
|
||||
|
||||
/* When we return error, TTP will need to requeue the skb */
|
||||
@@ -116,7 +116,7 @@ static void irda_disconnect_indication(void *instance, void *sap,
|
||||
|
||||
self = instance;
|
||||
|
||||
IRDA_DEBUG(2, "%s(%p)\n", __FUNCTION__, self);
|
||||
IRDA_DEBUG(2, "%s(%p)\n", __func__, self);
|
||||
|
||||
/* Don't care about it, but let's not leak it */
|
||||
if(skb)
|
||||
@@ -125,7 +125,7 @@ static void irda_disconnect_indication(void *instance, void *sap,
|
||||
sk = instance;
|
||||
if (sk == NULL) {
|
||||
IRDA_DEBUG(0, "%s(%p) : BUG : sk is NULL\n",
|
||||
__FUNCTION__, self);
|
||||
__func__, self);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -181,7 +181,7 @@ static void irda_connect_confirm(void *instance, void *sap,
|
||||
|
||||
self = instance;
|
||||
|
||||
IRDA_DEBUG(2, "%s(%p)\n", __FUNCTION__, self);
|
||||
IRDA_DEBUG(2, "%s(%p)\n", __func__, self);
|
||||
|
||||
sk = instance;
|
||||
if (sk == NULL) {
|
||||
@@ -203,7 +203,7 @@ static void irda_connect_confirm(void *instance, void *sap,
|
||||
case SOCK_STREAM:
|
||||
if (max_sdu_size != 0) {
|
||||
IRDA_ERROR("%s: max_sdu_size must be 0\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
return;
|
||||
}
|
||||
self->max_data_size = irttp_get_max_seg_size(self->tsap);
|
||||
@@ -211,7 +211,7 @@ static void irda_connect_confirm(void *instance, void *sap,
|
||||
case SOCK_SEQPACKET:
|
||||
if (max_sdu_size == 0) {
|
||||
IRDA_ERROR("%s: max_sdu_size cannot be 0\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
return;
|
||||
}
|
||||
self->max_data_size = max_sdu_size;
|
||||
@@ -220,7 +220,7 @@ static void irda_connect_confirm(void *instance, void *sap,
|
||||
self->max_data_size = irttp_get_max_seg_size(self->tsap);
|
||||
}
|
||||
|
||||
IRDA_DEBUG(2, "%s(), max_data_size=%d\n", __FUNCTION__,
|
||||
IRDA_DEBUG(2, "%s(), max_data_size=%d\n", __func__,
|
||||
self->max_data_size);
|
||||
|
||||
memcpy(&self->qos_tx, qos, sizeof(struct qos_info));
|
||||
@@ -245,7 +245,7 @@ static void irda_connect_indication(void *instance, void *sap,
|
||||
|
||||
self = instance;
|
||||
|
||||
IRDA_DEBUG(2, "%s(%p)\n", __FUNCTION__, self);
|
||||
IRDA_DEBUG(2, "%s(%p)\n", __func__, self);
|
||||
|
||||
sk = instance;
|
||||
if (sk == NULL) {
|
||||
@@ -264,7 +264,7 @@ static void irda_connect_indication(void *instance, void *sap,
|
||||
case SOCK_STREAM:
|
||||
if (max_sdu_size != 0) {
|
||||
IRDA_ERROR("%s: max_sdu_size must be 0\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
kfree_skb(skb);
|
||||
return;
|
||||
}
|
||||
@@ -273,7 +273,7 @@ static void irda_connect_indication(void *instance, void *sap,
|
||||
case SOCK_SEQPACKET:
|
||||
if (max_sdu_size == 0) {
|
||||
IRDA_ERROR("%s: max_sdu_size cannot be 0\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
kfree_skb(skb);
|
||||
return;
|
||||
}
|
||||
@@ -283,7 +283,7 @@ static void irda_connect_indication(void *instance, void *sap,
|
||||
self->max_data_size = irttp_get_max_seg_size(self->tsap);
|
||||
}
|
||||
|
||||
IRDA_DEBUG(2, "%s(), max_data_size=%d\n", __FUNCTION__,
|
||||
IRDA_DEBUG(2, "%s(), max_data_size=%d\n", __func__,
|
||||
self->max_data_size);
|
||||
|
||||
memcpy(&self->qos_tx, qos, sizeof(struct qos_info));
|
||||
@@ -302,13 +302,13 @@ static void irda_connect_response(struct irda_sock *self)
|
||||
{
|
||||
struct sk_buff *skb;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(2, "%s()\n", __func__);
|
||||
|
||||
skb = alloc_skb(TTP_MAX_HEADER + TTP_SAR_HEADER,
|
||||
GFP_ATOMIC);
|
||||
if (skb == NULL) {
|
||||
IRDA_DEBUG(0, "%s() Unable to allocate sk_buff!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -329,7 +329,7 @@ static void irda_flow_indication(void *instance, void *sap, LOCAL_FLOW flow)
|
||||
struct irda_sock *self;
|
||||
struct sock *sk;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(2, "%s()\n", __func__);
|
||||
|
||||
self = instance;
|
||||
sk = instance;
|
||||
@@ -338,17 +338,17 @@ static void irda_flow_indication(void *instance, void *sap, LOCAL_FLOW flow)
|
||||
switch (flow) {
|
||||
case FLOW_STOP:
|
||||
IRDA_DEBUG(1, "%s(), IrTTP wants us to slow down\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
self->tx_flow = flow;
|
||||
break;
|
||||
case FLOW_START:
|
||||
self->tx_flow = flow;
|
||||
IRDA_DEBUG(1, "%s(), IrTTP wants us to start again\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
wake_up_interruptible(sk->sk_sleep);
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(0, "%s(), Unknown flow command!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s(), Unknown flow command!\n", __func__);
|
||||
/* Unknown flow command, better stop */
|
||||
self->tx_flow = flow;
|
||||
break;
|
||||
@@ -370,11 +370,11 @@ static void irda_getvalue_confirm(int result, __u16 obj_id,
|
||||
|
||||
self = (struct irda_sock *) priv;
|
||||
if (!self) {
|
||||
IRDA_WARNING("%s: lost myself!\n", __FUNCTION__);
|
||||
IRDA_WARNING("%s: lost myself!\n", __func__);
|
||||
return;
|
||||
}
|
||||
|
||||
IRDA_DEBUG(2, "%s(%p)\n", __FUNCTION__, self);
|
||||
IRDA_DEBUG(2, "%s(%p)\n", __func__, self);
|
||||
|
||||
/* We probably don't need to make any more queries */
|
||||
iriap_close(self->iriap);
|
||||
@@ -382,7 +382,7 @@ static void irda_getvalue_confirm(int result, __u16 obj_id,
|
||||
|
||||
/* Check if request succeeded */
|
||||
if (result != IAS_SUCCESS) {
|
||||
IRDA_DEBUG(1, "%s(), IAS query failed! (%d)\n", __FUNCTION__,
|
||||
IRDA_DEBUG(1, "%s(), IAS query failed! (%d)\n", __func__,
|
||||
result);
|
||||
|
||||
self->errno = result; /* We really need it later */
|
||||
@@ -415,11 +415,11 @@ static void irda_selective_discovery_indication(discinfo_t *discovery,
|
||||
{
|
||||
struct irda_sock *self;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(2, "%s()\n", __func__);
|
||||
|
||||
self = (struct irda_sock *) priv;
|
||||
if (!self) {
|
||||
IRDA_WARNING("%s: lost myself!\n", __FUNCTION__);
|
||||
IRDA_WARNING("%s: lost myself!\n", __func__);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -442,7 +442,7 @@ static void irda_discovery_timeout(u_long priv)
|
||||
{
|
||||
struct irda_sock *self;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(2, "%s()\n", __func__);
|
||||
|
||||
self = (struct irda_sock *) priv;
|
||||
BUG_ON(self == NULL);
|
||||
@@ -467,7 +467,7 @@ static int irda_open_tsap(struct irda_sock *self, __u8 tsap_sel, char *name)
|
||||
notify_t notify;
|
||||
|
||||
if (self->tsap) {
|
||||
IRDA_WARNING("%s: busy!\n", __FUNCTION__);
|
||||
IRDA_WARNING("%s: busy!\n", __func__);
|
||||
return -EBUSY;
|
||||
}
|
||||
|
||||
@@ -486,7 +486,7 @@ static int irda_open_tsap(struct irda_sock *self, __u8 tsap_sel, char *name)
|
||||
¬ify);
|
||||
if (self->tsap == NULL) {
|
||||
IRDA_DEBUG(0, "%s(), Unable to allocate TSAP!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
return -ENOMEM;
|
||||
}
|
||||
/* Remember which TSAP selector we actually got */
|
||||
@@ -507,7 +507,7 @@ static int irda_open_lsap(struct irda_sock *self, int pid)
|
||||
notify_t notify;
|
||||
|
||||
if (self->lsap) {
|
||||
IRDA_WARNING("%s(), busy!\n", __FUNCTION__);
|
||||
IRDA_WARNING("%s(), busy!\n", __func__);
|
||||
return -EBUSY;
|
||||
}
|
||||
|
||||
@@ -519,7 +519,7 @@ static int irda_open_lsap(struct irda_sock *self, int pid)
|
||||
|
||||
self->lsap = irlmp_open_lsap(LSAP_CONNLESS, ¬ify, pid);
|
||||
if (self->lsap == NULL) {
|
||||
IRDA_DEBUG( 0, "%s(), Unable to allocate LSAP!\n", __FUNCTION__);
|
||||
IRDA_DEBUG( 0, "%s(), Unable to allocate LSAP!\n", __func__);
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
@@ -540,11 +540,11 @@ static int irda_open_lsap(struct irda_sock *self, int pid)
|
||||
*/
|
||||
static int irda_find_lsap_sel(struct irda_sock *self, char *name)
|
||||
{
|
||||
IRDA_DEBUG(2, "%s(%p, %s)\n", __FUNCTION__, self, name);
|
||||
IRDA_DEBUG(2, "%s(%p, %s)\n", __func__, self, name);
|
||||
|
||||
if (self->iriap) {
|
||||
IRDA_WARNING("%s(): busy with a previous query\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
return -EBUSY;
|
||||
}
|
||||
|
||||
@@ -580,7 +580,7 @@ static int irda_find_lsap_sel(struct irda_sock *self, char *name)
|
||||
switch (self->ias_result->type) {
|
||||
case IAS_INTEGER:
|
||||
IRDA_DEBUG(4, "%s() int=%d\n",
|
||||
__FUNCTION__, self->ias_result->t.integer);
|
||||
__func__, self->ias_result->t.integer);
|
||||
|
||||
if (self->ias_result->t.integer != -1)
|
||||
self->dtsap_sel = self->ias_result->t.integer;
|
||||
@@ -589,7 +589,7 @@ static int irda_find_lsap_sel(struct irda_sock *self, char *name)
|
||||
break;
|
||||
default:
|
||||
self->dtsap_sel = 0;
|
||||
IRDA_DEBUG(0, "%s(), bad type!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s(), bad type!\n", __func__);
|
||||
break;
|
||||
}
|
||||
if (self->ias_result)
|
||||
@@ -627,7 +627,7 @@ static int irda_discover_daddr_and_lsap_sel(struct irda_sock *self, char *name)
|
||||
__u32 daddr = DEV_ADDR_ANY; /* Address we found the service on */
|
||||
__u8 dtsap_sel = 0x0; /* TSAP associated with it */
|
||||
|
||||
IRDA_DEBUG(2, "%s(), name=%s\n", __FUNCTION__, name);
|
||||
IRDA_DEBUG(2, "%s(), name=%s\n", __func__, name);
|
||||
|
||||
/* Ask lmp for the current discovery log
|
||||
* Note : we have to use irlmp_get_discoveries(), as opposed
|
||||
@@ -649,7 +649,7 @@ static int irda_discover_daddr_and_lsap_sel(struct irda_sock *self, char *name)
|
||||
self->daddr = discoveries[i].daddr;
|
||||
self->saddr = 0x0;
|
||||
IRDA_DEBUG(1, "%s(), trying daddr = %08x\n",
|
||||
__FUNCTION__, self->daddr);
|
||||
__func__, self->daddr);
|
||||
|
||||
/* Query remote LM-IAS for this service */
|
||||
err = irda_find_lsap_sel(self, name);
|
||||
@@ -658,7 +658,7 @@ static int irda_discover_daddr_and_lsap_sel(struct irda_sock *self, char *name)
|
||||
/* We found the requested service */
|
||||
if(daddr != DEV_ADDR_ANY) {
|
||||
IRDA_DEBUG(1, "%s(), discovered service ''%s'' in two different devices !!!\n",
|
||||
__FUNCTION__, name);
|
||||
__func__, name);
|
||||
self->daddr = DEV_ADDR_ANY;
|
||||
kfree(discoveries);
|
||||
return(-ENOTUNIQ);
|
||||
@@ -672,7 +672,7 @@ static int irda_discover_daddr_and_lsap_sel(struct irda_sock *self, char *name)
|
||||
break;
|
||||
default:
|
||||
/* Something bad did happen :-( */
|
||||
IRDA_DEBUG(0, "%s(), unexpected IAS query failure\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s(), unexpected IAS query failure\n", __func__);
|
||||
self->daddr = DEV_ADDR_ANY;
|
||||
kfree(discoveries);
|
||||
return(-EHOSTUNREACH);
|
||||
@@ -685,7 +685,7 @@ static int irda_discover_daddr_and_lsap_sel(struct irda_sock *self, char *name)
|
||||
/* Check out what we found */
|
||||
if(daddr == DEV_ADDR_ANY) {
|
||||
IRDA_DEBUG(1, "%s(), cannot discover service ''%s'' in any device !!!\n",
|
||||
__FUNCTION__, name);
|
||||
__func__, name);
|
||||
self->daddr = DEV_ADDR_ANY;
|
||||
return(-EADDRNOTAVAIL);
|
||||
}
|
||||
@@ -696,7 +696,7 @@ static int irda_discover_daddr_and_lsap_sel(struct irda_sock *self, char *name)
|
||||
self->dtsap_sel = dtsap_sel;
|
||||
|
||||
IRDA_DEBUG(1, "%s(), discovered requested service ''%s'' at address %08x\n",
|
||||
__FUNCTION__, name, self->daddr);
|
||||
__func__, name, self->daddr);
|
||||
|
||||
return 0;
|
||||
}
|
||||
@@ -727,8 +727,8 @@ static int irda_getname(struct socket *sock, struct sockaddr *uaddr,
|
||||
saddr.sir_addr = self->saddr;
|
||||
}
|
||||
|
||||
IRDA_DEBUG(1, "%s(), tsap_sel = %#x\n", __FUNCTION__, saddr.sir_lsap_sel);
|
||||
IRDA_DEBUG(1, "%s(), addr = %08x\n", __FUNCTION__, saddr.sir_addr);
|
||||
IRDA_DEBUG(1, "%s(), tsap_sel = %#x\n", __func__, saddr.sir_lsap_sel);
|
||||
IRDA_DEBUG(1, "%s(), addr = %08x\n", __func__, saddr.sir_addr);
|
||||
|
||||
/* uaddr_len come to us uninitialised */
|
||||
*uaddr_len = sizeof (struct sockaddr_irda);
|
||||
@@ -747,7 +747,7 @@ static int irda_listen(struct socket *sock, int backlog)
|
||||
{
|
||||
struct sock *sk = sock->sk;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(2, "%s()\n", __func__);
|
||||
|
||||
if ((sk->sk_type != SOCK_STREAM) && (sk->sk_type != SOCK_SEQPACKET) &&
|
||||
(sk->sk_type != SOCK_DGRAM))
|
||||
@@ -776,7 +776,7 @@ static int irda_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
|
||||
struct irda_sock *self = irda_sk(sk);
|
||||
int err;
|
||||
|
||||
IRDA_DEBUG(2, "%s(%p)\n", __FUNCTION__, self);
|
||||
IRDA_DEBUG(2, "%s(%p)\n", __func__, self);
|
||||
|
||||
if (addr_len != sizeof(struct sockaddr_irda))
|
||||
return -EINVAL;
|
||||
@@ -787,7 +787,7 @@ static int irda_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
|
||||
(sk->sk_protocol == IRDAPROTO_ULTRA)) {
|
||||
self->pid = addr->sir_lsap_sel;
|
||||
if (self->pid & 0x80) {
|
||||
IRDA_DEBUG(0, "%s(), extension in PID not supp!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s(), extension in PID not supp!\n", __func__);
|
||||
return -EOPNOTSUPP;
|
||||
}
|
||||
err = irda_open_lsap(self, self->pid);
|
||||
@@ -835,7 +835,7 @@ static int irda_accept(struct socket *sock, struct socket *newsock, int flags)
|
||||
struct sk_buff *skb;
|
||||
int err;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(2, "%s()\n", __func__);
|
||||
|
||||
err = irda_create(sk->sk_net, newsock, sk->sk_protocol);
|
||||
if (err)
|
||||
@@ -893,7 +893,7 @@ static int irda_accept(struct socket *sock, struct socket *newsock, int flags)
|
||||
/* Now attach up the new socket */
|
||||
new->tsap = irttp_dup(self->tsap, new);
|
||||
if (!new->tsap) {
|
||||
IRDA_DEBUG(0, "%s(), dup failed!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s(), dup failed!\n", __func__);
|
||||
kfree_skb(skb);
|
||||
return -1;
|
||||
}
|
||||
@@ -954,7 +954,7 @@ static int irda_connect(struct socket *sock, struct sockaddr *uaddr,
|
||||
struct irda_sock *self = irda_sk(sk);
|
||||
int err;
|
||||
|
||||
IRDA_DEBUG(2, "%s(%p)\n", __FUNCTION__, self);
|
||||
IRDA_DEBUG(2, "%s(%p)\n", __func__, self);
|
||||
|
||||
/* Don't allow connect for Ultra sockets */
|
||||
if ((sk->sk_type == SOCK_DGRAM) && (sk->sk_protocol == IRDAPROTO_ULTRA))
|
||||
@@ -984,13 +984,13 @@ static int irda_connect(struct socket *sock, struct sockaddr *uaddr,
|
||||
/* Try to find one suitable */
|
||||
err = irda_discover_daddr_and_lsap_sel(self, addr->sir_name);
|
||||
if (err) {
|
||||
IRDA_DEBUG(0, "%s(), auto-connect failed!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s(), auto-connect failed!\n", __func__);
|
||||
return err;
|
||||
}
|
||||
} else {
|
||||
/* Use the one provided by the user */
|
||||
self->daddr = addr->sir_addr;
|
||||
IRDA_DEBUG(1, "%s(), daddr = %08x\n", __FUNCTION__, self->daddr);
|
||||
IRDA_DEBUG(1, "%s(), daddr = %08x\n", __func__, self->daddr);
|
||||
|
||||
/* If we don't have a valid service name, we assume the
|
||||
* user want to connect on a specific LSAP. Prevent
|
||||
@@ -1000,7 +1000,7 @@ static int irda_connect(struct socket *sock, struct sockaddr *uaddr,
|
||||
/* Query remote LM-IAS using service name */
|
||||
err = irda_find_lsap_sel(self, addr->sir_name);
|
||||
if (err) {
|
||||
IRDA_DEBUG(0, "%s(), connect failed!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s(), connect failed!\n", __func__);
|
||||
return err;
|
||||
}
|
||||
} else {
|
||||
@@ -1025,7 +1025,7 @@ static int irda_connect(struct socket *sock, struct sockaddr *uaddr,
|
||||
self->saddr, self->daddr, NULL,
|
||||
self->max_sdu_size_rx, NULL);
|
||||
if (err) {
|
||||
IRDA_DEBUG(0, "%s(), connect failed!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s(), connect failed!\n", __func__);
|
||||
return err;
|
||||
}
|
||||
|
||||
@@ -1068,7 +1068,7 @@ static int irda_create(struct net *net, struct socket *sock, int protocol)
|
||||
struct sock *sk;
|
||||
struct irda_sock *self;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(2, "%s()\n", __func__);
|
||||
|
||||
if (net != &init_net)
|
||||
return -EAFNOSUPPORT;
|
||||
@@ -1089,7 +1089,7 @@ static int irda_create(struct net *net, struct socket *sock, int protocol)
|
||||
return -ENOMEM;
|
||||
|
||||
self = irda_sk(sk);
|
||||
IRDA_DEBUG(2, "%s() : self is %p\n", __FUNCTION__, self);
|
||||
IRDA_DEBUG(2, "%s() : self is %p\n", __func__, self);
|
||||
|
||||
init_waitqueue_head(&self->query_wait);
|
||||
|
||||
@@ -1149,7 +1149,7 @@ static int irda_create(struct net *net, struct socket *sock, int protocol)
|
||||
*/
|
||||
static void irda_destroy_socket(struct irda_sock *self)
|
||||
{
|
||||
IRDA_DEBUG(2, "%s(%p)\n", __FUNCTION__, self);
|
||||
IRDA_DEBUG(2, "%s(%p)\n", __func__, self);
|
||||
|
||||
/* Unregister with IrLMP */
|
||||
irlmp_unregister_client(self->ckey);
|
||||
@@ -1186,7 +1186,7 @@ static int irda_release(struct socket *sock)
|
||||
{
|
||||
struct sock *sk = sock->sk;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(2, "%s()\n", __func__);
|
||||
|
||||
if (sk == NULL)
|
||||
return 0;
|
||||
@@ -1254,7 +1254,7 @@ static int irda_sendmsg(struct kiocb *iocb, struct socket *sock,
|
||||
struct sk_buff *skb;
|
||||
int err = -EPIPE;
|
||||
|
||||
IRDA_DEBUG(4, "%s(), len=%zd\n", __FUNCTION__, len);
|
||||
IRDA_DEBUG(4, "%s(), len=%zd\n", __func__, len);
|
||||
|
||||
/* Note : socket.c set MSG_EOR on SEQPACKET sockets */
|
||||
if (msg->msg_flags & ~(MSG_DONTWAIT | MSG_EOR | MSG_CMSG_COMPAT |
|
||||
@@ -1282,7 +1282,7 @@ static int irda_sendmsg(struct kiocb *iocb, struct socket *sock,
|
||||
/* Check that we don't send out too big frames */
|
||||
if (len > self->max_data_size) {
|
||||
IRDA_DEBUG(2, "%s(), Chopping frame from %zd to %d bytes!\n",
|
||||
__FUNCTION__, len, self->max_data_size);
|
||||
__func__, len, self->max_data_size);
|
||||
len = self->max_data_size;
|
||||
}
|
||||
|
||||
@@ -1306,7 +1306,7 @@ static int irda_sendmsg(struct kiocb *iocb, struct socket *sock,
|
||||
*/
|
||||
err = irttp_data_request(self->tsap, skb);
|
||||
if (err) {
|
||||
IRDA_DEBUG(0, "%s(), err=%d\n", __FUNCTION__, err);
|
||||
IRDA_DEBUG(0, "%s(), err=%d\n", __func__, err);
|
||||
goto out_err;
|
||||
}
|
||||
/* Tell client how much data we actually sent */
|
||||
@@ -1332,7 +1332,7 @@ static int irda_recvmsg_dgram(struct kiocb *iocb, struct socket *sock,
|
||||
size_t copied;
|
||||
int err;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
if ((err = sock_error(sk)) < 0)
|
||||
return err;
|
||||
@@ -1347,7 +1347,7 @@ static int irda_recvmsg_dgram(struct kiocb *iocb, struct socket *sock,
|
||||
|
||||
if (copied > size) {
|
||||
IRDA_DEBUG(2, "%s(), Received truncated frame (%zd < %zd)!\n",
|
||||
__FUNCTION__, copied, size);
|
||||
__func__, copied, size);
|
||||
copied = size;
|
||||
msg->msg_flags |= MSG_TRUNC;
|
||||
}
|
||||
@@ -1363,7 +1363,7 @@ static int irda_recvmsg_dgram(struct kiocb *iocb, struct socket *sock,
|
||||
*/
|
||||
if (self->rx_flow == FLOW_STOP) {
|
||||
if ((atomic_read(&sk->sk_rmem_alloc) << 2) <= sk->sk_rcvbuf) {
|
||||
IRDA_DEBUG(2, "%s(), Starting IrTTP\n", __FUNCTION__);
|
||||
IRDA_DEBUG(2, "%s(), Starting IrTTP\n", __func__);
|
||||
self->rx_flow = FLOW_START;
|
||||
irttp_flow_request(self->tsap, FLOW_START);
|
||||
}
|
||||
@@ -1385,7 +1385,7 @@ static int irda_recvmsg_stream(struct kiocb *iocb, struct socket *sock,
|
||||
int target, err;
|
||||
long timeo;
|
||||
|
||||
IRDA_DEBUG(3, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(3, "%s()\n", __func__);
|
||||
|
||||
if ((err = sock_error(sk)) < 0)
|
||||
return err;
|
||||
@@ -1459,14 +1459,14 @@ static int irda_recvmsg_stream(struct kiocb *iocb, struct socket *sock,
|
||||
/* put the skb back if we didn't use it up.. */
|
||||
if (skb->len) {
|
||||
IRDA_DEBUG(1, "%s(), back on q!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
skb_queue_head(&sk->sk_receive_queue, skb);
|
||||
break;
|
||||
}
|
||||
|
||||
kfree_skb(skb);
|
||||
} else {
|
||||
IRDA_DEBUG(0, "%s() questionable!?\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s() questionable!?\n", __func__);
|
||||
|
||||
/* put message back and return */
|
||||
skb_queue_head(&sk->sk_receive_queue, skb);
|
||||
@@ -1482,7 +1482,7 @@ static int irda_recvmsg_stream(struct kiocb *iocb, struct socket *sock,
|
||||
*/
|
||||
if (self->rx_flow == FLOW_STOP) {
|
||||
if ((atomic_read(&sk->sk_rmem_alloc) << 2) <= sk->sk_rcvbuf) {
|
||||
IRDA_DEBUG(2, "%s(), Starting IrTTP\n", __FUNCTION__);
|
||||
IRDA_DEBUG(2, "%s(), Starting IrTTP\n", __func__);
|
||||
self->rx_flow = FLOW_START;
|
||||
irttp_flow_request(self->tsap, FLOW_START);
|
||||
}
|
||||
@@ -1506,7 +1506,7 @@ static int irda_sendmsg_dgram(struct kiocb *iocb, struct socket *sock,
|
||||
struct sk_buff *skb;
|
||||
int err;
|
||||
|
||||
IRDA_DEBUG(4, "%s(), len=%zd\n", __FUNCTION__, len);
|
||||
IRDA_DEBUG(4, "%s(), len=%zd\n", __func__, len);
|
||||
|
||||
if (msg->msg_flags & ~(MSG_DONTWAIT|MSG_CMSG_COMPAT))
|
||||
return -EINVAL;
|
||||
@@ -1528,7 +1528,7 @@ static int irda_sendmsg_dgram(struct kiocb *iocb, struct socket *sock,
|
||||
if (len > self->max_data_size) {
|
||||
IRDA_DEBUG(0, "%s(), Warning to much data! "
|
||||
"Chopping frame from %zd to %d bytes!\n",
|
||||
__FUNCTION__, len, self->max_data_size);
|
||||
__func__, len, self->max_data_size);
|
||||
len = self->max_data_size;
|
||||
}
|
||||
|
||||
@@ -1540,7 +1540,7 @@ static int irda_sendmsg_dgram(struct kiocb *iocb, struct socket *sock,
|
||||
skb_reserve(skb, self->max_header_size);
|
||||
skb_reset_transport_header(skb);
|
||||
|
||||
IRDA_DEBUG(4, "%s(), appending user data\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s(), appending user data\n", __func__);
|
||||
skb_put(skb, len);
|
||||
err = memcpy_fromiovec(skb_transport_header(skb), msg->msg_iov, len);
|
||||
if (err) {
|
||||
@@ -1554,7 +1554,7 @@ static int irda_sendmsg_dgram(struct kiocb *iocb, struct socket *sock,
|
||||
*/
|
||||
err = irttp_udata_request(self->tsap, skb);
|
||||
if (err) {
|
||||
IRDA_DEBUG(0, "%s(), err=%d\n", __FUNCTION__, err);
|
||||
IRDA_DEBUG(0, "%s(), err=%d\n", __func__, err);
|
||||
return err;
|
||||
}
|
||||
return len;
|
||||
@@ -1577,7 +1577,7 @@ static int irda_sendmsg_ultra(struct kiocb *iocb, struct socket *sock,
|
||||
struct sk_buff *skb;
|
||||
int err;
|
||||
|
||||
IRDA_DEBUG(4, "%s(), len=%zd\n", __FUNCTION__, len);
|
||||
IRDA_DEBUG(4, "%s(), len=%zd\n", __func__, len);
|
||||
|
||||
if (msg->msg_flags & ~(MSG_DONTWAIT|MSG_CMSG_COMPAT))
|
||||
return -EINVAL;
|
||||
@@ -1600,7 +1600,7 @@ static int irda_sendmsg_ultra(struct kiocb *iocb, struct socket *sock,
|
||||
|
||||
pid = addr->sir_lsap_sel;
|
||||
if (pid & 0x80) {
|
||||
IRDA_DEBUG(0, "%s(), extension in PID not supp!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s(), extension in PID not supp!\n", __func__);
|
||||
return -EOPNOTSUPP;
|
||||
}
|
||||
} else {
|
||||
@@ -1609,7 +1609,7 @@ static int irda_sendmsg_ultra(struct kiocb *iocb, struct socket *sock,
|
||||
if ((self->lsap == NULL) ||
|
||||
(sk->sk_state != TCP_ESTABLISHED)) {
|
||||
IRDA_DEBUG(0, "%s(), socket not bound to Ultra PID.\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
return -ENOTCONN;
|
||||
}
|
||||
/* Use PID from socket */
|
||||
@@ -1623,7 +1623,7 @@ static int irda_sendmsg_ultra(struct kiocb *iocb, struct socket *sock,
|
||||
if (len > self->max_data_size) {
|
||||
IRDA_DEBUG(0, "%s(), Warning to much data! "
|
||||
"Chopping frame from %zd to %d bytes!\n",
|
||||
__FUNCTION__, len, self->max_data_size);
|
||||
__func__, len, self->max_data_size);
|
||||
len = self->max_data_size;
|
||||
}
|
||||
|
||||
@@ -1635,7 +1635,7 @@ static int irda_sendmsg_ultra(struct kiocb *iocb, struct socket *sock,
|
||||
skb_reserve(skb, self->max_header_size);
|
||||
skb_reset_transport_header(skb);
|
||||
|
||||
IRDA_DEBUG(4, "%s(), appending user data\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s(), appending user data\n", __func__);
|
||||
skb_put(skb, len);
|
||||
err = memcpy_fromiovec(skb_transport_header(skb), msg->msg_iov, len);
|
||||
if (err) {
|
||||
@@ -1646,7 +1646,7 @@ static int irda_sendmsg_ultra(struct kiocb *iocb, struct socket *sock,
|
||||
err = irlmp_connless_data_request((bound ? self->lsap : NULL),
|
||||
skb, pid);
|
||||
if (err) {
|
||||
IRDA_DEBUG(0, "%s(), err=%d\n", __FUNCTION__, err);
|
||||
IRDA_DEBUG(0, "%s(), err=%d\n", __func__, err);
|
||||
return err;
|
||||
}
|
||||
return len;
|
||||
@@ -1661,7 +1661,7 @@ static int irda_shutdown(struct socket *sock, int how)
|
||||
struct sock *sk = sock->sk;
|
||||
struct irda_sock *self = irda_sk(sk);
|
||||
|
||||
IRDA_DEBUG(1, "%s(%p)\n", __FUNCTION__, self);
|
||||
IRDA_DEBUG(1, "%s(%p)\n", __func__, self);
|
||||
|
||||
sk->sk_state = TCP_CLOSE;
|
||||
sk->sk_shutdown |= SEND_SHUTDOWN;
|
||||
@@ -1696,7 +1696,7 @@ static unsigned int irda_poll(struct file * file, struct socket *sock,
|
||||
struct irda_sock *self = irda_sk(sk);
|
||||
unsigned int mask;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
poll_wait(file, sk->sk_sleep, wait);
|
||||
mask = 0;
|
||||
@@ -1705,7 +1705,7 @@ static unsigned int irda_poll(struct file * file, struct socket *sock,
|
||||
if (sk->sk_err)
|
||||
mask |= POLLERR;
|
||||
if (sk->sk_shutdown & RCV_SHUTDOWN) {
|
||||
IRDA_DEBUG(0, "%s(), POLLHUP\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s(), POLLHUP\n", __func__);
|
||||
mask |= POLLHUP;
|
||||
}
|
||||
|
||||
@@ -1719,7 +1719,7 @@ static unsigned int irda_poll(struct file * file, struct socket *sock,
|
||||
switch (sk->sk_type) {
|
||||
case SOCK_STREAM:
|
||||
if (sk->sk_state == TCP_CLOSE) {
|
||||
IRDA_DEBUG(0, "%s(), POLLHUP\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s(), POLLHUP\n", __func__);
|
||||
mask |= POLLHUP;
|
||||
}
|
||||
|
||||
@@ -1755,7 +1755,7 @@ static int irda_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
|
||||
{
|
||||
struct sock *sk = sock->sk;
|
||||
|
||||
IRDA_DEBUG(4, "%s(), cmd=%#x\n", __FUNCTION__, cmd);
|
||||
IRDA_DEBUG(4, "%s(), cmd=%#x\n", __func__, cmd);
|
||||
|
||||
switch (cmd) {
|
||||
case TIOCOUTQ: {
|
||||
@@ -1796,7 +1796,7 @@ static int irda_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
|
||||
case SIOCSIFMETRIC:
|
||||
return -EINVAL;
|
||||
default:
|
||||
IRDA_DEBUG(1, "%s(), doing device ioctl!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(1, "%s(), doing device ioctl!\n", __func__);
|
||||
return -ENOIOCTLCMD;
|
||||
}
|
||||
|
||||
@@ -1833,7 +1833,7 @@ static int irda_setsockopt(struct socket *sock, int level, int optname,
|
||||
struct ias_attrib * ias_attr; /* Attribute in IAS object */
|
||||
int opt, free_ias = 0;
|
||||
|
||||
IRDA_DEBUG(2, "%s(%p)\n", __FUNCTION__, self);
|
||||
IRDA_DEBUG(2, "%s(%p)\n", __func__, self);
|
||||
|
||||
if (level != SOL_IRLMP)
|
||||
return -ENOPROTOOPT;
|
||||
@@ -2012,7 +2012,7 @@ static int irda_setsockopt(struct socket *sock, int level, int optname,
|
||||
|
||||
/* Check is the user space own the object */
|
||||
if(ias_attr->value->owner != IAS_USER_ATTR) {
|
||||
IRDA_DEBUG(1, "%s(), attempting to delete a kernel attribute\n", __FUNCTION__);
|
||||
IRDA_DEBUG(1, "%s(), attempting to delete a kernel attribute\n", __func__);
|
||||
kfree(ias_opt);
|
||||
return -EPERM;
|
||||
}
|
||||
@@ -2031,11 +2031,11 @@ static int irda_setsockopt(struct socket *sock, int level, int optname,
|
||||
/* Only possible for a seqpacket service (TTP with SAR) */
|
||||
if (sk->sk_type != SOCK_SEQPACKET) {
|
||||
IRDA_DEBUG(2, "%s(), setting max_sdu_size = %d\n",
|
||||
__FUNCTION__, opt);
|
||||
__func__, opt);
|
||||
self->max_sdu_size_rx = opt;
|
||||
} else {
|
||||
IRDA_WARNING("%s: not allowed to set MAXSDUSIZE for this socket type!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
return -ENOPROTOOPT;
|
||||
}
|
||||
break;
|
||||
@@ -2149,7 +2149,7 @@ static int irda_getsockopt(struct socket *sock, int level, int optname,
|
||||
int err;
|
||||
int offset, total;
|
||||
|
||||
IRDA_DEBUG(2, "%s(%p)\n", __FUNCTION__, self);
|
||||
IRDA_DEBUG(2, "%s(%p)\n", __func__, self);
|
||||
|
||||
if (level != SOL_IRLMP)
|
||||
return -ENOPROTOOPT;
|
||||
@@ -2310,7 +2310,7 @@ bed:
|
||||
/* Check that we can proceed with IAP */
|
||||
if (self->iriap) {
|
||||
IRDA_WARNING("%s: busy with a previous query\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
kfree(ias_opt);
|
||||
return -EBUSY;
|
||||
}
|
||||
@@ -2406,7 +2406,7 @@ bed:
|
||||
if (!self->cachedaddr) {
|
||||
int ret = 0;
|
||||
|
||||
IRDA_DEBUG(1, "%s(), nothing discovered yet, going to sleep...\n", __FUNCTION__);
|
||||
IRDA_DEBUG(1, "%s(), nothing discovered yet, going to sleep...\n", __func__);
|
||||
|
||||
/* Set watchdog timer to expire in <val> ms. */
|
||||
self->errno = 0;
|
||||
@@ -2424,14 +2424,14 @@ bed:
|
||||
if(timer_pending(&(self->watchdog)))
|
||||
del_timer(&(self->watchdog));
|
||||
|
||||
IRDA_DEBUG(1, "%s(), ...waking up !\n", __FUNCTION__);
|
||||
IRDA_DEBUG(1, "%s(), ...waking up !\n", __func__);
|
||||
|
||||
if (ret != 0)
|
||||
return ret;
|
||||
}
|
||||
else
|
||||
IRDA_DEBUG(1, "%s(), found immediately !\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
|
||||
/* Tell IrLMP that we have been notified */
|
||||
irlmp_update_client(self->ckey, self->mask.word,
|
||||
|
@@ -110,7 +110,7 @@ void irlmp_add_discovery_log(hashbin_t *cachelog, hashbin_t *log)
|
||||
{
|
||||
discovery_t *discovery;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
/*
|
||||
* If log is missing this means that IrLAP was unable to perform the
|
||||
@@ -157,7 +157,7 @@ void irlmp_expire_discoveries(hashbin_t *log, __u32 saddr, int force)
|
||||
int i = 0; /* How many we expired */
|
||||
|
||||
IRDA_ASSERT(log != NULL, return;);
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
spin_lock_irqsave(&log->hb_spinlock, flags);
|
||||
|
||||
|
@@ -70,7 +70,7 @@ static int __init ircomm_init(void)
|
||||
{
|
||||
ircomm = hashbin_new(HB_LOCK);
|
||||
if (ircomm == NULL) {
|
||||
IRDA_ERROR("%s(), can't allocate hashbin!\n", __FUNCTION__);
|
||||
IRDA_ERROR("%s(), can't allocate hashbin!\n", __func__);
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
@@ -91,7 +91,7 @@ static int __init ircomm_init(void)
|
||||
|
||||
static void __exit ircomm_cleanup(void)
|
||||
{
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
hashbin_delete(ircomm, (FREE_FUNC) __ircomm_close);
|
||||
|
||||
@@ -111,7 +111,7 @@ struct ircomm_cb *ircomm_open(notify_t *notify, __u8 service_type, int line)
|
||||
struct ircomm_cb *self = NULL;
|
||||
int ret;
|
||||
|
||||
IRDA_DEBUG(2, "%s(), service_type=0x%02x\n", __FUNCTION__ ,
|
||||
IRDA_DEBUG(2, "%s(), service_type=0x%02x\n", __func__ ,
|
||||
service_type);
|
||||
|
||||
IRDA_ASSERT(ircomm != NULL, return NULL;);
|
||||
@@ -155,7 +155,7 @@ EXPORT_SYMBOL(ircomm_open);
|
||||
*/
|
||||
static int __ircomm_close(struct ircomm_cb *self)
|
||||
{
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
/* Disconnect link if any */
|
||||
ircomm_do_event(self, IRCOMM_DISCONNECT_REQUEST, NULL, NULL);
|
||||
@@ -191,7 +191,7 @@ int ircomm_close(struct ircomm_cb *self)
|
||||
IRDA_ASSERT(self != NULL, return -EIO;);
|
||||
IRDA_ASSERT(self->magic == IRCOMM_MAGIC, return -EIO;);
|
||||
|
||||
IRDA_DEBUG(0, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(0, "%s()\n", __func__ );
|
||||
|
||||
entry = hashbin_remove(ircomm, self->line, NULL);
|
||||
|
||||
@@ -216,7 +216,7 @@ int ircomm_connect_request(struct ircomm_cb *self, __u8 dlsap_sel,
|
||||
struct ircomm_info info;
|
||||
int ret;
|
||||
|
||||
IRDA_DEBUG(2 , "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2 , "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return -1;);
|
||||
IRDA_ASSERT(self->magic == IRCOMM_MAGIC, return -1;);
|
||||
@@ -245,7 +245,7 @@ void ircomm_connect_indication(struct ircomm_cb *self, struct sk_buff *skb,
|
||||
{
|
||||
int clen = 0;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
/* Check if the packet contains data on the control channel */
|
||||
if (skb->len > 0)
|
||||
@@ -261,7 +261,7 @@ void ircomm_connect_indication(struct ircomm_cb *self, struct sk_buff *skb,
|
||||
info->qos, info->max_data_size,
|
||||
info->max_header_size, skb);
|
||||
else {
|
||||
IRDA_DEBUG(0, "%s(), missing handler\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(0, "%s(), missing handler\n", __func__ );
|
||||
}
|
||||
}
|
||||
|
||||
@@ -278,7 +278,7 @@ int ircomm_connect_response(struct ircomm_cb *self, struct sk_buff *userdata)
|
||||
IRDA_ASSERT(self != NULL, return -1;);
|
||||
IRDA_ASSERT(self->magic == IRCOMM_MAGIC, return -1;);
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(4, "%s()\n", __func__ );
|
||||
|
||||
ret = ircomm_do_event(self, IRCOMM_CONNECT_RESPONSE, userdata, NULL);
|
||||
|
||||
@@ -296,7 +296,7 @@ EXPORT_SYMBOL(ircomm_connect_response);
|
||||
void ircomm_connect_confirm(struct ircomm_cb *self, struct sk_buff *skb,
|
||||
struct ircomm_info *info)
|
||||
{
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(4, "%s()\n", __func__ );
|
||||
|
||||
if (self->notify.connect_confirm )
|
||||
self->notify.connect_confirm(self->notify.instance,
|
||||
@@ -304,7 +304,7 @@ void ircomm_connect_confirm(struct ircomm_cb *self, struct sk_buff *skb,
|
||||
info->max_data_size,
|
||||
info->max_header_size, skb);
|
||||
else {
|
||||
IRDA_DEBUG(0, "%s(), missing handler\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(0, "%s(), missing handler\n", __func__ );
|
||||
}
|
||||
}
|
||||
|
||||
@@ -318,7 +318,7 @@ int ircomm_data_request(struct ircomm_cb *self, struct sk_buff *skb)
|
||||
{
|
||||
int ret;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(4, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return -EFAULT;);
|
||||
IRDA_ASSERT(self->magic == IRCOMM_MAGIC, return -EFAULT;);
|
||||
@@ -339,14 +339,14 @@ EXPORT_SYMBOL(ircomm_data_request);
|
||||
*/
|
||||
void ircomm_data_indication(struct ircomm_cb *self, struct sk_buff *skb)
|
||||
{
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(4, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(skb->len > 0, return;);
|
||||
|
||||
if (self->notify.data_indication)
|
||||
self->notify.data_indication(self->notify.instance, self, skb);
|
||||
else {
|
||||
IRDA_DEBUG(0, "%s(), missing handler\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(0, "%s(), missing handler\n", __func__ );
|
||||
}
|
||||
}
|
||||
|
||||
@@ -372,7 +372,7 @@ void ircomm_process_data(struct ircomm_cb *self, struct sk_buff *skb)
|
||||
*/
|
||||
if (unlikely(skb->len < (clen + 1))) {
|
||||
IRDA_DEBUG(2, "%s() throwing away illegal frame\n",
|
||||
__FUNCTION__ );
|
||||
__func__ );
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -391,7 +391,7 @@ void ircomm_process_data(struct ircomm_cb *self, struct sk_buff *skb)
|
||||
ircomm_data_indication(self, skb);
|
||||
else {
|
||||
IRDA_DEBUG(4, "%s(), data was control info only!\n",
|
||||
__FUNCTION__ );
|
||||
__func__ );
|
||||
}
|
||||
}
|
||||
|
||||
@@ -405,7 +405,7 @@ int ircomm_control_request(struct ircomm_cb *self, struct sk_buff *skb)
|
||||
{
|
||||
int ret;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return -EFAULT;);
|
||||
IRDA_ASSERT(self->magic == IRCOMM_MAGIC, return -EFAULT;);
|
||||
@@ -427,7 +427,7 @@ EXPORT_SYMBOL(ircomm_control_request);
|
||||
static void ircomm_control_indication(struct ircomm_cb *self,
|
||||
struct sk_buff *skb, int clen)
|
||||
{
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
/* Use udata for delivering data on the control channel */
|
||||
if (self->notify.udata_indication) {
|
||||
@@ -448,7 +448,7 @@ static void ircomm_control_indication(struct ircomm_cb *self,
|
||||
* see ircomm_tty_control_indication(). */
|
||||
dev_kfree_skb(ctrl_skb);
|
||||
} else {
|
||||
IRDA_DEBUG(0, "%s(), missing handler\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(0, "%s(), missing handler\n", __func__ );
|
||||
}
|
||||
}
|
||||
|
||||
@@ -463,7 +463,7 @@ int ircomm_disconnect_request(struct ircomm_cb *self, struct sk_buff *userdata)
|
||||
struct ircomm_info info;
|
||||
int ret;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return -1;);
|
||||
IRDA_ASSERT(self->magic == IRCOMM_MAGIC, return -1;);
|
||||
@@ -484,7 +484,7 @@ EXPORT_SYMBOL(ircomm_disconnect_request);
|
||||
void ircomm_disconnect_indication(struct ircomm_cb *self, struct sk_buff *skb,
|
||||
struct ircomm_info *info)
|
||||
{
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(info != NULL, return;);
|
||||
|
||||
@@ -492,7 +492,7 @@ void ircomm_disconnect_indication(struct ircomm_cb *self, struct sk_buff *skb,
|
||||
self->notify.disconnect_indication(self->notify.instance, self,
|
||||
info->reason, skb);
|
||||
} else {
|
||||
IRDA_DEBUG(0, "%s(), missing handler\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(0, "%s(), missing handler\n", __func__ );
|
||||
}
|
||||
}
|
||||
|
||||
@@ -504,7 +504,7 @@ void ircomm_disconnect_indication(struct ircomm_cb *self, struct sk_buff *skb,
|
||||
*/
|
||||
void ircomm_flow_request(struct ircomm_cb *self, LOCAL_FLOW flow)
|
||||
{
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IRCOMM_MAGIC, return;);
|
||||
|
@@ -108,7 +108,7 @@ static int ircomm_state_idle(struct ircomm_cb *self, IRCOMM_EVENT event,
|
||||
ircomm_connect_indication(self, skb, info);
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(4, "%s(), unknown event: %s\n", __FUNCTION__ ,
|
||||
IRDA_DEBUG(4, "%s(), unknown event: %s\n", __func__ ,
|
||||
ircomm_event[event]);
|
||||
ret = -EINVAL;
|
||||
}
|
||||
@@ -138,7 +138,7 @@ static int ircomm_state_waiti(struct ircomm_cb *self, IRCOMM_EVENT event,
|
||||
ircomm_disconnect_indication(self, skb, info);
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(0, "%s(), unknown event: %s\n", __FUNCTION__ ,
|
||||
IRDA_DEBUG(0, "%s(), unknown event: %s\n", __func__ ,
|
||||
ircomm_event[event]);
|
||||
ret = -EINVAL;
|
||||
}
|
||||
@@ -171,7 +171,7 @@ static int ircomm_state_waitr(struct ircomm_cb *self, IRCOMM_EVENT event,
|
||||
ircomm_disconnect_indication(self, skb, info);
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(0, "%s(), unknown event = %s\n", __FUNCTION__ ,
|
||||
IRDA_DEBUG(0, "%s(), unknown event = %s\n", __func__ ,
|
||||
ircomm_event[event]);
|
||||
ret = -EINVAL;
|
||||
}
|
||||
@@ -213,7 +213,7 @@ static int ircomm_state_conn(struct ircomm_cb *self, IRCOMM_EVENT event,
|
||||
ret = self->issue.disconnect_request(self, skb, info);
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(0, "%s(), unknown event = %s\n", __FUNCTION__ ,
|
||||
IRDA_DEBUG(0, "%s(), unknown event = %s\n", __func__ ,
|
||||
ircomm_event[event]);
|
||||
ret = -EINVAL;
|
||||
}
|
||||
@@ -229,7 +229,7 @@ static int ircomm_state_conn(struct ircomm_cb *self, IRCOMM_EVENT event,
|
||||
int ircomm_do_event(struct ircomm_cb *self, IRCOMM_EVENT event,
|
||||
struct sk_buff *skb, struct ircomm_info *info)
|
||||
{
|
||||
IRDA_DEBUG(4, "%s: state=%s, event=%s\n", __FUNCTION__ ,
|
||||
IRDA_DEBUG(4, "%s: state=%s, event=%s\n", __func__ ,
|
||||
ircomm_state[self->state], ircomm_event[event]);
|
||||
|
||||
return (*state[self->state])(self, event, skb, info);
|
||||
@@ -245,6 +245,6 @@ void ircomm_next_state(struct ircomm_cb *self, IRCOMM_STATE state)
|
||||
{
|
||||
self->state = state;
|
||||
|
||||
IRDA_DEBUG(4, "%s: next state=%s, service type=%d\n", __FUNCTION__ ,
|
||||
IRDA_DEBUG(4, "%s: next state=%s, service type=%d\n", __func__ ,
|
||||
ircomm_state[self->state], self->service_type);
|
||||
}
|
||||
|
@@ -53,7 +53,7 @@ static int ircomm_lmp_connect_request(struct ircomm_cb *self,
|
||||
{
|
||||
int ret = 0;
|
||||
|
||||
IRDA_DEBUG(0, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(0, "%s()\n", __func__ );
|
||||
|
||||
/* Don't forget to refcount it - should be NULL anyway */
|
||||
if(userdata)
|
||||
@@ -76,7 +76,7 @@ static int ircomm_lmp_connect_response(struct ircomm_cb *self,
|
||||
struct sk_buff *tx_skb;
|
||||
int ret;
|
||||
|
||||
IRDA_DEBUG(0, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(0, "%s()\n", __func__ );
|
||||
|
||||
/* Any userdata supplied? */
|
||||
if (userdata == NULL) {
|
||||
@@ -111,7 +111,7 @@ static int ircomm_lmp_disconnect_request(struct ircomm_cb *self,
|
||||
struct sk_buff *tx_skb;
|
||||
int ret;
|
||||
|
||||
IRDA_DEBUG(0, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(0, "%s()\n", __func__ );
|
||||
|
||||
if (!userdata) {
|
||||
tx_skb = alloc_skb(LMP_MAX_HEADER, GFP_ATOMIC);
|
||||
@@ -148,13 +148,13 @@ static void ircomm_lmp_flow_control(struct sk_buff *skb)
|
||||
|
||||
cb = (struct irda_skb_cb *) skb->cb;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
line = cb->line;
|
||||
|
||||
self = (struct ircomm_cb *) hashbin_lock_find(ircomm, line, NULL);
|
||||
if (!self) {
|
||||
IRDA_DEBUG(2, "%s(), didn't find myself\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), didn't find myself\n", __func__ );
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -164,7 +164,7 @@ static void ircomm_lmp_flow_control(struct sk_buff *skb)
|
||||
self->pkt_count--;
|
||||
|
||||
if ((self->pkt_count < 2) && (self->flow_status == FLOW_STOP)) {
|
||||
IRDA_DEBUG(2, "%s(), asking TTY to start again!\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), asking TTY to start again!\n", __func__ );
|
||||
self->flow_status = FLOW_START;
|
||||
if (self->notify.flow_indication)
|
||||
self->notify.flow_indication(self->notify.instance,
|
||||
@@ -191,7 +191,7 @@ static int ircomm_lmp_data_request(struct ircomm_cb *self,
|
||||
|
||||
cb->line = self->line;
|
||||
|
||||
IRDA_DEBUG(4, "%s(), sending frame\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(4, "%s(), sending frame\n", __func__ );
|
||||
|
||||
/* Don't forget to refcount it - see ircomm_tty_do_softint() */
|
||||
skb_get(skb);
|
||||
@@ -199,7 +199,7 @@ static int ircomm_lmp_data_request(struct ircomm_cb *self,
|
||||
skb->destructor = ircomm_lmp_flow_control;
|
||||
|
||||
if ((self->pkt_count++ > 7) && (self->flow_status == FLOW_START)) {
|
||||
IRDA_DEBUG(2, "%s(), asking TTY to slow down!\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), asking TTY to slow down!\n", __func__ );
|
||||
self->flow_status = FLOW_STOP;
|
||||
if (self->notify.flow_indication)
|
||||
self->notify.flow_indication(self->notify.instance,
|
||||
@@ -207,7 +207,7 @@ static int ircomm_lmp_data_request(struct ircomm_cb *self,
|
||||
}
|
||||
ret = irlmp_data_request(self->lsap, skb);
|
||||
if (ret) {
|
||||
IRDA_ERROR("%s(), failed\n", __FUNCTION__);
|
||||
IRDA_ERROR("%s(), failed\n", __func__);
|
||||
/* irlmp_data_request already free the packet */
|
||||
}
|
||||
|
||||
@@ -225,7 +225,7 @@ static int ircomm_lmp_data_indication(void *instance, void *sap,
|
||||
{
|
||||
struct ircomm_cb *self = (struct ircomm_cb *) instance;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(4, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return -1;);
|
||||
IRDA_ASSERT(self->magic == IRCOMM_MAGIC, return -1;);
|
||||
@@ -255,7 +255,7 @@ static void ircomm_lmp_connect_confirm(void *instance, void *sap,
|
||||
struct ircomm_cb *self = (struct ircomm_cb *) instance;
|
||||
struct ircomm_info info;
|
||||
|
||||
IRDA_DEBUG(0, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(0, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IRCOMM_MAGIC, return;);
|
||||
@@ -288,7 +288,7 @@ static void ircomm_lmp_connect_indication(void *instance, void *sap,
|
||||
struct ircomm_cb *self = (struct ircomm_cb *)instance;
|
||||
struct ircomm_info info;
|
||||
|
||||
IRDA_DEBUG(0, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(0, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IRCOMM_MAGIC, return;);
|
||||
@@ -318,7 +318,7 @@ static void ircomm_lmp_disconnect_indication(void *instance, void *sap,
|
||||
struct ircomm_cb *self = (struct ircomm_cb *) instance;
|
||||
struct ircomm_info info;
|
||||
|
||||
IRDA_DEBUG(0, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(0, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IRCOMM_MAGIC, return;);
|
||||
@@ -341,7 +341,7 @@ int ircomm_open_lsap(struct ircomm_cb *self)
|
||||
{
|
||||
notify_t notify;
|
||||
|
||||
IRDA_DEBUG(0, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(0, "%s()\n", __func__ );
|
||||
|
||||
/* Register callbacks */
|
||||
irda_notify_init(¬ify);
|
||||
@@ -354,7 +354,7 @@ int ircomm_open_lsap(struct ircomm_cb *self)
|
||||
|
||||
self->lsap = irlmp_open_lsap(LSAP_ANY, ¬ify, 0);
|
||||
if (!self->lsap) {
|
||||
IRDA_DEBUG(0,"%sfailed to allocate tsap\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(0,"%sfailed to allocate tsap\n", __func__ );
|
||||
return -1;
|
||||
}
|
||||
self->slsap_sel = self->lsap->slsap_sel;
|
||||
|
@@ -103,7 +103,7 @@ int ircomm_param_request(struct ircomm_tty_cb *self, __u8 pi, int flush)
|
||||
struct sk_buff *skb;
|
||||
int count;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return -1;);
|
||||
IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;);
|
||||
@@ -136,7 +136,7 @@ int ircomm_param_request(struct ircomm_tty_cb *self, __u8 pi, int flush)
|
||||
count = irda_param_insert(self, pi, skb_tail_pointer(skb),
|
||||
skb_tailroom(skb), &ircomm_param_info);
|
||||
if (count < 0) {
|
||||
IRDA_WARNING("%s(), no room for parameter!\n", __FUNCTION__);
|
||||
IRDA_WARNING("%s(), no room for parameter!\n", __func__);
|
||||
spin_unlock_irqrestore(&self->spinlock, flags);
|
||||
return -1;
|
||||
}
|
||||
@@ -144,7 +144,7 @@ int ircomm_param_request(struct ircomm_tty_cb *self, __u8 pi, int flush)
|
||||
|
||||
spin_unlock_irqrestore(&self->spinlock, flags);
|
||||
|
||||
IRDA_DEBUG(2, "%s(), skb->len=%d\n", __FUNCTION__ , skb->len);
|
||||
IRDA_DEBUG(2, "%s(), skb->len=%d\n", __func__ , skb->len);
|
||||
|
||||
if (flush) {
|
||||
/* ircomm_tty_do_softint will take care of the rest */
|
||||
@@ -179,10 +179,10 @@ static int ircomm_param_service_type(void *instance, irda_param_t *param,
|
||||
service_type &= self->service_type;
|
||||
if (!service_type) {
|
||||
IRDA_DEBUG(2,
|
||||
"%s(), No common service type to use!\n", __FUNCTION__ );
|
||||
"%s(), No common service type to use!\n", __func__ );
|
||||
return -1;
|
||||
}
|
||||
IRDA_DEBUG(0, "%s(), services in common=%02x\n", __FUNCTION__ ,
|
||||
IRDA_DEBUG(0, "%s(), services in common=%02x\n", __func__ ,
|
||||
service_type);
|
||||
|
||||
/*
|
||||
@@ -197,7 +197,7 @@ static int ircomm_param_service_type(void *instance, irda_param_t *param,
|
||||
else if (service_type & IRCOMM_3_WIRE_RAW)
|
||||
self->settings.service_type = IRCOMM_3_WIRE_RAW;
|
||||
|
||||
IRDA_DEBUG(0, "%s(), resulting service type=0x%02x\n", __FUNCTION__ ,
|
||||
IRDA_DEBUG(0, "%s(), resulting service type=0x%02x\n", __func__ ,
|
||||
self->settings.service_type);
|
||||
|
||||
/*
|
||||
@@ -240,7 +240,7 @@ static int ircomm_param_port_type(void *instance, irda_param_t *param, int get)
|
||||
else {
|
||||
self->settings.port_type = (__u8) param->pv.i;
|
||||
|
||||
IRDA_DEBUG(0, "%s(), port type=%d\n", __FUNCTION__ ,
|
||||
IRDA_DEBUG(0, "%s(), port type=%d\n", __func__ ,
|
||||
self->settings.port_type);
|
||||
}
|
||||
return 0;
|
||||
@@ -260,9 +260,9 @@ static int ircomm_param_port_name(void *instance, irda_param_t *param, int get)
|
||||
IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;);
|
||||
|
||||
if (get) {
|
||||
IRDA_DEBUG(0, "%s(), not imp!\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(0, "%s(), not imp!\n", __func__ );
|
||||
} else {
|
||||
IRDA_DEBUG(0, "%s(), port-name=%s\n", __FUNCTION__ , param->pv.c);
|
||||
IRDA_DEBUG(0, "%s(), port-name=%s\n", __func__ , param->pv.c);
|
||||
strncpy(self->settings.port_name, param->pv.c, 32);
|
||||
}
|
||||
|
||||
@@ -287,7 +287,7 @@ static int ircomm_param_data_rate(void *instance, irda_param_t *param, int get)
|
||||
else
|
||||
self->settings.data_rate = param->pv.i;
|
||||
|
||||
IRDA_DEBUG(2, "%s(), data rate = %d\n", __FUNCTION__ , param->pv.i);
|
||||
IRDA_DEBUG(2, "%s(), data rate = %d\n", __func__ , param->pv.i);
|
||||
|
||||
return 0;
|
||||
}
|
||||
@@ -333,7 +333,7 @@ static int ircomm_param_flow_control(void *instance, irda_param_t *param,
|
||||
else
|
||||
self->settings.flow_control = (__u8) param->pv.i;
|
||||
|
||||
IRDA_DEBUG(1, "%s(), flow control = 0x%02x\n", __FUNCTION__ , (__u8) param->pv.i);
|
||||
IRDA_DEBUG(1, "%s(), flow control = 0x%02x\n", __func__ , (__u8) param->pv.i);
|
||||
|
||||
return 0;
|
||||
}
|
||||
@@ -359,7 +359,7 @@ static int ircomm_param_xon_xoff(void *instance, irda_param_t *param, int get)
|
||||
self->settings.xonxoff[1] = (__u16) param->pv.i >> 8;
|
||||
}
|
||||
|
||||
IRDA_DEBUG(0, "%s(), XON/XOFF = 0x%02x,0x%02x\n", __FUNCTION__ ,
|
||||
IRDA_DEBUG(0, "%s(), XON/XOFF = 0x%02x,0x%02x\n", __func__ ,
|
||||
param->pv.i & 0xff, param->pv.i >> 8);
|
||||
|
||||
return 0;
|
||||
@@ -386,7 +386,7 @@ static int ircomm_param_enq_ack(void *instance, irda_param_t *param, int get)
|
||||
self->settings.enqack[1] = (__u16) param->pv.i >> 8;
|
||||
}
|
||||
|
||||
IRDA_DEBUG(0, "%s(), ENQ/ACK = 0x%02x,0x%02x\n", __FUNCTION__ ,
|
||||
IRDA_DEBUG(0, "%s(), ENQ/ACK = 0x%02x,0x%02x\n", __func__ ,
|
||||
param->pv.i & 0xff, param->pv.i >> 8);
|
||||
|
||||
return 0;
|
||||
@@ -401,7 +401,7 @@ static int ircomm_param_enq_ack(void *instance, irda_param_t *param, int get)
|
||||
static int ircomm_param_line_status(void *instance, irda_param_t *param,
|
||||
int get)
|
||||
{
|
||||
IRDA_DEBUG(2, "%s(), not impl.\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), not impl.\n", __func__ );
|
||||
|
||||
return 0;
|
||||
}
|
||||
@@ -462,7 +462,7 @@ static int ircomm_param_dce(void *instance, irda_param_t *param, int get)
|
||||
struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) instance;
|
||||
__u8 dce;
|
||||
|
||||
IRDA_DEBUG(1, "%s(), dce = 0x%02x\n", __FUNCTION__ , (__u8) param->pv.i);
|
||||
IRDA_DEBUG(1, "%s(), dce = 0x%02x\n", __func__ , (__u8) param->pv.i);
|
||||
|
||||
dce = (__u8) param->pv.i;
|
||||
|
||||
@@ -474,7 +474,7 @@ static int ircomm_param_dce(void *instance, irda_param_t *param, int get)
|
||||
/* Check if any of the settings have changed */
|
||||
if (dce & 0x0f) {
|
||||
if (dce & IRCOMM_DELTA_CTS) {
|
||||
IRDA_DEBUG(2, "%s(), CTS \n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), CTS \n", __func__ );
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -78,7 +78,7 @@ int ircomm_open_tsap(struct ircomm_cb *self)
|
||||
{
|
||||
notify_t notify;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(4, "%s()\n", __func__ );
|
||||
|
||||
/* Register callbacks */
|
||||
irda_notify_init(¬ify);
|
||||
@@ -93,7 +93,7 @@ int ircomm_open_tsap(struct ircomm_cb *self)
|
||||
self->tsap = irttp_open_tsap(LSAP_ANY, DEFAULT_INITIAL_CREDIT,
|
||||
¬ify);
|
||||
if (!self->tsap) {
|
||||
IRDA_DEBUG(0, "%sfailed to allocate tsap\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(0, "%sfailed to allocate tsap\n", __func__ );
|
||||
return -1;
|
||||
}
|
||||
self->slsap_sel = self->tsap->stsap_sel;
|
||||
@@ -121,7 +121,7 @@ static int ircomm_ttp_connect_request(struct ircomm_cb *self,
|
||||
{
|
||||
int ret = 0;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(4, "%s()\n", __func__ );
|
||||
|
||||
/* Don't forget to refcount it - should be NULL anyway */
|
||||
if(userdata)
|
||||
@@ -145,7 +145,7 @@ static int ircomm_ttp_connect_response(struct ircomm_cb *self,
|
||||
{
|
||||
int ret;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(4, "%s()\n", __func__ );
|
||||
|
||||
/* Don't forget to refcount it - should be NULL anyway */
|
||||
if(userdata)
|
||||
@@ -173,7 +173,7 @@ static int ircomm_ttp_data_request(struct ircomm_cb *self,
|
||||
|
||||
IRDA_ASSERT(skb != NULL, return -1;);
|
||||
|
||||
IRDA_DEBUG(2, "%s(), clen=%d\n", __FUNCTION__ , clen);
|
||||
IRDA_DEBUG(2, "%s(), clen=%d\n", __func__ , clen);
|
||||
|
||||
/*
|
||||
* Insert clen field, currently we either send data only, or control
|
||||
@@ -190,7 +190,7 @@ static int ircomm_ttp_data_request(struct ircomm_cb *self,
|
||||
|
||||
ret = irttp_data_request(self->tsap, skb);
|
||||
if (ret) {
|
||||
IRDA_ERROR("%s(), failed\n", __FUNCTION__);
|
||||
IRDA_ERROR("%s(), failed\n", __func__);
|
||||
/* irttp_data_request already free the packet */
|
||||
}
|
||||
|
||||
@@ -208,7 +208,7 @@ static int ircomm_ttp_data_indication(void *instance, void *sap,
|
||||
{
|
||||
struct ircomm_cb *self = (struct ircomm_cb *) instance;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(4, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return -1;);
|
||||
IRDA_ASSERT(self->magic == IRCOMM_MAGIC, return -1;);
|
||||
@@ -231,7 +231,7 @@ static void ircomm_ttp_connect_confirm(void *instance, void *sap,
|
||||
struct ircomm_cb *self = (struct ircomm_cb *) instance;
|
||||
struct ircomm_info info;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(4, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IRCOMM_MAGIC, return;);
|
||||
@@ -240,7 +240,7 @@ static void ircomm_ttp_connect_confirm(void *instance, void *sap,
|
||||
|
||||
if (max_sdu_size != TTP_SAR_DISABLE) {
|
||||
IRDA_ERROR("%s(), SAR not allowed for IrCOMM!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
goto out;
|
||||
}
|
||||
|
||||
@@ -272,7 +272,7 @@ static void ircomm_ttp_connect_indication(void *instance, void *sap,
|
||||
struct ircomm_cb *self = (struct ircomm_cb *)instance;
|
||||
struct ircomm_info info;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(4, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IRCOMM_MAGIC, return;);
|
||||
@@ -281,7 +281,7 @@ static void ircomm_ttp_connect_indication(void *instance, void *sap,
|
||||
|
||||
if (max_sdu_size != TTP_SAR_DISABLE) {
|
||||
IRDA_ERROR("%s(), SAR not allowed for IrCOMM!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
goto out;
|
||||
}
|
||||
|
||||
@@ -331,7 +331,7 @@ static void ircomm_ttp_disconnect_indication(void *instance, void *sap,
|
||||
struct ircomm_cb *self = (struct ircomm_cb *) instance;
|
||||
struct ircomm_info info;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IRCOMM_MAGIC, return;);
|
||||
@@ -356,7 +356,7 @@ static void ircomm_ttp_flow_indication(void *instance, void *sap,
|
||||
{
|
||||
struct ircomm_cb *self = (struct ircomm_cb *) instance;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(4, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IRCOMM_MAGIC, return;);
|
||||
|
@@ -115,7 +115,7 @@ static int __init ircomm_tty_init(void)
|
||||
return -ENOMEM;
|
||||
ircomm_tty = hashbin_new(HB_LOCK);
|
||||
if (ircomm_tty == NULL) {
|
||||
IRDA_ERROR("%s(), can't allocate hashbin!\n", __FUNCTION__);
|
||||
IRDA_ERROR("%s(), can't allocate hashbin!\n", __func__);
|
||||
put_tty_driver(driver);
|
||||
return -ENOMEM;
|
||||
}
|
||||
@@ -133,7 +133,7 @@ static int __init ircomm_tty_init(void)
|
||||
tty_set_operations(driver, &ops);
|
||||
if (tty_register_driver(driver)) {
|
||||
IRDA_ERROR("%s(): Couldn't register serial driver\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
put_tty_driver(driver);
|
||||
return -1;
|
||||
}
|
||||
@@ -142,7 +142,7 @@ static int __init ircomm_tty_init(void)
|
||||
|
||||
static void __exit __ircomm_tty_cleanup(struct ircomm_tty_cb *self)
|
||||
{
|
||||
IRDA_DEBUG(0, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(0, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
|
||||
@@ -163,12 +163,12 @@ static void __exit ircomm_tty_cleanup(void)
|
||||
{
|
||||
int ret;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(4, "%s()\n", __func__ );
|
||||
|
||||
ret = tty_unregister_driver(driver);
|
||||
if (ret) {
|
||||
IRDA_ERROR("%s(), failed to unregister driver\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -187,14 +187,14 @@ static int ircomm_tty_startup(struct ircomm_tty_cb *self)
|
||||
notify_t notify;
|
||||
int ret = -ENODEV;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return -1;);
|
||||
IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;);
|
||||
|
||||
/* Check if already open */
|
||||
if (test_and_set_bit(ASYNC_B_INITIALIZED, &self->flags)) {
|
||||
IRDA_DEBUG(2, "%s(), already open so break out!\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), already open so break out!\n", __func__ );
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -224,7 +224,7 @@ static int ircomm_tty_startup(struct ircomm_tty_cb *self)
|
||||
/* Connect IrCOMM link with remote device */
|
||||
ret = ircomm_tty_attach_cable(self);
|
||||
if (ret < 0) {
|
||||
IRDA_ERROR("%s(), error attaching cable!\n", __FUNCTION__);
|
||||
IRDA_ERROR("%s(), error attaching cable!\n", __func__);
|
||||
goto err;
|
||||
}
|
||||
|
||||
@@ -249,7 +249,7 @@ static int ircomm_tty_block_til_ready(struct ircomm_tty_cb *self,
|
||||
unsigned long flags;
|
||||
struct tty_struct *tty;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
tty = self->tty;
|
||||
|
||||
@@ -260,12 +260,12 @@ static int ircomm_tty_block_til_ready(struct ircomm_tty_cb *self,
|
||||
if (filp->f_flags & O_NONBLOCK || tty->flags & (1 << TTY_IO_ERROR)){
|
||||
/* nonblock mode is set or port is not enabled */
|
||||
self->flags |= ASYNC_NORMAL_ACTIVE;
|
||||
IRDA_DEBUG(1, "%s(), O_NONBLOCK requested!\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(1, "%s(), O_NONBLOCK requested!\n", __func__ );
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (tty->termios->c_cflag & CLOCAL) {
|
||||
IRDA_DEBUG(1, "%s(), doing CLOCAL!\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(1, "%s(), doing CLOCAL!\n", __func__ );
|
||||
do_clocal = 1;
|
||||
}
|
||||
|
||||
@@ -368,7 +368,7 @@ static int ircomm_tty_open(struct tty_struct *tty, struct file *filp)
|
||||
unsigned long flags;
|
||||
int ret;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
line = tty->index;
|
||||
if ((line < 0) || (line >= IRCOMM_TTY_PORTS)) {
|
||||
@@ -381,7 +381,7 @@ static int ircomm_tty_open(struct tty_struct *tty, struct file *filp)
|
||||
/* No, so make new instance */
|
||||
self = kzalloc(sizeof(struct ircomm_tty_cb), GFP_KERNEL);
|
||||
if (self == NULL) {
|
||||
IRDA_ERROR("%s(), kmalloc failed!\n", __FUNCTION__);
|
||||
IRDA_ERROR("%s(), kmalloc failed!\n", __func__);
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
@@ -420,7 +420,7 @@ static int ircomm_tty_open(struct tty_struct *tty, struct file *filp)
|
||||
self->tty = tty;
|
||||
spin_unlock_irqrestore(&self->spinlock, flags);
|
||||
|
||||
IRDA_DEBUG(1, "%s(), %s%d, count = %d\n", __FUNCTION__ , tty->driver->name,
|
||||
IRDA_DEBUG(1, "%s(), %s%d, count = %d\n", __func__ , tty->driver->name,
|
||||
self->line, self->open_count);
|
||||
|
||||
/* Not really used by us, but lets do it anyway */
|
||||
@@ -442,7 +442,7 @@ static int ircomm_tty_open(struct tty_struct *tty, struct file *filp)
|
||||
|
||||
if (wait_event_interruptible(self->close_wait, !test_bit(ASYNC_B_CLOSING, &self->flags))) {
|
||||
IRDA_WARNING("%s - got signal while blocking on ASYNC_CLOSING!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
return -ERESTARTSYS;
|
||||
}
|
||||
|
||||
@@ -460,9 +460,9 @@ static int ircomm_tty_open(struct tty_struct *tty, struct file *filp)
|
||||
self->settings.service_type = IRCOMM_9_WIRE; /* 9 wire as default */
|
||||
/* Jan Kiszka -> add DSR/RI -> Conform to IrCOMM spec */
|
||||
self->settings.dce = IRCOMM_CTS | IRCOMM_CD | IRCOMM_DSR | IRCOMM_RI; /* Default line settings */
|
||||
IRDA_DEBUG(2, "%s(), IrCOMM device\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), IrCOMM device\n", __func__ );
|
||||
} else {
|
||||
IRDA_DEBUG(2, "%s(), IrLPT device\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), IrLPT device\n", __func__ );
|
||||
self->service_type = IRCOMM_3_WIRE_RAW;
|
||||
self->settings.service_type = IRCOMM_3_WIRE_RAW; /* Default */
|
||||
}
|
||||
@@ -474,7 +474,7 @@ static int ircomm_tty_open(struct tty_struct *tty, struct file *filp)
|
||||
ret = ircomm_tty_block_til_ready(self, filp);
|
||||
if (ret) {
|
||||
IRDA_DEBUG(2,
|
||||
"%s(), returning after block_til_ready with %d\n", __FUNCTION__ ,
|
||||
"%s(), returning after block_til_ready with %d\n", __func__ ,
|
||||
ret);
|
||||
|
||||
return ret;
|
||||
@@ -493,7 +493,7 @@ static void ircomm_tty_close(struct tty_struct *tty, struct file *filp)
|
||||
struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
|
||||
unsigned long flags;
|
||||
|
||||
IRDA_DEBUG(0, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(0, "%s()\n", __func__ );
|
||||
|
||||
if (!tty)
|
||||
return;
|
||||
@@ -506,7 +506,7 @@ static void ircomm_tty_close(struct tty_struct *tty, struct file *filp)
|
||||
if (tty_hung_up_p(filp)) {
|
||||
spin_unlock_irqrestore(&self->spinlock, flags);
|
||||
|
||||
IRDA_DEBUG(0, "%s(), returning 1\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(0, "%s(), returning 1\n", __func__ );
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -519,20 +519,20 @@ static void ircomm_tty_close(struct tty_struct *tty, struct file *filp)
|
||||
* serial port won't be shutdown.
|
||||
*/
|
||||
IRDA_DEBUG(0, "%s(), bad serial port count; "
|
||||
"tty->count is 1, state->count is %d\n", __FUNCTION__ ,
|
||||
"tty->count is 1, state->count is %d\n", __func__ ,
|
||||
self->open_count);
|
||||
self->open_count = 1;
|
||||
}
|
||||
|
||||
if (--self->open_count < 0) {
|
||||
IRDA_ERROR("%s(), bad serial port count for ttys%d: %d\n",
|
||||
__FUNCTION__, self->line, self->open_count);
|
||||
__func__, self->line, self->open_count);
|
||||
self->open_count = 0;
|
||||
}
|
||||
if (self->open_count) {
|
||||
spin_unlock_irqrestore(&self->spinlock, flags);
|
||||
|
||||
IRDA_DEBUG(0, "%s(), open count > 0\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(0, "%s(), open count > 0\n", __func__ );
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -608,7 +608,7 @@ static void ircomm_tty_do_softint(struct work_struct *work)
|
||||
unsigned long flags;
|
||||
struct sk_buff *skb, *ctrl_skb;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
if (!self || self->magic != IRCOMM_TTY_MAGIC)
|
||||
return;
|
||||
@@ -678,7 +678,7 @@ static int ircomm_tty_write(struct tty_struct *tty,
|
||||
int len = 0;
|
||||
int size;
|
||||
|
||||
IRDA_DEBUG(2, "%s(), count=%d, hw_stopped=%d\n", __FUNCTION__ , count,
|
||||
IRDA_DEBUG(2, "%s(), count=%d, hw_stopped=%d\n", __func__ , count,
|
||||
tty->hw_stopped);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return -1;);
|
||||
@@ -701,7 +701,7 @@ static int ircomm_tty_write(struct tty_struct *tty,
|
||||
* we don't mess up the original "safe skb" (see tx_data_size).
|
||||
* Jean II */
|
||||
if (self->max_header_size == IRCOMM_TTY_HDR_UNINITIALISED) {
|
||||
IRDA_DEBUG(1, "%s() : not initialised\n", __FUNCTION__);
|
||||
IRDA_DEBUG(1, "%s() : not initialised\n", __func__);
|
||||
#ifdef IRCOMM_NO_TX_BEFORE_INIT
|
||||
/* We didn't consume anything, TTY will retry */
|
||||
return 0;
|
||||
@@ -830,7 +830,7 @@ static int ircomm_tty_write_room(struct tty_struct *tty)
|
||||
ret = self->max_data_size;
|
||||
spin_unlock_irqrestore(&self->spinlock, flags);
|
||||
}
|
||||
IRDA_DEBUG(2, "%s(), ret=%d\n", __FUNCTION__ , ret);
|
||||
IRDA_DEBUG(2, "%s(), ret=%d\n", __func__ , ret);
|
||||
|
||||
return ret;
|
||||
}
|
||||
@@ -847,7 +847,7 @@ static void ircomm_tty_wait_until_sent(struct tty_struct *tty, int timeout)
|
||||
unsigned long orig_jiffies, poll_time;
|
||||
unsigned long flags;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
|
||||
@@ -882,7 +882,7 @@ static void ircomm_tty_throttle(struct tty_struct *tty)
|
||||
{
|
||||
struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
|
||||
@@ -913,7 +913,7 @@ static void ircomm_tty_unthrottle(struct tty_struct *tty)
|
||||
{
|
||||
struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
|
||||
@@ -928,7 +928,7 @@ static void ircomm_tty_unthrottle(struct tty_struct *tty)
|
||||
self->settings.dte |= (IRCOMM_RTS|IRCOMM_DELTA_RTS);
|
||||
|
||||
ircomm_param_request(self, IRCOMM_DTE, TRUE);
|
||||
IRDA_DEBUG(1, "%s(), FLOW_START\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(1, "%s(), FLOW_START\n", __func__ );
|
||||
}
|
||||
ircomm_flow_request(self->ircomm, FLOW_START);
|
||||
}
|
||||
@@ -965,7 +965,7 @@ static void ircomm_tty_shutdown(struct ircomm_tty_cb *self)
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
|
||||
|
||||
IRDA_DEBUG(0, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(0, "%s()\n", __func__ );
|
||||
|
||||
if (!test_and_clear_bit(ASYNC_B_INITIALIZED, &self->flags))
|
||||
return;
|
||||
@@ -1008,7 +1008,7 @@ static void ircomm_tty_hangup(struct tty_struct *tty)
|
||||
struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
|
||||
unsigned long flags;
|
||||
|
||||
IRDA_DEBUG(0, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(0, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
|
||||
@@ -1037,7 +1037,7 @@ static void ircomm_tty_hangup(struct tty_struct *tty)
|
||||
*/
|
||||
static void ircomm_tty_send_xchar(struct tty_struct *tty, char ch)
|
||||
{
|
||||
IRDA_DEBUG(0, "%s(), not impl\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(0, "%s(), not impl\n", __func__ );
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -1081,7 +1081,7 @@ void ircomm_tty_check_modem_status(struct ircomm_tty_cb *self)
|
||||
struct tty_struct *tty;
|
||||
int status;
|
||||
|
||||
IRDA_DEBUG(0, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(0, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
|
||||
@@ -1095,14 +1095,14 @@ void ircomm_tty_check_modem_status(struct ircomm_tty_cb *self)
|
||||
}
|
||||
if ((self->flags & ASYNC_CHECK_CD) && (status & IRCOMM_DELTA_CD)) {
|
||||
IRDA_DEBUG(2,
|
||||
"%s(), ircomm%d CD now %s...\n", __FUNCTION__ , self->line,
|
||||
"%s(), ircomm%d CD now %s...\n", __func__ , self->line,
|
||||
(status & IRCOMM_CD) ? "on" : "off");
|
||||
|
||||
if (status & IRCOMM_CD) {
|
||||
wake_up_interruptible(&self->open_wait);
|
||||
} else {
|
||||
IRDA_DEBUG(2,
|
||||
"%s(), Doing serial hangup..\n", __FUNCTION__ );
|
||||
"%s(), Doing serial hangup..\n", __func__ );
|
||||
if (tty)
|
||||
tty_hangup(tty);
|
||||
|
||||
@@ -1114,7 +1114,7 @@ void ircomm_tty_check_modem_status(struct ircomm_tty_cb *self)
|
||||
if (tty->hw_stopped) {
|
||||
if (status & IRCOMM_CTS) {
|
||||
IRDA_DEBUG(2,
|
||||
"%s(), CTS tx start...\n", __FUNCTION__ );
|
||||
"%s(), CTS tx start...\n", __func__ );
|
||||
tty->hw_stopped = 0;
|
||||
|
||||
/* Wake up processes blocked on open */
|
||||
@@ -1126,7 +1126,7 @@ void ircomm_tty_check_modem_status(struct ircomm_tty_cb *self)
|
||||
} else {
|
||||
if (!(status & IRCOMM_CTS)) {
|
||||
IRDA_DEBUG(2,
|
||||
"%s(), CTS tx stop...\n", __FUNCTION__ );
|
||||
"%s(), CTS tx stop...\n", __func__ );
|
||||
tty->hw_stopped = 1;
|
||||
}
|
||||
}
|
||||
@@ -1144,14 +1144,14 @@ static int ircomm_tty_data_indication(void *instance, void *sap,
|
||||
{
|
||||
struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) instance;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return -1;);
|
||||
IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;);
|
||||
IRDA_ASSERT(skb != NULL, return -1;);
|
||||
|
||||
if (!self->tty) {
|
||||
IRDA_DEBUG(0, "%s(), no tty!\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(0, "%s(), no tty!\n", __func__ );
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -1162,7 +1162,7 @@ static int ircomm_tty_data_indication(void *instance, void *sap,
|
||||
* params, we can just as well declare the hardware for running.
|
||||
*/
|
||||
if (self->tty->hw_stopped && (self->flow == FLOW_START)) {
|
||||
IRDA_DEBUG(0, "%s(), polling for line settings!\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(0, "%s(), polling for line settings!\n", __func__ );
|
||||
ircomm_param_request(self, IRCOMM_POLL, TRUE);
|
||||
|
||||
/* We can just as well declare the hardware for running */
|
||||
@@ -1194,7 +1194,7 @@ static int ircomm_tty_control_indication(void *instance, void *sap,
|
||||
struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) instance;
|
||||
int clen;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(4, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return -1;);
|
||||
IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;);
|
||||
@@ -1230,7 +1230,7 @@ static void ircomm_tty_flow_indication(void *instance, void *sap,
|
||||
|
||||
switch (cmd) {
|
||||
case FLOW_START:
|
||||
IRDA_DEBUG(2, "%s(), hw start!\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), hw start!\n", __func__ );
|
||||
tty->hw_stopped = 0;
|
||||
|
||||
/* ircomm_tty_do_softint will take care of the rest */
|
||||
@@ -1238,7 +1238,7 @@ static void ircomm_tty_flow_indication(void *instance, void *sap,
|
||||
break;
|
||||
default: /* If we get here, something is very wrong, better stop */
|
||||
case FLOW_STOP:
|
||||
IRDA_DEBUG(2, "%s(), hw stopped!\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), hw stopped!\n", __func__ );
|
||||
tty->hw_stopped = 1;
|
||||
break;
|
||||
}
|
||||
|
@@ -129,14 +129,14 @@ static int (*state[])(struct ircomm_tty_cb *self, IRCOMM_TTY_EVENT event,
|
||||
*/
|
||||
int ircomm_tty_attach_cable(struct ircomm_tty_cb *self)
|
||||
{
|
||||
IRDA_DEBUG(0, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(0, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return -1;);
|
||||
IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;);
|
||||
|
||||
/* Check if somebody has already connected to us */
|
||||
if (ircomm_is_connected(self->ircomm)) {
|
||||
IRDA_DEBUG(0, "%s(), already connected!\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(0, "%s(), already connected!\n", __func__ );
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -158,7 +158,7 @@ int ircomm_tty_attach_cable(struct ircomm_tty_cb *self)
|
||||
*/
|
||||
void ircomm_tty_detach_cable(struct ircomm_tty_cb *self)
|
||||
{
|
||||
IRDA_DEBUG(0, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(0, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
|
||||
@@ -207,7 +207,7 @@ static void ircomm_tty_ias_register(struct ircomm_tty_cb *self)
|
||||
__u8 oct_seq[6];
|
||||
__u16 hints;
|
||||
|
||||
IRDA_DEBUG(0, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(0, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
|
||||
@@ -308,16 +308,16 @@ int ircomm_tty_send_initial_parameters(struct ircomm_tty_cb *self)
|
||||
* Set default values, but only if the application for some reason
|
||||
* haven't set them already
|
||||
*/
|
||||
IRDA_DEBUG(2, "%s(), data-rate = %d\n", __FUNCTION__ ,
|
||||
IRDA_DEBUG(2, "%s(), data-rate = %d\n", __func__ ,
|
||||
self->settings.data_rate);
|
||||
if (!self->settings.data_rate)
|
||||
self->settings.data_rate = 9600;
|
||||
IRDA_DEBUG(2, "%s(), data-format = %d\n", __FUNCTION__ ,
|
||||
IRDA_DEBUG(2, "%s(), data-format = %d\n", __func__ ,
|
||||
self->settings.data_format);
|
||||
if (!self->settings.data_format)
|
||||
self->settings.data_format = IRCOMM_WSIZE_8; /* 8N1 */
|
||||
|
||||
IRDA_DEBUG(2, "%s(), flow-control = %d\n", __FUNCTION__ ,
|
||||
IRDA_DEBUG(2, "%s(), flow-control = %d\n", __func__ ,
|
||||
self->settings.flow_control);
|
||||
/*self->settings.flow_control = IRCOMM_RTS_CTS_IN|IRCOMM_RTS_CTS_OUT;*/
|
||||
|
||||
@@ -362,7 +362,7 @@ static void ircomm_tty_discovery_indication(discinfo_t *discovery,
|
||||
struct ircomm_tty_cb *self;
|
||||
struct ircomm_tty_info info;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
/* Important note :
|
||||
* We need to drop all passive discoveries.
|
||||
@@ -398,7 +398,7 @@ void ircomm_tty_disconnect_indication(void *instance, void *sap,
|
||||
{
|
||||
struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) instance;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
|
||||
@@ -428,7 +428,7 @@ static void ircomm_tty_getvalue_confirm(int result, __u16 obj_id,
|
||||
{
|
||||
struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) priv;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
|
||||
@@ -439,13 +439,13 @@ static void ircomm_tty_getvalue_confirm(int result, __u16 obj_id,
|
||||
|
||||
/* Check if request succeeded */
|
||||
if (result != IAS_SUCCESS) {
|
||||
IRDA_DEBUG(4, "%s(), got NULL value!\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(4, "%s(), got NULL value!\n", __func__ );
|
||||
return;
|
||||
}
|
||||
|
||||
switch (value->type) {
|
||||
case IAS_OCT_SEQ:
|
||||
IRDA_DEBUG(2, "%s(), got octet sequence\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), got octet sequence\n", __func__ );
|
||||
|
||||
irda_param_extract_all(self, value->t.oct_seq, value->len,
|
||||
&ircomm_param_info);
|
||||
@@ -455,21 +455,21 @@ static void ircomm_tty_getvalue_confirm(int result, __u16 obj_id,
|
||||
break;
|
||||
case IAS_INTEGER:
|
||||
/* Got LSAP selector */
|
||||
IRDA_DEBUG(2, "%s(), got lsapsel = %d\n", __FUNCTION__ ,
|
||||
IRDA_DEBUG(2, "%s(), got lsapsel = %d\n", __func__ ,
|
||||
value->t.integer);
|
||||
|
||||
if (value->t.integer == -1) {
|
||||
IRDA_DEBUG(0, "%s(), invalid value!\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(0, "%s(), invalid value!\n", __func__ );
|
||||
} else
|
||||
self->dlsap_sel = value->t.integer;
|
||||
|
||||
ircomm_tty_do_event(self, IRCOMM_TTY_GOT_LSAPSEL, NULL, NULL);
|
||||
break;
|
||||
case IAS_MISSING:
|
||||
IRDA_DEBUG(0, "%s(), got IAS_MISSING\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(0, "%s(), got IAS_MISSING\n", __func__ );
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(0, "%s(), got unknown type!\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(0, "%s(), got unknown type!\n", __func__ );
|
||||
break;
|
||||
}
|
||||
irias_delete_value(value);
|
||||
@@ -489,7 +489,7 @@ void ircomm_tty_connect_confirm(void *instance, void *sap,
|
||||
{
|
||||
struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) instance;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
|
||||
@@ -520,7 +520,7 @@ void ircomm_tty_connect_indication(void *instance, void *sap,
|
||||
struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) instance;
|
||||
int clen;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
|
||||
@@ -549,7 +549,7 @@ void ircomm_tty_connect_indication(void *instance, void *sap,
|
||||
*/
|
||||
void ircomm_tty_link_established(struct ircomm_tty_cb *self)
|
||||
{
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
|
||||
@@ -566,10 +566,10 @@ void ircomm_tty_link_established(struct ircomm_tty_cb *self)
|
||||
* line.
|
||||
*/
|
||||
if ((self->flags & ASYNC_CTS_FLOW) && ((self->settings.dce & IRCOMM_CTS) == 0)) {
|
||||
IRDA_DEBUG(0, "%s(), waiting for CTS ...\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(0, "%s(), waiting for CTS ...\n", __func__ );
|
||||
return;
|
||||
} else {
|
||||
IRDA_DEBUG(1, "%s(), starting hardware!\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(1, "%s(), starting hardware!\n", __func__ );
|
||||
|
||||
self->tty->hw_stopped = 0;
|
||||
|
||||
@@ -607,7 +607,7 @@ static void ircomm_tty_watchdog_timer_expired(void *data)
|
||||
{
|
||||
struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) data;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
|
||||
@@ -628,7 +628,7 @@ int ircomm_tty_do_event(struct ircomm_tty_cb *self, IRCOMM_TTY_EVENT event,
|
||||
IRDA_ASSERT(self != NULL, return -1;);
|
||||
IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;);
|
||||
|
||||
IRDA_DEBUG(2, "%s: state=%s, event=%s\n", __FUNCTION__ ,
|
||||
IRDA_DEBUG(2, "%s: state=%s, event=%s\n", __func__ ,
|
||||
ircomm_tty_state[self->state], ircomm_tty_event[event]);
|
||||
|
||||
return (*state[self->state])(self, event, skb, info);
|
||||
@@ -646,7 +646,7 @@ static inline void ircomm_tty_next_state(struct ircomm_tty_cb *self, IRCOMM_TTY_
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
|
||||
|
||||
IRDA_DEBUG(2, "%s: next state=%s, service type=%d\n", __FUNCTION__ ,
|
||||
IRDA_DEBUG(2, "%s: next state=%s, service type=%d\n", __func__ ,
|
||||
ircomm_tty_state[self->state], self->service_type);
|
||||
*/
|
||||
self->state = state;
|
||||
@@ -665,7 +665,7 @@ static int ircomm_tty_state_idle(struct ircomm_tty_cb *self,
|
||||
{
|
||||
int ret = 0;
|
||||
|
||||
IRDA_DEBUG(2, "%s: state=%s, event=%s\n", __FUNCTION__ ,
|
||||
IRDA_DEBUG(2, "%s: state=%s, event=%s\n", __func__ ,
|
||||
ircomm_tty_state[self->state], ircomm_tty_event[event]);
|
||||
switch (event) {
|
||||
case IRCOMM_TTY_ATTACH_CABLE:
|
||||
@@ -681,7 +681,7 @@ static int ircomm_tty_state_idle(struct ircomm_tty_cb *self,
|
||||
|
||||
if (self->iriap) {
|
||||
IRDA_WARNING("%s(), busy with a previous query\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
return -EBUSY;
|
||||
}
|
||||
|
||||
@@ -709,7 +709,7 @@ static int ircomm_tty_state_idle(struct ircomm_tty_cb *self,
|
||||
ircomm_tty_next_state(self, IRCOMM_TTY_IDLE);
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(2, "%s(), unknown event: %s\n", __FUNCTION__ ,
|
||||
IRDA_DEBUG(2, "%s(), unknown event: %s\n", __func__ ,
|
||||
ircomm_tty_event[event]);
|
||||
ret = -EINVAL;
|
||||
}
|
||||
@@ -729,7 +729,7 @@ static int ircomm_tty_state_search(struct ircomm_tty_cb *self,
|
||||
{
|
||||
int ret = 0;
|
||||
|
||||
IRDA_DEBUG(2, "%s: state=%s, event=%s\n", __FUNCTION__ ,
|
||||
IRDA_DEBUG(2, "%s: state=%s, event=%s\n", __func__ ,
|
||||
ircomm_tty_state[self->state], ircomm_tty_event[event]);
|
||||
|
||||
switch (event) {
|
||||
@@ -739,7 +739,7 @@ static int ircomm_tty_state_search(struct ircomm_tty_cb *self,
|
||||
|
||||
if (self->iriap) {
|
||||
IRDA_WARNING("%s(), busy with a previous query\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
return -EBUSY;
|
||||
}
|
||||
|
||||
@@ -782,7 +782,7 @@ static int ircomm_tty_state_search(struct ircomm_tty_cb *self,
|
||||
ircomm_tty_next_state(self, IRCOMM_TTY_IDLE);
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(2, "%s(), unknown event: %s\n", __FUNCTION__ ,
|
||||
IRDA_DEBUG(2, "%s(), unknown event: %s\n", __func__ ,
|
||||
ircomm_tty_event[event]);
|
||||
ret = -EINVAL;
|
||||
}
|
||||
@@ -802,14 +802,14 @@ static int ircomm_tty_state_query_parameters(struct ircomm_tty_cb *self,
|
||||
{
|
||||
int ret = 0;
|
||||
|
||||
IRDA_DEBUG(2, "%s: state=%s, event=%s\n", __FUNCTION__ ,
|
||||
IRDA_DEBUG(2, "%s: state=%s, event=%s\n", __func__ ,
|
||||
ircomm_tty_state[self->state], ircomm_tty_event[event]);
|
||||
|
||||
switch (event) {
|
||||
case IRCOMM_TTY_GOT_PARAMETERS:
|
||||
if (self->iriap) {
|
||||
IRDA_WARNING("%s(), busy with a previous query\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
return -EBUSY;
|
||||
}
|
||||
|
||||
@@ -840,7 +840,7 @@ static int ircomm_tty_state_query_parameters(struct ircomm_tty_cb *self,
|
||||
ircomm_tty_next_state(self, IRCOMM_TTY_IDLE);
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(2, "%s(), unknown event: %s\n", __FUNCTION__ ,
|
||||
IRDA_DEBUG(2, "%s(), unknown event: %s\n", __func__ ,
|
||||
ircomm_tty_event[event]);
|
||||
ret = -EINVAL;
|
||||
}
|
||||
@@ -860,7 +860,7 @@ static int ircomm_tty_state_query_lsap_sel(struct ircomm_tty_cb *self,
|
||||
{
|
||||
int ret = 0;
|
||||
|
||||
IRDA_DEBUG(2, "%s: state=%s, event=%s\n", __FUNCTION__ ,
|
||||
IRDA_DEBUG(2, "%s: state=%s, event=%s\n", __func__ ,
|
||||
ircomm_tty_state[self->state], ircomm_tty_event[event]);
|
||||
|
||||
switch (event) {
|
||||
@@ -889,7 +889,7 @@ static int ircomm_tty_state_query_lsap_sel(struct ircomm_tty_cb *self,
|
||||
ircomm_tty_next_state(self, IRCOMM_TTY_IDLE);
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(2, "%s(), unknown event: %s\n", __FUNCTION__ ,
|
||||
IRDA_DEBUG(2, "%s(), unknown event: %s\n", __func__ ,
|
||||
ircomm_tty_event[event]);
|
||||
ret = -EINVAL;
|
||||
}
|
||||
@@ -909,7 +909,7 @@ static int ircomm_tty_state_setup(struct ircomm_tty_cb *self,
|
||||
{
|
||||
int ret = 0;
|
||||
|
||||
IRDA_DEBUG(2, "%s: state=%s, event=%s\n", __FUNCTION__ ,
|
||||
IRDA_DEBUG(2, "%s: state=%s, event=%s\n", __func__ ,
|
||||
ircomm_tty_state[self->state], ircomm_tty_event[event]);
|
||||
|
||||
switch (event) {
|
||||
@@ -943,7 +943,7 @@ static int ircomm_tty_state_setup(struct ircomm_tty_cb *self,
|
||||
ircomm_tty_next_state(self, IRCOMM_TTY_IDLE);
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(2, "%s(), unknown event: %s\n", __FUNCTION__ ,
|
||||
IRDA_DEBUG(2, "%s(), unknown event: %s\n", __func__ ,
|
||||
ircomm_tty_event[event]);
|
||||
ret = -EINVAL;
|
||||
}
|
||||
@@ -981,13 +981,13 @@ static int ircomm_tty_state_ready(struct ircomm_tty_cb *self,
|
||||
self->settings.dce = IRCOMM_DELTA_CD;
|
||||
ircomm_tty_check_modem_status(self);
|
||||
} else {
|
||||
IRDA_DEBUG(0, "%s(), hanging up!\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(0, "%s(), hanging up!\n", __func__ );
|
||||
if (self->tty)
|
||||
tty_hangup(self->tty);
|
||||
}
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(2, "%s(), unknown event: %s\n", __FUNCTION__ ,
|
||||
IRDA_DEBUG(2, "%s(), unknown event: %s\n", __func__ ,
|
||||
ircomm_tty_event[event]);
|
||||
ret = -EINVAL;
|
||||
}
|
||||
|
@@ -57,7 +57,7 @@ static void ircomm_tty_change_speed(struct ircomm_tty_cb *self)
|
||||
unsigned cflag, cval;
|
||||
int baud;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
if (!self->tty || !self->tty->termios || !self->ircomm)
|
||||
return;
|
||||
@@ -94,7 +94,7 @@ static void ircomm_tty_change_speed(struct ircomm_tty_cb *self)
|
||||
self->settings.flow_control |= IRCOMM_RTS_CTS_IN;
|
||||
/* This got me. Bummer. Jean II */
|
||||
if (self->service_type == IRCOMM_3_WIRE_RAW)
|
||||
IRDA_WARNING("%s(), enabling RTS/CTS on link that doesn't support it (3-wire-raw)\n", __FUNCTION__);
|
||||
IRDA_WARNING("%s(), enabling RTS/CTS on link that doesn't support it (3-wire-raw)\n", __func__);
|
||||
} else {
|
||||
self->flags &= ~ASYNC_CTS_FLOW;
|
||||
self->settings.flow_control &= ~IRCOMM_RTS_CTS_IN;
|
||||
@@ -150,7 +150,7 @@ void ircomm_tty_set_termios(struct tty_struct *tty,
|
||||
struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
|
||||
unsigned int cflag = tty->termios->c_cflag;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
if ((cflag == old_termios->c_cflag) &&
|
||||
(RELEVANT_IFLAG(tty->termios->c_iflag) ==
|
||||
@@ -199,7 +199,7 @@ int ircomm_tty_tiocmget(struct tty_struct *tty, struct file *file)
|
||||
struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
|
||||
unsigned int result;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
if (tty->flags & (1 << TTY_IO_ERROR))
|
||||
return -EIO;
|
||||
@@ -224,7 +224,7 @@ int ircomm_tty_tiocmset(struct tty_struct *tty, struct file *file,
|
||||
{
|
||||
struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
if (tty->flags & (1 << TTY_IO_ERROR))
|
||||
return -EIO;
|
||||
@@ -266,7 +266,7 @@ static int ircomm_tty_get_serial_info(struct ircomm_tty_cb *self,
|
||||
if (!retinfo)
|
||||
return -EFAULT;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
memset(&info, 0, sizeof(info));
|
||||
info.line = self->line;
|
||||
@@ -302,7 +302,7 @@ static int ircomm_tty_set_serial_info(struct ircomm_tty_cb *self,
|
||||
struct serial_struct new_serial;
|
||||
struct ircomm_tty_cb old_state, *state;
|
||||
|
||||
IRDA_DEBUG(0, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(0, "%s()\n", __func__ );
|
||||
|
||||
if (copy_from_user(&new_serial,new_info,sizeof(new_serial)))
|
||||
return -EFAULT;
|
||||
@@ -376,7 +376,7 @@ int ircomm_tty_ioctl(struct tty_struct *tty, struct file *file,
|
||||
struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
|
||||
int ret = 0;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
if ((cmd != TIOCGSERIAL) && (cmd != TIOCSSERIAL) &&
|
||||
(cmd != TIOCSERCONFIG) && (cmd != TIOCSERGSTRUCT) &&
|
||||
@@ -397,7 +397,7 @@ int ircomm_tty_ioctl(struct tty_struct *tty, struct file *file,
|
||||
break;
|
||||
|
||||
case TIOCGICOUNT:
|
||||
IRDA_DEBUG(0, "%s(), TIOCGICOUNT not impl!\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(0, "%s(), TIOCGICOUNT not impl!\n", __func__ );
|
||||
#if 0
|
||||
save_flags(flags); cli();
|
||||
cnow = driver->icount;
|
||||
|
@@ -90,7 +90,7 @@ static void leftover_dongle(void *arg)
|
||||
|
||||
void irda_device_cleanup(void)
|
||||
{
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
hashbin_delete(tasks, (FREE_FUNC) __irda_task_delete);
|
||||
|
||||
@@ -107,7 +107,7 @@ void irda_device_set_media_busy(struct net_device *dev, int status)
|
||||
{
|
||||
struct irlap_cb *self;
|
||||
|
||||
IRDA_DEBUG(4, "%s(%s)\n", __FUNCTION__, status ? "TRUE" : "FALSE");
|
||||
IRDA_DEBUG(4, "%s(%s)\n", __func__, status ? "TRUE" : "FALSE");
|
||||
|
||||
self = (struct irlap_cb *) dev->atalk_ptr;
|
||||
|
||||
@@ -147,11 +147,11 @@ int irda_device_is_receiving(struct net_device *dev)
|
||||
struct if_irda_req req;
|
||||
int ret;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(2, "%s()\n", __func__);
|
||||
|
||||
if (!dev->do_ioctl) {
|
||||
IRDA_ERROR("%s: do_ioctl not impl. by device driver\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
return -1;
|
||||
}
|
||||
|
||||
@@ -191,7 +191,7 @@ static int irda_task_kick(struct irda_task *task)
|
||||
int count = 0;
|
||||
int timeout;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(2, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(task != NULL, return -1;);
|
||||
IRDA_ASSERT(task->magic == IRDA_TASK_MAGIC, return -1;);
|
||||
@@ -201,14 +201,14 @@ static int irda_task_kick(struct irda_task *task)
|
||||
timeout = task->function(task);
|
||||
if (count++ > 100) {
|
||||
IRDA_ERROR("%s: error in task handler!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
irda_task_delete(task);
|
||||
return TRUE;
|
||||
}
|
||||
} while ((timeout == 0) && (task->state != IRDA_TASK_DONE));
|
||||
|
||||
if (timeout < 0) {
|
||||
IRDA_ERROR("%s: Error executing task!\n", __FUNCTION__);
|
||||
IRDA_ERROR("%s: Error executing task!\n", __func__);
|
||||
irda_task_delete(task);
|
||||
return TRUE;
|
||||
}
|
||||
@@ -241,7 +241,7 @@ static int irda_task_kick(struct irda_task *task)
|
||||
finished = FALSE;
|
||||
} else {
|
||||
IRDA_DEBUG(0, "%s(), not finished, and no timeout!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
finished = FALSE;
|
||||
}
|
||||
|
||||
@@ -258,7 +258,7 @@ static void irda_task_timer_expired(void *data)
|
||||
{
|
||||
struct irda_task *task;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(2, "%s()\n", __func__);
|
||||
|
||||
task = (struct irda_task *) data;
|
||||
|
||||
|
@@ -108,7 +108,7 @@ int __init iriap_init(void)
|
||||
irias_objects = hashbin_new(HB_LOCK);
|
||||
if (!irias_objects) {
|
||||
IRDA_WARNING("%s: Can't allocate irias_objects hashbin!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
hashbin_delete(iriap, NULL);
|
||||
return -ENOMEM;
|
||||
}
|
||||
@@ -139,7 +139,7 @@ int __init iriap_init(void)
|
||||
*/
|
||||
server = iriap_open(LSAP_IAS, IAS_SERVER, NULL, NULL);
|
||||
if (!server) {
|
||||
IRDA_DEBUG(0, "%s(), unable to open server\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s(), unable to open server\n", __func__);
|
||||
return -1;
|
||||
}
|
||||
iriap_register_lsap(server, LSAP_IAS, IAS_SERVER);
|
||||
@@ -171,11 +171,11 @@ struct iriap_cb *iriap_open(__u8 slsap_sel, int mode, void *priv,
|
||||
{
|
||||
struct iriap_cb *self;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(2, "%s()\n", __func__);
|
||||
|
||||
self = kzalloc(sizeof(*self), GFP_ATOMIC);
|
||||
if (!self) {
|
||||
IRDA_WARNING("%s: Unable to kmalloc!\n", __FUNCTION__);
|
||||
IRDA_WARNING("%s: Unable to kmalloc!\n", __func__);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
@@ -217,7 +217,7 @@ EXPORT_SYMBOL(iriap_open);
|
||||
*/
|
||||
static void __iriap_close(struct iriap_cb *self)
|
||||
{
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IAS_MAGIC, return;);
|
||||
@@ -241,7 +241,7 @@ void iriap_close(struct iriap_cb *self)
|
||||
{
|
||||
struct iriap_cb *entry;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(2, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IAS_MAGIC, return;);
|
||||
@@ -262,7 +262,7 @@ static int iriap_register_lsap(struct iriap_cb *self, __u8 slsap_sel, int mode)
|
||||
{
|
||||
notify_t notify;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(2, "%s()\n", __func__);
|
||||
|
||||
irda_notify_init(¬ify);
|
||||
notify.connect_confirm = iriap_connect_confirm;
|
||||
@@ -277,7 +277,7 @@ static int iriap_register_lsap(struct iriap_cb *self, __u8 slsap_sel, int mode)
|
||||
|
||||
self->lsap = irlmp_open_lsap(slsap_sel, ¬ify, 0);
|
||||
if (self->lsap == NULL) {
|
||||
IRDA_ERROR("%s: Unable to allocated LSAP!\n", __FUNCTION__);
|
||||
IRDA_ERROR("%s: Unable to allocated LSAP!\n", __func__);
|
||||
return -1;
|
||||
}
|
||||
self->slsap_sel = self->lsap->slsap_sel;
|
||||
@@ -297,7 +297,7 @@ static void iriap_disconnect_indication(void *instance, void *sap,
|
||||
{
|
||||
struct iriap_cb *self;
|
||||
|
||||
IRDA_DEBUG(4, "%s(), reason=%s\n", __FUNCTION__, irlmp_reasons[reason]);
|
||||
IRDA_DEBUG(4, "%s(), reason=%s\n", __func__, irlmp_reasons[reason]);
|
||||
|
||||
self = (struct iriap_cb *) instance;
|
||||
|
||||
@@ -313,7 +313,7 @@ static void iriap_disconnect_indication(void *instance, void *sap,
|
||||
dev_kfree_skb(skb);
|
||||
|
||||
if (self->mode == IAS_CLIENT) {
|
||||
IRDA_DEBUG(4, "%s(), disconnect as client\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s(), disconnect as client\n", __func__);
|
||||
|
||||
|
||||
iriap_do_client_event(self, IAP_LM_DISCONNECT_INDICATION,
|
||||
@@ -326,7 +326,7 @@ static void iriap_disconnect_indication(void *instance, void *sap,
|
||||
if (self->confirm)
|
||||
self->confirm(IAS_DISCONNECT, 0, NULL, self->priv);
|
||||
} else {
|
||||
IRDA_DEBUG(4, "%s(), disconnect as server\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s(), disconnect as server\n", __func__);
|
||||
iriap_do_server_event(self, IAP_LM_DISCONNECT_INDICATION,
|
||||
NULL);
|
||||
iriap_close(self);
|
||||
@@ -340,7 +340,7 @@ static void iriap_disconnect_request(struct iriap_cb *self)
|
||||
{
|
||||
struct sk_buff *tx_skb;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IAS_MAGIC, return;);
|
||||
@@ -349,7 +349,7 @@ static void iriap_disconnect_request(struct iriap_cb *self)
|
||||
if (tx_skb == NULL) {
|
||||
IRDA_DEBUG(0,
|
||||
"%s(), Could not allocate an sk_buff of length %d\n",
|
||||
__FUNCTION__, LMP_MAX_HEADER);
|
||||
__func__, LMP_MAX_HEADER);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -453,13 +453,13 @@ static void iriap_getvaluebyclass_confirm(struct iriap_cb *self,
|
||||
/* Get length, MSB first */
|
||||
len = be16_to_cpu(get_unaligned((__be16 *)(fp+n))); n += 2;
|
||||
|
||||
IRDA_DEBUG(4, "%s(), len=%d\n", __FUNCTION__, len);
|
||||
IRDA_DEBUG(4, "%s(), len=%d\n", __func__, len);
|
||||
|
||||
/* Get object ID, MSB first */
|
||||
obj_id = be16_to_cpu(get_unaligned((__be16 *)(fp+n))); n += 2;
|
||||
|
||||
type = fp[n++];
|
||||
IRDA_DEBUG(4, "%s(), Value type = %d\n", __FUNCTION__, type);
|
||||
IRDA_DEBUG(4, "%s(), Value type = %d\n", __func__, type);
|
||||
|
||||
switch (type) {
|
||||
case IAS_INTEGER:
|
||||
@@ -468,7 +468,7 @@ static void iriap_getvaluebyclass_confirm(struct iriap_cb *self,
|
||||
value = irias_new_integer_value(tmp_cpu32);
|
||||
|
||||
/* Legal values restricted to 0x01-0x6f, page 15 irttp */
|
||||
IRDA_DEBUG(4, "%s(), lsap=%d\n", __FUNCTION__, value->t.integer);
|
||||
IRDA_DEBUG(4, "%s(), lsap=%d\n", __func__, value->t.integer);
|
||||
break;
|
||||
case IAS_STRING:
|
||||
charset = fp[n++];
|
||||
@@ -488,7 +488,7 @@ static void iriap_getvaluebyclass_confirm(struct iriap_cb *self,
|
||||
/* case CS_UNICODE: */
|
||||
default:
|
||||
IRDA_DEBUG(0, "%s(), charset %s, not supported\n",
|
||||
__FUNCTION__, ias_charset_types[charset]);
|
||||
__func__, ias_charset_types[charset]);
|
||||
|
||||
/* Aborting, close connection! */
|
||||
iriap_disconnect_request(self);
|
||||
@@ -496,7 +496,7 @@ static void iriap_getvaluebyclass_confirm(struct iriap_cb *self,
|
||||
/* break; */
|
||||
}
|
||||
value_len = fp[n++];
|
||||
IRDA_DEBUG(4, "%s(), strlen=%d\n", __FUNCTION__, value_len);
|
||||
IRDA_DEBUG(4, "%s(), strlen=%d\n", __func__, value_len);
|
||||
|
||||
/* Make sure the string is null-terminated */
|
||||
fp[n+value_len] = 0x00;
|
||||
@@ -526,7 +526,7 @@ static void iriap_getvaluebyclass_confirm(struct iriap_cb *self,
|
||||
if (self->confirm)
|
||||
self->confirm(IAS_SUCCESS, obj_id, value, self->priv);
|
||||
else {
|
||||
IRDA_DEBUG(0, "%s(), missing handler!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s(), missing handler!\n", __func__);
|
||||
irias_delete_value(value);
|
||||
}
|
||||
}
|
||||
@@ -548,7 +548,7 @@ static void iriap_getvaluebyclass_response(struct iriap_cb *self,
|
||||
__be16 tmp_be16;
|
||||
__u8 *fp;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IAS_MAGIC, return;);
|
||||
@@ -610,12 +610,12 @@ static void iriap_getvaluebyclass_response(struct iriap_cb *self,
|
||||
memcpy(fp+n, value->t.oct_seq, value->len); n+=value->len;
|
||||
break;
|
||||
case IAS_MISSING:
|
||||
IRDA_DEBUG( 3, "%s: sending IAS_MISSING\n", __FUNCTION__);
|
||||
IRDA_DEBUG( 3, "%s: sending IAS_MISSING\n", __func__);
|
||||
skb_put(tx_skb, 1);
|
||||
fp[n++] = value->type;
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(0, "%s(), type not implemented!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s(), type not implemented!\n", __func__);
|
||||
break;
|
||||
}
|
||||
iriap_do_r_connect_event(self, IAP_CALL_RESPONSE, tx_skb);
|
||||
@@ -642,7 +642,7 @@ static void iriap_getvaluebyclass_indication(struct iriap_cb *self,
|
||||
__u8 *fp;
|
||||
int n;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IAS_MAGIC, return;);
|
||||
@@ -697,7 +697,7 @@ void iriap_send_ack(struct iriap_cb *self)
|
||||
struct sk_buff *tx_skb;
|
||||
__u8 *frame;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(2, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IAS_MAGIC, return;);
|
||||
@@ -728,7 +728,7 @@ void iriap_connect_request(struct iriap_cb *self)
|
||||
self->saddr, self->daddr,
|
||||
NULL, NULL);
|
||||
if (ret < 0) {
|
||||
IRDA_DEBUG(0, "%s(), connect failed!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s(), connect failed!\n", __func__);
|
||||
self->confirm(IAS_DISCONNECT, 0, NULL, self->priv);
|
||||
}
|
||||
}
|
||||
@@ -776,7 +776,7 @@ static void iriap_connect_indication(void *instance, void *sap,
|
||||
{
|
||||
struct iriap_cb *self, *new;
|
||||
|
||||
IRDA_DEBUG(1, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(1, "%s()\n", __func__);
|
||||
|
||||
self = (struct iriap_cb *) instance;
|
||||
|
||||
@@ -787,14 +787,14 @@ static void iriap_connect_indication(void *instance, void *sap,
|
||||
/* Start new server */
|
||||
new = iriap_open(LSAP_IAS, IAS_SERVER, NULL, NULL);
|
||||
if (!new) {
|
||||
IRDA_DEBUG(0, "%s(), open failed\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s(), open failed\n", __func__);
|
||||
goto out;
|
||||
}
|
||||
|
||||
/* Now attach up the new "socket" */
|
||||
new->lsap = irlmp_dup(self->lsap, new);
|
||||
if (!new->lsap) {
|
||||
IRDA_DEBUG(0, "%s(), dup failed!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s(), dup failed!\n", __func__);
|
||||
goto out;
|
||||
}
|
||||
|
||||
@@ -824,7 +824,7 @@ static int iriap_data_indication(void *instance, void *sap,
|
||||
__u8 *frame;
|
||||
__u8 opcode;
|
||||
|
||||
IRDA_DEBUG(3, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(3, "%s()\n", __func__);
|
||||
|
||||
self = (struct iriap_cb *) instance;
|
||||
|
||||
@@ -836,7 +836,7 @@ static int iriap_data_indication(void *instance, void *sap,
|
||||
|
||||
if (self->mode == IAS_SERVER) {
|
||||
/* Call server */
|
||||
IRDA_DEBUG(4, "%s(), Calling server!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s(), Calling server!\n", __func__);
|
||||
iriap_do_r_connect_event(self, IAP_RECV_F_LST, skb);
|
||||
goto out;
|
||||
}
|
||||
@@ -844,13 +844,13 @@ static int iriap_data_indication(void *instance, void *sap,
|
||||
if (~opcode & IAP_LST) {
|
||||
IRDA_WARNING("%s:, IrIAS multiframe commands or "
|
||||
"results is not implemented yet!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
goto out;
|
||||
}
|
||||
|
||||
/* Check for ack frames since they don't contain any data */
|
||||
if (opcode & IAP_ACK) {
|
||||
IRDA_DEBUG(0, "%s() Got ack frame!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s() Got ack frame!\n", __func__);
|
||||
goto out;
|
||||
}
|
||||
|
||||
@@ -868,7 +868,7 @@ static int iriap_data_indication(void *instance, void *sap,
|
||||
iriap_getvaluebyclass_confirm(self, skb);
|
||||
break;
|
||||
case IAS_CLASS_UNKNOWN:
|
||||
IRDA_DEBUG(1, "%s(), No such class!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(1, "%s(), No such class!\n", __func__);
|
||||
/* Finished, close connection! */
|
||||
iriap_disconnect_request(self);
|
||||
|
||||
@@ -881,7 +881,7 @@ static int iriap_data_indication(void *instance, void *sap,
|
||||
self->priv);
|
||||
break;
|
||||
case IAS_ATTRIB_UNKNOWN:
|
||||
IRDA_DEBUG(1, "%s(), No such attribute!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(1, "%s(), No such attribute!\n", __func__);
|
||||
/* Finished, close connection! */
|
||||
iriap_disconnect_request(self);
|
||||
|
||||
@@ -896,7 +896,7 @@ static int iriap_data_indication(void *instance, void *sap,
|
||||
}
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(0, "%s(), Unknown op-code: %02x\n", __FUNCTION__,
|
||||
IRDA_DEBUG(0, "%s(), Unknown op-code: %02x\n", __func__,
|
||||
opcode);
|
||||
break;
|
||||
}
|
||||
@@ -918,7 +918,7 @@ void iriap_call_indication(struct iriap_cb *self, struct sk_buff *skb)
|
||||
__u8 *fp;
|
||||
__u8 opcode;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IAS_MAGIC, return;);
|
||||
@@ -929,7 +929,7 @@ void iriap_call_indication(struct iriap_cb *self, struct sk_buff *skb)
|
||||
opcode = fp[0];
|
||||
if (~opcode & 0x80) {
|
||||
IRDA_WARNING("%s: IrIAS multiframe commands or results "
|
||||
"is not implemented yet!\n", __FUNCTION__);
|
||||
"is not implemented yet!\n", __func__);
|
||||
return;
|
||||
}
|
||||
opcode &= 0x7f; /* Mask away LST bit */
|
||||
@@ -937,7 +937,7 @@ void iriap_call_indication(struct iriap_cb *self, struct sk_buff *skb)
|
||||
switch (opcode) {
|
||||
case GET_INFO_BASE:
|
||||
IRDA_WARNING("%s: GetInfoBaseDetails not implemented yet!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
break;
|
||||
case GET_VALUE_BY_CLASS:
|
||||
iriap_getvaluebyclass_indication(self, skb);
|
||||
|
@@ -185,7 +185,7 @@ static void state_s_disconnect(struct iriap_cb *self, IRIAP_EVENT event,
|
||||
case IAP_LM_DISCONNECT_INDICATION:
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(0, "%s(), Unknown event %d\n", __FUNCTION__, event);
|
||||
IRDA_DEBUG(0, "%s(), Unknown event %d\n", __func__, event);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -217,7 +217,7 @@ static void state_s_connecting(struct iriap_cb *self, IRIAP_EVENT event,
|
||||
iriap_next_client_state(self, S_DISCONNECT);
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(0, "%s(), Unknown event %d\n", __FUNCTION__, event);
|
||||
IRDA_DEBUG(0, "%s(), Unknown event %d\n", __func__, event);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -269,7 +269,7 @@ static void state_s_make_call(struct iriap_cb *self, IRIAP_EVENT event,
|
||||
iriap_next_call_state(self, S_OUTSTANDING);
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(0, "%s(), Unknown event %d\n", __FUNCTION__, event);
|
||||
IRDA_DEBUG(0, "%s(), Unknown event %d\n", __func__, event);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -283,7 +283,7 @@ static void state_s_make_call(struct iriap_cb *self, IRIAP_EVENT event,
|
||||
static void state_s_calling(struct iriap_cb *self, IRIAP_EVENT event,
|
||||
struct sk_buff *skb)
|
||||
{
|
||||
IRDA_DEBUG(0, "%s(), Not implemented\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s(), Not implemented\n", __func__);
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -305,7 +305,7 @@ static void state_s_outstanding(struct iriap_cb *self, IRIAP_EVENT event,
|
||||
iriap_next_call_state(self, S_WAIT_FOR_CALL);
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(0, "%s(), Unknown event %d\n", __FUNCTION__, event);
|
||||
IRDA_DEBUG(0, "%s(), Unknown event %d\n", __func__, event);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -318,7 +318,7 @@ static void state_s_outstanding(struct iriap_cb *self, IRIAP_EVENT event,
|
||||
static void state_s_replying(struct iriap_cb *self, IRIAP_EVENT event,
|
||||
struct sk_buff *skb)
|
||||
{
|
||||
IRDA_DEBUG(0, "%s(), Not implemented\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s(), Not implemented\n", __func__);
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -330,7 +330,7 @@ static void state_s_replying(struct iriap_cb *self, IRIAP_EVENT event,
|
||||
static void state_s_wait_for_call(struct iriap_cb *self, IRIAP_EVENT event,
|
||||
struct sk_buff *skb)
|
||||
{
|
||||
IRDA_DEBUG(0, "%s(), Not implemented\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s(), Not implemented\n", __func__);
|
||||
}
|
||||
|
||||
|
||||
@@ -343,7 +343,7 @@ static void state_s_wait_for_call(struct iriap_cb *self, IRIAP_EVENT event,
|
||||
static void state_s_wait_active(struct iriap_cb *self, IRIAP_EVENT event,
|
||||
struct sk_buff *skb)
|
||||
{
|
||||
IRDA_DEBUG(0, "%s(), Not implemented\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s(), Not implemented\n", __func__);
|
||||
}
|
||||
|
||||
/**************************************************************************
|
||||
@@ -367,7 +367,7 @@ static void state_r_disconnect(struct iriap_cb *self, IRIAP_EVENT event,
|
||||
case IAP_LM_CONNECT_INDICATION:
|
||||
tx_skb = alloc_skb(LMP_MAX_HEADER, GFP_ATOMIC);
|
||||
if (tx_skb == NULL) {
|
||||
IRDA_WARNING("%s: unable to malloc!\n", __FUNCTION__);
|
||||
IRDA_WARNING("%s: unable to malloc!\n", __func__);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -386,7 +386,7 @@ static void state_r_disconnect(struct iriap_cb *self, IRIAP_EVENT event,
|
||||
iriap_next_r_connect_state(self, R_RECEIVING);
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(0, "%s(), unknown event %d\n", __FUNCTION__, event);
|
||||
IRDA_DEBUG(0, "%s(), unknown event %d\n", __func__, event);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -397,7 +397,7 @@ static void state_r_disconnect(struct iriap_cb *self, IRIAP_EVENT event,
|
||||
static void state_r_call(struct iriap_cb *self, IRIAP_EVENT event,
|
||||
struct sk_buff *skb)
|
||||
{
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
switch (event) {
|
||||
case IAP_LM_DISCONNECT_INDICATION:
|
||||
@@ -406,7 +406,7 @@ static void state_r_call(struct iriap_cb *self, IRIAP_EVENT event,
|
||||
iriap_next_r_connect_state(self, R_WAITING);
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(0, "%s(), unknown event!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s(), unknown event!\n", __func__);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -421,13 +421,13 @@ static void state_r_call(struct iriap_cb *self, IRIAP_EVENT event,
|
||||
static void state_r_waiting(struct iriap_cb *self, IRIAP_EVENT event,
|
||||
struct sk_buff *skb)
|
||||
{
|
||||
IRDA_DEBUG(0, "%s(), Not implemented\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s(), Not implemented\n", __func__);
|
||||
}
|
||||
|
||||
static void state_r_wait_active(struct iriap_cb *self, IRIAP_EVENT event,
|
||||
struct sk_buff *skb)
|
||||
{
|
||||
IRDA_DEBUG(0, "%s(), Not implemented\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s(), Not implemented\n", __func__);
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -439,7 +439,7 @@ static void state_r_wait_active(struct iriap_cb *self, IRIAP_EVENT event,
|
||||
static void state_r_receiving(struct iriap_cb *self, IRIAP_EVENT event,
|
||||
struct sk_buff *skb)
|
||||
{
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
switch (event) {
|
||||
case IAP_RECV_F_LST:
|
||||
@@ -448,7 +448,7 @@ static void state_r_receiving(struct iriap_cb *self, IRIAP_EVENT event,
|
||||
iriap_call_indication(self, skb);
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(0, "%s(), unknown event!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s(), unknown event!\n", __func__);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -462,7 +462,7 @@ static void state_r_receiving(struct iriap_cb *self, IRIAP_EVENT event,
|
||||
static void state_r_execute(struct iriap_cb *self, IRIAP_EVENT event,
|
||||
struct sk_buff *skb)
|
||||
{
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(skb != NULL, return;);
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
@@ -483,7 +483,7 @@ static void state_r_execute(struct iriap_cb *self, IRIAP_EVENT event,
|
||||
irlmp_data_request(self->lsap, skb);
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(0, "%s(), unknown event!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s(), unknown event!\n", __func__);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -491,7 +491,7 @@ static void state_r_execute(struct iriap_cb *self, IRIAP_EVENT event,
|
||||
static void state_r_returning(struct iriap_cb *self, IRIAP_EVENT event,
|
||||
struct sk_buff *skb)
|
||||
{
|
||||
IRDA_DEBUG(0, "%s(), event=%d\n", __FUNCTION__, event);
|
||||
IRDA_DEBUG(0, "%s(), event=%d\n", __func__, event);
|
||||
|
||||
switch (event) {
|
||||
case IAP_RECV_F_LST:
|
||||
|
@@ -47,12 +47,12 @@ struct ias_object *irias_new_object( char *name, int id)
|
||||
{
|
||||
struct ias_object *obj;
|
||||
|
||||
IRDA_DEBUG( 4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG( 4, "%s()\n", __func__);
|
||||
|
||||
obj = kzalloc(sizeof(struct ias_object), GFP_ATOMIC);
|
||||
if (obj == NULL) {
|
||||
IRDA_WARNING("%s(), Unable to allocate object!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
@@ -60,7 +60,7 @@ struct ias_object *irias_new_object( char *name, int id)
|
||||
obj->name = kstrndup(name, IAS_MAX_CLASSNAME, GFP_ATOMIC);
|
||||
if (!obj->name) {
|
||||
IRDA_WARNING("%s(), Unable to allocate name!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
kfree(obj);
|
||||
return NULL;
|
||||
}
|
||||
@@ -73,7 +73,7 @@ struct ias_object *irias_new_object( char *name, int id)
|
||||
|
||||
if (obj->attribs == NULL) {
|
||||
IRDA_WARNING("%s(), Unable to allocate attribs!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
kfree(obj->name);
|
||||
kfree(obj);
|
||||
return NULL;
|
||||
@@ -134,7 +134,7 @@ int irias_delete_object(struct ias_object *obj)
|
||||
node = hashbin_remove_this(irias_objects, (irda_queue_t *) obj);
|
||||
if (!node)
|
||||
IRDA_DEBUG( 0, "%s(), object already removed!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
|
||||
/* Destroy */
|
||||
__irias_delete_object(obj);
|
||||
@@ -268,7 +268,7 @@ int irias_object_change_attribute(char *obj_name, char *attrib_name,
|
||||
/* Find object */
|
||||
obj = hashbin_lock_find(irias_objects, 0, obj_name);
|
||||
if (obj == NULL) {
|
||||
IRDA_WARNING("%s: Unable to find object: %s\n", __FUNCTION__,
|
||||
IRDA_WARNING("%s: Unable to find object: %s\n", __func__,
|
||||
obj_name);
|
||||
return -1;
|
||||
}
|
||||
@@ -280,14 +280,14 @@ int irias_object_change_attribute(char *obj_name, char *attrib_name,
|
||||
attrib = hashbin_find(obj->attribs, 0, attrib_name);
|
||||
if (attrib == NULL) {
|
||||
IRDA_WARNING("%s: Unable to find attribute: %s\n",
|
||||
__FUNCTION__, attrib_name);
|
||||
__func__, attrib_name);
|
||||
spin_unlock_irqrestore(&obj->attribs->hb_spinlock, flags);
|
||||
return -1;
|
||||
}
|
||||
|
||||
if ( attrib->value->type != new_value->type) {
|
||||
IRDA_DEBUG( 0, "%s(), changing value type not allowed!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
spin_unlock_irqrestore(&obj->attribs->hb_spinlock, flags);
|
||||
return -1;
|
||||
}
|
||||
@@ -322,7 +322,7 @@ void irias_add_integer_attrib(struct ias_object *obj, char *name, int value,
|
||||
attrib = kzalloc(sizeof(struct ias_attrib), GFP_ATOMIC);
|
||||
if (attrib == NULL) {
|
||||
IRDA_WARNING("%s: Unable to allocate attribute!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -333,7 +333,7 @@ void irias_add_integer_attrib(struct ias_object *obj, char *name, int value,
|
||||
attrib->value = irias_new_integer_value(value);
|
||||
if (!attrib->name || !attrib->value) {
|
||||
IRDA_WARNING("%s: Unable to allocate attribute!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
if (attrib->value)
|
||||
irias_delete_value(attrib->value);
|
||||
kfree(attrib->name);
|
||||
@@ -366,7 +366,7 @@ void irias_add_octseq_attrib(struct ias_object *obj, char *name, __u8 *octets,
|
||||
attrib = kzalloc(sizeof(struct ias_attrib), GFP_ATOMIC);
|
||||
if (attrib == NULL) {
|
||||
IRDA_WARNING("%s: Unable to allocate attribute!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -376,7 +376,7 @@ void irias_add_octseq_attrib(struct ias_object *obj, char *name, __u8 *octets,
|
||||
attrib->value = irias_new_octseq_value( octets, len);
|
||||
if (!attrib->name || !attrib->value) {
|
||||
IRDA_WARNING("%s: Unable to allocate attribute!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
if (attrib->value)
|
||||
irias_delete_value(attrib->value);
|
||||
kfree(attrib->name);
|
||||
@@ -408,7 +408,7 @@ void irias_add_string_attrib(struct ias_object *obj, char *name, char *value,
|
||||
attrib = kzalloc(sizeof( struct ias_attrib), GFP_ATOMIC);
|
||||
if (attrib == NULL) {
|
||||
IRDA_WARNING("%s: Unable to allocate attribute!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -418,7 +418,7 @@ void irias_add_string_attrib(struct ias_object *obj, char *name, char *value,
|
||||
attrib->value = irias_new_string_value(value);
|
||||
if (!attrib->name || !attrib->value) {
|
||||
IRDA_WARNING("%s: Unable to allocate attribute!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
if (attrib->value)
|
||||
irias_delete_value(attrib->value);
|
||||
kfree(attrib->name);
|
||||
@@ -442,7 +442,7 @@ struct ias_value *irias_new_integer_value(int integer)
|
||||
|
||||
value = kzalloc(sizeof(struct ias_value), GFP_ATOMIC);
|
||||
if (value == NULL) {
|
||||
IRDA_WARNING("%s: Unable to kmalloc!\n", __FUNCTION__);
|
||||
IRDA_WARNING("%s: Unable to kmalloc!\n", __func__);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
@@ -467,7 +467,7 @@ struct ias_value *irias_new_string_value(char *string)
|
||||
|
||||
value = kzalloc(sizeof(struct ias_value), GFP_ATOMIC);
|
||||
if (value == NULL) {
|
||||
IRDA_WARNING("%s: Unable to kmalloc!\n", __FUNCTION__);
|
||||
IRDA_WARNING("%s: Unable to kmalloc!\n", __func__);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
@@ -475,7 +475,7 @@ struct ias_value *irias_new_string_value(char *string)
|
||||
value->charset = CS_ASCII;
|
||||
value->t.string = kstrndup(string, IAS_MAX_STRING, GFP_ATOMIC);
|
||||
if (!value->t.string) {
|
||||
IRDA_WARNING("%s: Unable to kmalloc!\n", __FUNCTION__);
|
||||
IRDA_WARNING("%s: Unable to kmalloc!\n", __func__);
|
||||
kfree(value);
|
||||
return NULL;
|
||||
}
|
||||
@@ -498,7 +498,7 @@ struct ias_value *irias_new_octseq_value(__u8 *octseq , int len)
|
||||
|
||||
value = kzalloc(sizeof(struct ias_value), GFP_ATOMIC);
|
||||
if (value == NULL) {
|
||||
IRDA_WARNING("%s: Unable to kmalloc!\n", __FUNCTION__);
|
||||
IRDA_WARNING("%s: Unable to kmalloc!\n", __func__);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
@@ -510,7 +510,7 @@ struct ias_value *irias_new_octseq_value(__u8 *octseq , int len)
|
||||
|
||||
value->t.oct_seq = kmemdup(octseq, len, GFP_ATOMIC);
|
||||
if (value->t.oct_seq == NULL){
|
||||
IRDA_WARNING("%s: Unable to kmalloc!\n", __FUNCTION__);
|
||||
IRDA_WARNING("%s: Unable to kmalloc!\n", __func__);
|
||||
kfree(value);
|
||||
return NULL;
|
||||
}
|
||||
@@ -523,7 +523,7 @@ struct ias_value *irias_new_missing_value(void)
|
||||
|
||||
value = kzalloc(sizeof(struct ias_value), GFP_ATOMIC);
|
||||
if (value == NULL) {
|
||||
IRDA_WARNING("%s: Unable to kmalloc!\n", __FUNCTION__);
|
||||
IRDA_WARNING("%s: Unable to kmalloc!\n", __func__);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
@@ -540,7 +540,7 @@ struct ias_value *irias_new_missing_value(void)
|
||||
*/
|
||||
void irias_delete_value(struct ias_value *value)
|
||||
{
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(value != NULL, return;);
|
||||
|
||||
@@ -558,7 +558,7 @@ void irias_delete_value(struct ias_value *value)
|
||||
kfree(value->t.oct_seq);
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(0, "%s(), Unknown value type!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s(), Unknown value type!\n", __func__);
|
||||
break;
|
||||
}
|
||||
kfree(value);
|
||||
|
@@ -72,7 +72,7 @@ static void irlan_client_kick_timer_expired(void *data)
|
||||
{
|
||||
struct irlan_cb *self = (struct irlan_cb *) data;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IRLAN_MAGIC, return;);
|
||||
@@ -91,7 +91,7 @@ static void irlan_client_kick_timer_expired(void *data)
|
||||
|
||||
static void irlan_client_start_kick_timer(struct irlan_cb *self, int timeout)
|
||||
{
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(4, "%s()\n", __func__ );
|
||||
|
||||
irda_start_timer(&self->client.kick_timer, timeout, (void *) self,
|
||||
irlan_client_kick_timer_expired);
|
||||
@@ -105,7 +105,7 @@ static void irlan_client_start_kick_timer(struct irlan_cb *self, int timeout)
|
||||
*/
|
||||
void irlan_client_wakeup(struct irlan_cb *self, __u32 saddr, __u32 daddr)
|
||||
{
|
||||
IRDA_DEBUG(1, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(1, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IRLAN_MAGIC, return;);
|
||||
@@ -117,7 +117,7 @@ void irlan_client_wakeup(struct irlan_cb *self, __u32 saddr, __u32 daddr)
|
||||
if ((self->client.state != IRLAN_IDLE) ||
|
||||
(self->provider.access_type == ACCESS_DIRECT))
|
||||
{
|
||||
IRDA_DEBUG(0, "%s(), already awake!\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(0, "%s(), already awake!\n", __func__ );
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -126,7 +126,7 @@ void irlan_client_wakeup(struct irlan_cb *self, __u32 saddr, __u32 daddr)
|
||||
self->daddr = daddr;
|
||||
|
||||
if (self->disconnect_reason == LM_USER_REQUEST) {
|
||||
IRDA_DEBUG(0, "%s(), still stopped by user\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(0, "%s(), still stopped by user\n", __func__ );
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -153,7 +153,7 @@ void irlan_client_discovery_indication(discinfo_t *discovery,
|
||||
struct irlan_cb *self;
|
||||
__u32 saddr, daddr;
|
||||
|
||||
IRDA_DEBUG(1, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(1, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(discovery != NULL, return;);
|
||||
|
||||
@@ -175,7 +175,7 @@ void irlan_client_discovery_indication(discinfo_t *discovery,
|
||||
if (self) {
|
||||
IRDA_ASSERT(self->magic == IRLAN_MAGIC, goto out;);
|
||||
|
||||
IRDA_DEBUG(1, "%s(), Found instance (%08x)!\n", __FUNCTION__ ,
|
||||
IRDA_DEBUG(1, "%s(), Found instance (%08x)!\n", __func__ ,
|
||||
daddr);
|
||||
|
||||
irlan_client_wakeup(self, saddr, daddr);
|
||||
@@ -195,7 +195,7 @@ static int irlan_client_ctrl_data_indication(void *instance, void *sap,
|
||||
{
|
||||
struct irlan_cb *self;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
self = (struct irlan_cb *) instance;
|
||||
|
||||
@@ -206,7 +206,7 @@ static int irlan_client_ctrl_data_indication(void *instance, void *sap,
|
||||
irlan_do_client_event(self, IRLAN_DATA_INDICATION, skb);
|
||||
|
||||
/* Ready for a new command */
|
||||
IRDA_DEBUG(2, "%s(), clearing tx_busy\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), clearing tx_busy\n", __func__ );
|
||||
self->client.tx_busy = FALSE;
|
||||
|
||||
/* Check if we have some queued commands waiting to be sent */
|
||||
@@ -223,7 +223,7 @@ static void irlan_client_ctrl_disconnect_indication(void *instance, void *sap,
|
||||
struct tsap_cb *tsap;
|
||||
struct sk_buff *skb;
|
||||
|
||||
IRDA_DEBUG(4, "%s(), reason=%d\n", __FUNCTION__ , reason);
|
||||
IRDA_DEBUG(4, "%s(), reason=%d\n", __func__ , reason);
|
||||
|
||||
self = (struct irlan_cb *) instance;
|
||||
tsap = (struct tsap_cb *) sap;
|
||||
@@ -255,7 +255,7 @@ static void irlan_client_open_ctrl_tsap(struct irlan_cb *self)
|
||||
struct tsap_cb *tsap;
|
||||
notify_t notify;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(4, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IRLAN_MAGIC, return;);
|
||||
@@ -275,7 +275,7 @@ static void irlan_client_open_ctrl_tsap(struct irlan_cb *self)
|
||||
|
||||
tsap = irttp_open_tsap(LSAP_ANY, DEFAULT_INITIAL_CREDIT, ¬ify);
|
||||
if (!tsap) {
|
||||
IRDA_DEBUG(2, "%s(), Got no tsap!\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), Got no tsap!\n", __func__ );
|
||||
return;
|
||||
}
|
||||
self->client.tsap_ctrl = tsap;
|
||||
@@ -295,7 +295,7 @@ static void irlan_client_ctrl_connect_confirm(void *instance, void *sap,
|
||||
{
|
||||
struct irlan_cb *self;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(4, "%s()\n", __func__ );
|
||||
|
||||
self = (struct irlan_cb *) instance;
|
||||
|
||||
@@ -374,13 +374,13 @@ void irlan_client_parse_response(struct irlan_cb *self, struct sk_buff *skb)
|
||||
|
||||
IRDA_ASSERT(skb != NULL, return;);
|
||||
|
||||
IRDA_DEBUG(4, "%s() skb->len=%d\n", __FUNCTION__ , (int) skb->len);
|
||||
IRDA_DEBUG(4, "%s() skb->len=%d\n", __func__ , (int) skb->len);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IRLAN_MAGIC, return;);
|
||||
|
||||
if (!skb) {
|
||||
IRDA_ERROR("%s(), Got NULL skb!\n", __FUNCTION__);
|
||||
IRDA_ERROR("%s(), Got NULL skb!\n", __func__);
|
||||
return;
|
||||
}
|
||||
frame = skb->data;
|
||||
@@ -405,7 +405,7 @@ void irlan_client_parse_response(struct irlan_cb *self, struct sk_buff *skb)
|
||||
/* How many parameters? */
|
||||
count = frame[1];
|
||||
|
||||
IRDA_DEBUG(4, "%s(), got %d parameters\n", __FUNCTION__ , count);
|
||||
IRDA_DEBUG(4, "%s(), got %d parameters\n", __func__ , count);
|
||||
|
||||
ptr = frame+2;
|
||||
|
||||
@@ -413,7 +413,7 @@ void irlan_client_parse_response(struct irlan_cb *self, struct sk_buff *skb)
|
||||
for (i=0; i<count;i++) {
|
||||
ret = irlan_extract_param(ptr, name, value, &val_len);
|
||||
if (ret < 0) {
|
||||
IRDA_DEBUG(2, "%s(), IrLAN, Error!\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), IrLAN, Error!\n", __func__ );
|
||||
break;
|
||||
}
|
||||
ptr += ret;
|
||||
@@ -438,7 +438,7 @@ static void irlan_check_response_param(struct irlan_cb *self, char *param,
|
||||
int i;
|
||||
DECLARE_MAC_BUF(mac);
|
||||
|
||||
IRDA_DEBUG(4, "%s(), parm=%s\n", __FUNCTION__ , param);
|
||||
IRDA_DEBUG(4, "%s(), parm=%s\n", __func__ , param);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IRLAN_MAGIC, return;);
|
||||
@@ -476,7 +476,7 @@ static void irlan_check_response_param(struct irlan_cb *self, char *param,
|
||||
else if (strcmp(value, "HOSTED") == 0)
|
||||
self->client.access_type = ACCESS_HOSTED;
|
||||
else {
|
||||
IRDA_DEBUG(2, "%s(), unknown access type!\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), unknown access type!\n", __func__ );
|
||||
}
|
||||
}
|
||||
/* IRLAN version */
|
||||
@@ -498,14 +498,14 @@ static void irlan_check_response_param(struct irlan_cb *self, char *param,
|
||||
memcpy(&tmp_cpu, value, 2); /* Align value */
|
||||
le16_to_cpus(&tmp_cpu); /* Convert to host order */
|
||||
self->client.recv_arb_val = tmp_cpu;
|
||||
IRDA_DEBUG(2, "%s(), receive arb val=%d\n", __FUNCTION__ ,
|
||||
IRDA_DEBUG(2, "%s(), receive arb val=%d\n", __func__ ,
|
||||
self->client.recv_arb_val);
|
||||
}
|
||||
if (strcmp(param, "MAX_FRAME") == 0) {
|
||||
memcpy(&tmp_cpu, value, 2); /* Align value */
|
||||
le16_to_cpus(&tmp_cpu); /* Convert to host order */
|
||||
self->client.max_frame = tmp_cpu;
|
||||
IRDA_DEBUG(4, "%s(), max frame=%d\n", __FUNCTION__ ,
|
||||
IRDA_DEBUG(4, "%s(), max frame=%d\n", __func__ ,
|
||||
self->client.max_frame);
|
||||
}
|
||||
|
||||
@@ -539,7 +539,7 @@ void irlan_client_get_value_confirm(int result, __u16 obj_id,
|
||||
{
|
||||
struct irlan_cb *self;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(4, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(priv != NULL, return;);
|
||||
|
||||
@@ -552,7 +552,7 @@ void irlan_client_get_value_confirm(int result, __u16 obj_id,
|
||||
|
||||
/* Check if request succeeded */
|
||||
if (result != IAS_SUCCESS) {
|
||||
IRDA_DEBUG(2, "%s(), got NULL value!\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), got NULL value!\n", __func__ );
|
||||
irlan_do_client_event(self, IRLAN_IAS_PROVIDER_NOT_AVAIL,
|
||||
NULL);
|
||||
return;
|
||||
@@ -570,7 +570,7 @@ void irlan_client_get_value_confirm(int result, __u16 obj_id,
|
||||
irias_delete_value(value);
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(2, "%s(), unknown type!\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), unknown type!\n", __func__ );
|
||||
break;
|
||||
}
|
||||
irlan_do_client_event(self, IRLAN_IAS_PROVIDER_NOT_AVAIL, NULL);
|
||||
|
@@ -92,7 +92,7 @@ void irlan_do_client_event(struct irlan_cb *self, IRLAN_EVENT event,
|
||||
static int irlan_client_state_idle(struct irlan_cb *self, IRLAN_EVENT event,
|
||||
struct sk_buff *skb)
|
||||
{
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(4, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return -1;);
|
||||
IRDA_ASSERT(self->magic == IRLAN_MAGIC, return -1;);
|
||||
@@ -101,7 +101,7 @@ static int irlan_client_state_idle(struct irlan_cb *self, IRLAN_EVENT event,
|
||||
case IRLAN_DISCOVERY_INDICATION:
|
||||
if (self->client.iriap) {
|
||||
IRDA_WARNING("%s(), busy with a previous query\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
return -EBUSY;
|
||||
}
|
||||
|
||||
@@ -114,10 +114,10 @@ static int irlan_client_state_idle(struct irlan_cb *self, IRLAN_EVENT event,
|
||||
"IrLAN", "IrDA:TinyTP:LsapSel");
|
||||
break;
|
||||
case IRLAN_WATCHDOG_TIMEOUT:
|
||||
IRDA_DEBUG(2, "%s(), IRLAN_WATCHDOG_TIMEOUT\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), IRLAN_WATCHDOG_TIMEOUT\n", __func__ );
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(4, "%s(), Unknown event %d\n", __FUNCTION__ , event);
|
||||
IRDA_DEBUG(4, "%s(), Unknown event %d\n", __func__ , event);
|
||||
break;
|
||||
}
|
||||
if (skb)
|
||||
@@ -136,7 +136,7 @@ static int irlan_client_state_idle(struct irlan_cb *self, IRLAN_EVENT event,
|
||||
static int irlan_client_state_query(struct irlan_cb *self, IRLAN_EVENT event,
|
||||
struct sk_buff *skb)
|
||||
{
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(4, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return -1;);
|
||||
IRDA_ASSERT(self->magic == IRLAN_MAGIC, return -1;);
|
||||
@@ -154,7 +154,7 @@ static int irlan_client_state_query(struct irlan_cb *self, IRLAN_EVENT event,
|
||||
irlan_next_client_state(self, IRLAN_CONN);
|
||||
break;
|
||||
case IRLAN_IAS_PROVIDER_NOT_AVAIL:
|
||||
IRDA_DEBUG(2, "%s(), IAS_PROVIDER_NOT_AVAIL\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), IAS_PROVIDER_NOT_AVAIL\n", __func__ );
|
||||
irlan_next_client_state(self, IRLAN_IDLE);
|
||||
|
||||
/* Give the client a kick! */
|
||||
@@ -167,10 +167,10 @@ static int irlan_client_state_query(struct irlan_cb *self, IRLAN_EVENT event,
|
||||
irlan_next_client_state(self, IRLAN_IDLE);
|
||||
break;
|
||||
case IRLAN_WATCHDOG_TIMEOUT:
|
||||
IRDA_DEBUG(2, "%s(), IRLAN_WATCHDOG_TIMEOUT\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), IRLAN_WATCHDOG_TIMEOUT\n", __func__ );
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(2, "%s(), Unknown event %d\n", __FUNCTION__ , event);
|
||||
IRDA_DEBUG(2, "%s(), Unknown event %d\n", __func__ , event);
|
||||
break;
|
||||
}
|
||||
if (skb)
|
||||
@@ -189,7 +189,7 @@ static int irlan_client_state_query(struct irlan_cb *self, IRLAN_EVENT event,
|
||||
static int irlan_client_state_conn(struct irlan_cb *self, IRLAN_EVENT event,
|
||||
struct sk_buff *skb)
|
||||
{
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(4, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return -1;);
|
||||
|
||||
@@ -204,10 +204,10 @@ static int irlan_client_state_conn(struct irlan_cb *self, IRLAN_EVENT event,
|
||||
irlan_next_client_state(self, IRLAN_IDLE);
|
||||
break;
|
||||
case IRLAN_WATCHDOG_TIMEOUT:
|
||||
IRDA_DEBUG(2, "%s(), IRLAN_WATCHDOG_TIMEOUT\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), IRLAN_WATCHDOG_TIMEOUT\n", __func__ );
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(2, "%s(), Unknown event %d\n", __FUNCTION__ , event);
|
||||
IRDA_DEBUG(2, "%s(), Unknown event %d\n", __func__ , event);
|
||||
break;
|
||||
}
|
||||
if (skb)
|
||||
@@ -224,7 +224,7 @@ static int irlan_client_state_conn(struct irlan_cb *self, IRLAN_EVENT event,
|
||||
static int irlan_client_state_info(struct irlan_cb *self, IRLAN_EVENT event,
|
||||
struct sk_buff *skb)
|
||||
{
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(4, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return -1;);
|
||||
|
||||
@@ -244,10 +244,10 @@ static int irlan_client_state_info(struct irlan_cb *self, IRLAN_EVENT event,
|
||||
irlan_next_client_state(self, IRLAN_IDLE);
|
||||
break;
|
||||
case IRLAN_WATCHDOG_TIMEOUT:
|
||||
IRDA_DEBUG(2, "%s(), IRLAN_WATCHDOG_TIMEOUT\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), IRLAN_WATCHDOG_TIMEOUT\n", __func__ );
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(2, "%s(), Unknown event %d\n", __FUNCTION__ , event);
|
||||
IRDA_DEBUG(2, "%s(), Unknown event %d\n", __func__ , event);
|
||||
break;
|
||||
}
|
||||
if (skb)
|
||||
@@ -266,7 +266,7 @@ static int irlan_client_state_info(struct irlan_cb *self, IRLAN_EVENT event,
|
||||
static int irlan_client_state_media(struct irlan_cb *self, IRLAN_EVENT event,
|
||||
struct sk_buff *skb)
|
||||
{
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(4, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return -1;);
|
||||
|
||||
@@ -281,10 +281,10 @@ static int irlan_client_state_media(struct irlan_cb *self, IRLAN_EVENT event,
|
||||
irlan_next_client_state(self, IRLAN_IDLE);
|
||||
break;
|
||||
case IRLAN_WATCHDOG_TIMEOUT:
|
||||
IRDA_DEBUG(2, "%s(), IRLAN_WATCHDOG_TIMEOUT\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), IRLAN_WATCHDOG_TIMEOUT\n", __func__ );
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(2, "%s(), Unknown event %d\n", __FUNCTION__ , event);
|
||||
IRDA_DEBUG(2, "%s(), Unknown event %d\n", __func__ , event);
|
||||
break;
|
||||
}
|
||||
if (skb)
|
||||
@@ -305,7 +305,7 @@ static int irlan_client_state_open(struct irlan_cb *self, IRLAN_EVENT event,
|
||||
{
|
||||
struct qos_info qos;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(4, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return -1;);
|
||||
|
||||
@@ -344,7 +344,7 @@ static int irlan_client_state_open(struct irlan_cb *self, IRLAN_EVENT event,
|
||||
irlan_next_client_state(self, IRLAN_DATA);
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(2, "%s(), unknown access type!\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), unknown access type!\n", __func__ );
|
||||
break;
|
||||
}
|
||||
break;
|
||||
@@ -353,10 +353,10 @@ static int irlan_client_state_open(struct irlan_cb *self, IRLAN_EVENT event,
|
||||
irlan_next_client_state(self, IRLAN_IDLE);
|
||||
break;
|
||||
case IRLAN_WATCHDOG_TIMEOUT:
|
||||
IRDA_DEBUG(2, "%s(), IRLAN_WATCHDOG_TIMEOUT\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), IRLAN_WATCHDOG_TIMEOUT\n", __func__ );
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(2, "%s(), Unknown event %d\n", __FUNCTION__ , event);
|
||||
IRDA_DEBUG(2, "%s(), Unknown event %d\n", __func__ , event);
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -376,7 +376,7 @@ static int irlan_client_state_open(struct irlan_cb *self, IRLAN_EVENT event,
|
||||
static int irlan_client_state_wait(struct irlan_cb *self, IRLAN_EVENT event,
|
||||
struct sk_buff *skb)
|
||||
{
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(4, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return -1;);
|
||||
|
||||
@@ -390,10 +390,10 @@ static int irlan_client_state_wait(struct irlan_cb *self, IRLAN_EVENT event,
|
||||
irlan_next_client_state(self, IRLAN_IDLE);
|
||||
break;
|
||||
case IRLAN_WATCHDOG_TIMEOUT:
|
||||
IRDA_DEBUG(2, "%s(), IRLAN_WATCHDOG_TIMEOUT\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), IRLAN_WATCHDOG_TIMEOUT\n", __func__ );
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(2, "%s(), Unknown event %d\n", __FUNCTION__ , event);
|
||||
IRDA_DEBUG(2, "%s(), Unknown event %d\n", __func__ , event);
|
||||
break;
|
||||
}
|
||||
if (skb)
|
||||
@@ -407,7 +407,7 @@ static int irlan_client_state_arb(struct irlan_cb *self, IRLAN_EVENT event,
|
||||
{
|
||||
struct qos_info qos;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return -1;);
|
||||
|
||||
@@ -429,7 +429,7 @@ static int irlan_client_state_arb(struct irlan_cb *self, IRLAN_EVENT event,
|
||||
} else if (self->client.recv_arb_val >
|
||||
self->provider.send_arb_val)
|
||||
{
|
||||
IRDA_DEBUG(2, "%s(), lost the battle :-(\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), lost the battle :-(\n", __func__ );
|
||||
}
|
||||
break;
|
||||
case IRLAN_DATA_CONNECT_INDICATION:
|
||||
@@ -440,10 +440,10 @@ static int irlan_client_state_arb(struct irlan_cb *self, IRLAN_EVENT event,
|
||||
irlan_next_client_state(self, IRLAN_IDLE);
|
||||
break;
|
||||
case IRLAN_WATCHDOG_TIMEOUT:
|
||||
IRDA_DEBUG(2, "%s(), IRLAN_WATCHDOG_TIMEOUT\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), IRLAN_WATCHDOG_TIMEOUT\n", __func__ );
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(2, "%s(), Unknown event %d\n", __FUNCTION__ , event);
|
||||
IRDA_DEBUG(2, "%s(), Unknown event %d\n", __func__ , event);
|
||||
break;
|
||||
}
|
||||
if (skb)
|
||||
@@ -462,7 +462,7 @@ static int irlan_client_state_arb(struct irlan_cb *self, IRLAN_EVENT event,
|
||||
static int irlan_client_state_data(struct irlan_cb *self, IRLAN_EVENT event,
|
||||
struct sk_buff *skb)
|
||||
{
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(4, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return -1;);
|
||||
IRDA_ASSERT(self->magic == IRLAN_MAGIC, return -1;);
|
||||
@@ -476,7 +476,7 @@ static int irlan_client_state_data(struct irlan_cb *self, IRLAN_EVENT event,
|
||||
irlan_next_client_state(self, IRLAN_IDLE);
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(2, "%s(), Unknown event %d\n", __FUNCTION__ , event);
|
||||
IRDA_DEBUG(2, "%s(), Unknown event %d\n", __func__ , event);
|
||||
break;
|
||||
}
|
||||
if (skb)
|
||||
@@ -494,7 +494,7 @@ static int irlan_client_state_data(struct irlan_cb *self, IRLAN_EVENT event,
|
||||
static int irlan_client_state_close(struct irlan_cb *self, IRLAN_EVENT event,
|
||||
struct sk_buff *skb)
|
||||
{
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
if (skb)
|
||||
dev_kfree_skb(skb);
|
||||
@@ -511,7 +511,7 @@ static int irlan_client_state_close(struct irlan_cb *self, IRLAN_EVENT event,
|
||||
static int irlan_client_state_sync(struct irlan_cb *self, IRLAN_EVENT event,
|
||||
struct sk_buff *skb)
|
||||
{
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
if (skb)
|
||||
dev_kfree_skb(skb);
|
||||
|
@@ -124,7 +124,7 @@ static int __init irlan_init(void)
|
||||
struct irlan_cb *new;
|
||||
__u16 hints;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
#ifdef CONFIG_PROC_FS
|
||||
{ struct proc_dir_entry *proc;
|
||||
@@ -136,7 +136,7 @@ static int __init irlan_init(void)
|
||||
}
|
||||
#endif /* CONFIG_PROC_FS */
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(4, "%s()\n", __func__ );
|
||||
hints = irlmp_service_to_hint(S_LAN);
|
||||
|
||||
/* Register with IrLMP as a client */
|
||||
@@ -179,7 +179,7 @@ static void __exit irlan_cleanup(void)
|
||||
{
|
||||
struct irlan_cb *self, *next;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(4, "%s()\n", __func__ );
|
||||
|
||||
irlmp_unregister_client(ckey);
|
||||
irlmp_unregister_service(skey);
|
||||
@@ -207,7 +207,7 @@ static struct irlan_cb *irlan_open(__u32 saddr, __u32 daddr)
|
||||
struct net_device *dev;
|
||||
struct irlan_cb *self;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
/* Create network device with irlan */
|
||||
dev = alloc_irlandev(eth ? "eth%d" : "irlan%d");
|
||||
@@ -252,7 +252,7 @@ static struct irlan_cb *irlan_open(__u32 saddr, __u32 daddr)
|
||||
|
||||
if (register_netdev(dev)) {
|
||||
IRDA_DEBUG(2, "%s(), register_netdev() failed!\n",
|
||||
__FUNCTION__ );
|
||||
__func__ );
|
||||
self = NULL;
|
||||
free_netdev(dev);
|
||||
} else {
|
||||
@@ -272,7 +272,7 @@ static struct irlan_cb *irlan_open(__u32 saddr, __u32 daddr)
|
||||
*/
|
||||
static void __irlan_close(struct irlan_cb *self)
|
||||
{
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
ASSERT_RTNL();
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
@@ -320,7 +320,7 @@ static void irlan_connect_indication(void *instance, void *sap,
|
||||
struct irlan_cb *self;
|
||||
struct tsap_cb *tsap;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
self = (struct irlan_cb *) instance;
|
||||
tsap = (struct tsap_cb *) sap;
|
||||
@@ -332,7 +332,7 @@ static void irlan_connect_indication(void *instance, void *sap,
|
||||
self->max_sdu_size = max_sdu_size;
|
||||
self->max_header_size = max_header_size;
|
||||
|
||||
IRDA_DEBUG(0, "%s: We are now connected!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s: We are now connected!\n", __func__);
|
||||
|
||||
del_timer(&self->watchdog_timer);
|
||||
|
||||
@@ -376,7 +376,7 @@ static void irlan_connect_confirm(void *instance, void *sap,
|
||||
|
||||
/* TODO: we could set the MTU depending on the max_sdu_size */
|
||||
|
||||
IRDA_DEBUG(0, "%s: We are now connected!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s: We are now connected!\n", __func__);
|
||||
del_timer(&self->watchdog_timer);
|
||||
|
||||
/*
|
||||
@@ -412,7 +412,7 @@ static void irlan_disconnect_indication(void *instance,
|
||||
struct irlan_cb *self;
|
||||
struct tsap_cb *tsap;
|
||||
|
||||
IRDA_DEBUG(0, "%s(), reason=%d\n", __FUNCTION__ , reason);
|
||||
IRDA_DEBUG(0, "%s(), reason=%d\n", __func__ , reason);
|
||||
|
||||
self = (struct irlan_cb *) instance;
|
||||
tsap = (struct tsap_cb *) sap;
|
||||
@@ -431,22 +431,22 @@ static void irlan_disconnect_indication(void *instance,
|
||||
|
||||
switch (reason) {
|
||||
case LM_USER_REQUEST: /* User request */
|
||||
IRDA_DEBUG(2, "%s(), User requested\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), User requested\n", __func__ );
|
||||
break;
|
||||
case LM_LAP_DISCONNECT: /* Unexpected IrLAP disconnect */
|
||||
IRDA_DEBUG(2, "%s(), Unexpected IrLAP disconnect\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), Unexpected IrLAP disconnect\n", __func__ );
|
||||
break;
|
||||
case LM_CONNECT_FAILURE: /* Failed to establish IrLAP connection */
|
||||
IRDA_DEBUG(2, "%s(), IrLAP connect failed\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), IrLAP connect failed\n", __func__ );
|
||||
break;
|
||||
case LM_LAP_RESET: /* IrLAP reset */
|
||||
IRDA_DEBUG(2, "%s(), IrLAP reset\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), IrLAP reset\n", __func__ );
|
||||
break;
|
||||
case LM_INIT_DISCONNECT:
|
||||
IRDA_DEBUG(2, "%s(), IrLMP connect failed\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), IrLMP connect failed\n", __func__ );
|
||||
break;
|
||||
default:
|
||||
IRDA_ERROR("%s(), Unknown disconnect reason\n", __FUNCTION__);
|
||||
IRDA_ERROR("%s(), Unknown disconnect reason\n", __func__);
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -468,7 +468,7 @@ void irlan_open_data_tsap(struct irlan_cb *self)
|
||||
struct tsap_cb *tsap;
|
||||
notify_t notify;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IRLAN_MAGIC, return;);
|
||||
@@ -490,7 +490,7 @@ void irlan_open_data_tsap(struct irlan_cb *self)
|
||||
|
||||
tsap = irttp_open_tsap(LSAP_ANY, DEFAULT_INITIAL_CREDIT, ¬ify);
|
||||
if (!tsap) {
|
||||
IRDA_DEBUG(2, "%s(), Got no tsap!\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), Got no tsap!\n", __func__ );
|
||||
return;
|
||||
}
|
||||
self->tsap_data = tsap;
|
||||
@@ -504,7 +504,7 @@ void irlan_open_data_tsap(struct irlan_cb *self)
|
||||
|
||||
void irlan_close_tsaps(struct irlan_cb *self)
|
||||
{
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(4, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IRLAN_MAGIC, return;);
|
||||
@@ -594,7 +594,7 @@ int irlan_run_ctrl_tx_queue(struct irlan_cb *self)
|
||||
{
|
||||
struct sk_buff *skb;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
if (irda_lock(&self->client.tx_busy) == FALSE)
|
||||
return -EBUSY;
|
||||
@@ -613,7 +613,7 @@ int irlan_run_ctrl_tx_queue(struct irlan_cb *self)
|
||||
dev_kfree_skb(skb);
|
||||
return -1;
|
||||
}
|
||||
IRDA_DEBUG(2, "%s(), sending ...\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), sending ...\n", __func__ );
|
||||
|
||||
return irttp_data_request(self->client.tsap_ctrl, skb);
|
||||
}
|
||||
@@ -626,7 +626,7 @@ int irlan_run_ctrl_tx_queue(struct irlan_cb *self)
|
||||
*/
|
||||
static void irlan_ctrl_data_request(struct irlan_cb *self, struct sk_buff *skb)
|
||||
{
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
/* Queue command */
|
||||
skb_queue_tail(&self->client.txq, skb);
|
||||
@@ -646,7 +646,7 @@ void irlan_get_provider_info(struct irlan_cb *self)
|
||||
struct sk_buff *skb;
|
||||
__u8 *frame;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(4, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IRLAN_MAGIC, return;);
|
||||
@@ -679,7 +679,7 @@ void irlan_open_data_channel(struct irlan_cb *self)
|
||||
struct sk_buff *skb;
|
||||
__u8 *frame;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(4, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IRLAN_MAGIC, return;);
|
||||
@@ -714,7 +714,7 @@ void irlan_close_data_channel(struct irlan_cb *self)
|
||||
struct sk_buff *skb;
|
||||
__u8 *frame;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(4, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IRLAN_MAGIC, return;);
|
||||
@@ -755,7 +755,7 @@ static void irlan_open_unicast_addr(struct irlan_cb *self)
|
||||
struct sk_buff *skb;
|
||||
__u8 *frame;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(4, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IRLAN_MAGIC, return;);
|
||||
@@ -797,7 +797,7 @@ void irlan_set_broadcast_filter(struct irlan_cb *self, int status)
|
||||
struct sk_buff *skb;
|
||||
__u8 *frame;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IRLAN_MAGIC, return;);
|
||||
@@ -841,7 +841,7 @@ void irlan_set_multicast_filter(struct irlan_cb *self, int status)
|
||||
struct sk_buff *skb;
|
||||
__u8 *frame;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IRLAN_MAGIC, return;);
|
||||
@@ -886,7 +886,7 @@ static void irlan_get_unicast_addr(struct irlan_cb *self)
|
||||
struct sk_buff *skb;
|
||||
__u8 *frame;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IRLAN_MAGIC, return;);
|
||||
@@ -926,7 +926,7 @@ void irlan_get_media_char(struct irlan_cb *self)
|
||||
struct sk_buff *skb;
|
||||
__u8 *frame;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(4, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IRLAN_MAGIC, return;);
|
||||
@@ -1014,7 +1014,7 @@ static int __irlan_insert_param(struct sk_buff *skb, char *param, int type,
|
||||
int n=0;
|
||||
|
||||
if (skb == NULL) {
|
||||
IRDA_DEBUG(2, "%s(), Got NULL skb\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), Got NULL skb\n", __func__ );
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -1031,7 +1031,7 @@ static int __irlan_insert_param(struct sk_buff *skb, char *param, int type,
|
||||
IRDA_ASSERT(value_len > 0, return 0;);
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(2, "%s(), Unknown parameter type!\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), Unknown parameter type!\n", __func__ );
|
||||
return 0;
|
||||
break;
|
||||
}
|
||||
@@ -1041,7 +1041,7 @@ static int __irlan_insert_param(struct sk_buff *skb, char *param, int type,
|
||||
|
||||
/* Make space for data */
|
||||
if (skb_tailroom(skb) < (param_len+value_len+3)) {
|
||||
IRDA_DEBUG(2, "%s(), No more space at end of skb\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), No more space at end of skb\n", __func__ );
|
||||
return 0;
|
||||
}
|
||||
skb_put(skb, param_len+value_len+3);
|
||||
@@ -1088,13 +1088,13 @@ int irlan_extract_param(__u8 *buf, char *name, char *value, __u16 *len)
|
||||
__u16 val_len;
|
||||
int n=0;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(4, "%s()\n", __func__ );
|
||||
|
||||
/* get length of parameter name (1 byte) */
|
||||
name_len = buf[n++];
|
||||
|
||||
if (name_len > 254) {
|
||||
IRDA_DEBUG(2, "%s(), name_len > 254\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), name_len > 254\n", __func__ );
|
||||
return -RSP_INVALID_COMMAND_FORMAT;
|
||||
}
|
||||
|
||||
@@ -1111,7 +1111,7 @@ int irlan_extract_param(__u8 *buf, char *name, char *value, __u16 *len)
|
||||
le16_to_cpus(&val_len); n+=2;
|
||||
|
||||
if (val_len > 1016) {
|
||||
IRDA_DEBUG(2, "%s(), parameter length to long\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), parameter length to long\n", __func__ );
|
||||
return -RSP_INVALID_COMMAND_FORMAT;
|
||||
}
|
||||
*len = val_len;
|
||||
|
@@ -103,7 +103,7 @@ static int irlan_eth_open(struct net_device *dev)
|
||||
{
|
||||
struct irlan_cb *self = netdev_priv(dev);
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
/* Ready to play! */
|
||||
netif_stop_queue(dev); /* Wait until data link is ready */
|
||||
@@ -130,7 +130,7 @@ static int irlan_eth_close(struct net_device *dev)
|
||||
{
|
||||
struct irlan_cb *self = netdev_priv(dev);
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
/* Stop device */
|
||||
netif_stop_queue(dev);
|
||||
@@ -221,7 +221,7 @@ int irlan_eth_receive(void *instance, void *sap, struct sk_buff *skb)
|
||||
}
|
||||
if (skb->len < ETH_HLEN) {
|
||||
IRDA_DEBUG(0, "%s() : IrLAN frame too short (%d)\n",
|
||||
__FUNCTION__, skb->len);
|
||||
__func__, skb->len);
|
||||
++self->stats.rx_dropped;
|
||||
dev_kfree_skb(skb);
|
||||
return 0;
|
||||
@@ -270,7 +270,7 @@ void irlan_eth_flow_indication(void *instance, void *sap, LOCAL_FLOW flow)
|
||||
|
||||
IRDA_ASSERT(dev != NULL, return;);
|
||||
|
||||
IRDA_DEBUG(0, "%s() : flow %s ; running %d\n", __FUNCTION__,
|
||||
IRDA_DEBUG(0, "%s() : flow %s ; running %d\n", __func__,
|
||||
flow == FLOW_STOP ? "FLOW_STOP" : "FLOW_START",
|
||||
netif_running(dev));
|
||||
|
||||
@@ -332,11 +332,11 @@ static void irlan_eth_set_multicast_list(struct net_device *dev)
|
||||
{
|
||||
struct irlan_cb *self = netdev_priv(dev);
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s()\n", __func__ );
|
||||
|
||||
/* Check if data channel has been connected yet */
|
||||
if (self->client.state != IRLAN_DATA) {
|
||||
IRDA_DEBUG(1, "%s(), delaying!\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(1, "%s(), delaying!\n", __func__ );
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -346,20 +346,20 @@ static void irlan_eth_set_multicast_list(struct net_device *dev)
|
||||
}
|
||||
else if ((dev->flags & IFF_ALLMULTI) || dev->mc_count > HW_MAX_ADDRS) {
|
||||
/* Disable promiscuous mode, use normal mode. */
|
||||
IRDA_DEBUG(4, "%s(), Setting multicast filter\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(4, "%s(), Setting multicast filter\n", __func__ );
|
||||
/* hardware_set_filter(NULL); */
|
||||
|
||||
irlan_set_multicast_filter(self, TRUE);
|
||||
}
|
||||
else if (dev->mc_count) {
|
||||
IRDA_DEBUG(4, "%s(), Setting multicast filter\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(4, "%s(), Setting multicast filter\n", __func__ );
|
||||
/* Walk the address list, and load the filter */
|
||||
/* hardware_set_filter(dev->mc_list); */
|
||||
|
||||
irlan_set_multicast_filter(self, TRUE);
|
||||
}
|
||||
else {
|
||||
IRDA_DEBUG(4, "%s(), Clearing multicast filter\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(4, "%s(), Clearing multicast filter\n", __func__ );
|
||||
irlan_set_multicast_filter(self, FALSE);
|
||||
}
|
||||
|
||||
|
@@ -40,7 +40,7 @@ char *irlan_state[] = {
|
||||
|
||||
void irlan_next_client_state(struct irlan_cb *self, IRLAN_STATE state)
|
||||
{
|
||||
IRDA_DEBUG(2, "%s(), %s\n", __FUNCTION__ , irlan_state[state]);
|
||||
IRDA_DEBUG(2, "%s(), %s\n", __func__ , irlan_state[state]);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IRLAN_MAGIC, return;);
|
||||
@@ -50,7 +50,7 @@ void irlan_next_client_state(struct irlan_cb *self, IRLAN_STATE state)
|
||||
|
||||
void irlan_next_provider_state(struct irlan_cb *self, IRLAN_STATE state)
|
||||
{
|
||||
IRDA_DEBUG(2, "%s(), %s\n", __FUNCTION__ , irlan_state[state]);
|
||||
IRDA_DEBUG(2, "%s(), %s\n", __func__ , irlan_state[state]);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IRLAN_MAGIC, return;);
|
||||
|
@@ -145,7 +145,7 @@ void irlan_check_command_param(struct irlan_cb *self, char *param, char *value)
|
||||
{
|
||||
__u8 *bytes;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(4, "%s()\n", __func__ );
|
||||
|
||||
bytes = value;
|
||||
|
||||
@@ -158,7 +158,7 @@ void irlan_check_command_param(struct irlan_cb *self, char *param, char *value)
|
||||
* This is experimental!! DB.
|
||||
*/
|
||||
if (strcmp(param, "MODE") == 0) {
|
||||
IRDA_DEBUG(0, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(0, "%s()\n", __func__ );
|
||||
self->use_udata = TRUE;
|
||||
return;
|
||||
}
|
||||
|
@@ -70,7 +70,7 @@ static int irlan_provider_data_indication(void *instance, void *sap,
|
||||
struct irlan_cb *self;
|
||||
__u8 code;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(4, "%s()\n", __func__ );
|
||||
|
||||
self = (struct irlan_cb *) instance;
|
||||
|
||||
@@ -99,15 +99,15 @@ static int irlan_provider_data_indication(void *instance, void *sap,
|
||||
irlan_do_provider_event(self, IRLAN_FILTER_CONFIG_CMD, skb);
|
||||
break;
|
||||
case CMD_RECONNECT_DATA_CHAN:
|
||||
IRDA_DEBUG(2, "%s(), Got RECONNECT_DATA_CHAN command\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), NOT IMPLEMENTED\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), Got RECONNECT_DATA_CHAN command\n", __func__ );
|
||||
IRDA_DEBUG(2, "%s(), NOT IMPLEMENTED\n", __func__ );
|
||||
break;
|
||||
case CMD_CLOSE_DATA_CHAN:
|
||||
IRDA_DEBUG(2, "Got CLOSE_DATA_CHAN command!\n");
|
||||
IRDA_DEBUG(2, "%s(), NOT IMPLEMENTED\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), NOT IMPLEMENTED\n", __func__ );
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(2, "%s(), Unknown command!\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), Unknown command!\n", __func__ );
|
||||
break;
|
||||
}
|
||||
return 0;
|
||||
@@ -129,7 +129,7 @@ static void irlan_provider_connect_indication(void *instance, void *sap,
|
||||
struct tsap_cb *tsap;
|
||||
__u32 saddr, daddr;
|
||||
|
||||
IRDA_DEBUG(0, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(0, "%s()\n", __func__ );
|
||||
|
||||
self = (struct irlan_cb *) instance;
|
||||
tsap = (struct tsap_cb *) sap;
|
||||
@@ -182,7 +182,7 @@ static void irlan_provider_disconnect_indication(void *instance, void *sap,
|
||||
struct irlan_cb *self;
|
||||
struct tsap_cb *tsap;
|
||||
|
||||
IRDA_DEBUG(4, "%s(), reason=%d\n", __FUNCTION__ , reason);
|
||||
IRDA_DEBUG(4, "%s(), reason=%d\n", __func__ , reason);
|
||||
|
||||
self = (struct irlan_cb *) instance;
|
||||
tsap = (struct tsap_cb *) sap;
|
||||
@@ -236,7 +236,7 @@ int irlan_provider_parse_command(struct irlan_cb *self, int cmd,
|
||||
|
||||
IRDA_ASSERT(skb != NULL, return -RSP_PROTOCOL_ERROR;);
|
||||
|
||||
IRDA_DEBUG(4, "%s(), skb->len=%d\n", __FUNCTION__ , (int)skb->len);
|
||||
IRDA_DEBUG(4, "%s(), skb->len=%d\n", __func__ , (int)skb->len);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return -RSP_PROTOCOL_ERROR;);
|
||||
IRDA_ASSERT(self->magic == IRLAN_MAGIC, return -RSP_PROTOCOL_ERROR;);
|
||||
@@ -266,7 +266,7 @@ int irlan_provider_parse_command(struct irlan_cb *self, int cmd,
|
||||
for (i=0; i<count;i++) {
|
||||
ret = irlan_extract_param(ptr, name, value, &val_len);
|
||||
if (ret < 0) {
|
||||
IRDA_DEBUG(2, "%s(), IrLAN, Error!\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), IrLAN, Error!\n", __func__ );
|
||||
break;
|
||||
}
|
||||
ptr+=ret;
|
||||
@@ -291,7 +291,7 @@ void irlan_provider_send_reply(struct irlan_cb *self, int command,
|
||||
{
|
||||
struct sk_buff *skb;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(4, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == IRLAN_MAGIC, return;);
|
||||
@@ -323,7 +323,7 @@ void irlan_provider_send_reply(struct irlan_cb *self, int command,
|
||||
irlan_insert_string_param(skb, "MEDIA", "802.5");
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(2, "%s(), unknown media type!\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), unknown media type!\n", __func__ );
|
||||
break;
|
||||
}
|
||||
irlan_insert_short_param(skb, "IRLAN_VER", 0x0101);
|
||||
@@ -347,7 +347,7 @@ void irlan_provider_send_reply(struct irlan_cb *self, int command,
|
||||
irlan_insert_string_param(skb, "ACCESS_TYPE", "HOSTED");
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(2, "%s(), Unknown access type\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), Unknown access type\n", __func__ );
|
||||
break;
|
||||
}
|
||||
irlan_insert_short_param(skb, "MAX_FRAME", 0x05ee);
|
||||
@@ -367,7 +367,7 @@ void irlan_provider_send_reply(struct irlan_cb *self, int command,
|
||||
irlan_filter_request(self, skb);
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(2, "%s(), Unknown command!\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), Unknown command!\n", __func__ );
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -385,7 +385,7 @@ int irlan_provider_open_ctrl_tsap(struct irlan_cb *self)
|
||||
struct tsap_cb *tsap;
|
||||
notify_t notify;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(4, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return -1;);
|
||||
IRDA_ASSERT(self->magic == IRLAN_MAGIC, return -1;);
|
||||
@@ -406,7 +406,7 @@ int irlan_provider_open_ctrl_tsap(struct irlan_cb *self)
|
||||
|
||||
tsap = irttp_open_tsap(LSAP_ANY, 1, ¬ify);
|
||||
if (!tsap) {
|
||||
IRDA_DEBUG(2, "%s(), Got no tsap!\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(2, "%s(), Got no tsap!\n", __func__ );
|
||||
return -1;
|
||||
}
|
||||
self->provider.tsap_ctrl = tsap;
|
||||
|
@@ -72,7 +72,7 @@ void irlan_do_provider_event(struct irlan_cb *self, IRLAN_EVENT event,
|
||||
static int irlan_provider_state_idle(struct irlan_cb *self, IRLAN_EVENT event,
|
||||
struct sk_buff *skb)
|
||||
{
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(4, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return -1;);
|
||||
|
||||
@@ -82,7 +82,7 @@ static int irlan_provider_state_idle(struct irlan_cb *self, IRLAN_EVENT event,
|
||||
irlan_next_provider_state( self, IRLAN_INFO);
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(4, "%s(), Unknown event %d\n", __FUNCTION__ , event);
|
||||
IRDA_DEBUG(4, "%s(), Unknown event %d\n", __func__ , event);
|
||||
break;
|
||||
}
|
||||
if (skb)
|
||||
@@ -101,7 +101,7 @@ static int irlan_provider_state_info(struct irlan_cb *self, IRLAN_EVENT event,
|
||||
{
|
||||
int ret;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(4, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return -1;);
|
||||
|
||||
@@ -147,7 +147,7 @@ static int irlan_provider_state_info(struct irlan_cb *self, IRLAN_EVENT event,
|
||||
irlan_next_provider_state(self, IRLAN_IDLE);
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG( 0, "%s(), Unknown event %d\n", __FUNCTION__ , event);
|
||||
IRDA_DEBUG( 0, "%s(), Unknown event %d\n", __func__ , event);
|
||||
break;
|
||||
}
|
||||
if (skb)
|
||||
@@ -166,7 +166,7 @@ static int irlan_provider_state_info(struct irlan_cb *self, IRLAN_EVENT event,
|
||||
static int irlan_provider_state_open(struct irlan_cb *self, IRLAN_EVENT event,
|
||||
struct sk_buff *skb)
|
||||
{
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(4, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return -1;);
|
||||
|
||||
@@ -186,7 +186,7 @@ static int irlan_provider_state_open(struct irlan_cb *self, IRLAN_EVENT event,
|
||||
irlan_next_provider_state(self, IRLAN_IDLE);
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(2, "%s(), Unknown event %d\n", __FUNCTION__ , event);
|
||||
IRDA_DEBUG(2, "%s(), Unknown event %d\n", __func__ , event);
|
||||
break;
|
||||
}
|
||||
if (skb)
|
||||
@@ -205,7 +205,7 @@ static int irlan_provider_state_open(struct irlan_cb *self, IRLAN_EVENT event,
|
||||
static int irlan_provider_state_data(struct irlan_cb *self, IRLAN_EVENT event,
|
||||
struct sk_buff *skb)
|
||||
{
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__ );
|
||||
IRDA_DEBUG(4, "%s()\n", __func__ );
|
||||
|
||||
IRDA_ASSERT(self != NULL, return -1;);
|
||||
IRDA_ASSERT(self->magic == IRLAN_MAGIC, return -1;);
|
||||
@@ -221,7 +221,7 @@ static int irlan_provider_state_data(struct irlan_cb *self, IRLAN_EVENT event,
|
||||
irlan_next_provider_state(self, IRLAN_IDLE);
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG( 0, "%s(), Unknown event %d\n", __FUNCTION__ , event);
|
||||
IRDA_DEBUG( 0, "%s(), Unknown event %d\n", __func__ , event);
|
||||
break;
|
||||
}
|
||||
if (skb)
|
||||
|
@@ -88,7 +88,7 @@ int __init irlap_init(void)
|
||||
irlap = hashbin_new(HB_LOCK);
|
||||
if (irlap == NULL) {
|
||||
IRDA_ERROR("%s: can't allocate irlap hashbin!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
@@ -113,7 +113,7 @@ struct irlap_cb *irlap_open(struct net_device *dev, struct qos_info *qos,
|
||||
{
|
||||
struct irlap_cb *self;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
/* Initialize the irlap structure. */
|
||||
self = kzalloc(sizeof(struct irlap_cb), GFP_KERNEL);
|
||||
@@ -215,7 +215,7 @@ void irlap_close(struct irlap_cb *self)
|
||||
{
|
||||
struct irlap_cb *lap;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == LAP_MAGIC, return;);
|
||||
@@ -231,7 +231,7 @@ void irlap_close(struct irlap_cb *self)
|
||||
/* Be sure that we manage to remove ourself from the hash */
|
||||
lap = hashbin_remove(irlap, self->saddr, NULL);
|
||||
if (!lap) {
|
||||
IRDA_DEBUG(1, "%s(), Didn't find myself!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(1, "%s(), Didn't find myself!\n", __func__);
|
||||
return;
|
||||
}
|
||||
__irlap_close(lap);
|
||||
@@ -246,7 +246,7 @@ EXPORT_SYMBOL(irlap_close);
|
||||
*/
|
||||
void irlap_connect_indication(struct irlap_cb *self, struct sk_buff *skb)
|
||||
{
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == LAP_MAGIC, return;);
|
||||
@@ -265,7 +265,7 @@ void irlap_connect_indication(struct irlap_cb *self, struct sk_buff *skb)
|
||||
*/
|
||||
void irlap_connect_response(struct irlap_cb *self, struct sk_buff *userdata)
|
||||
{
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
irlap_do_event(self, CONNECT_RESPONSE, userdata, NULL);
|
||||
}
|
||||
@@ -280,7 +280,7 @@ void irlap_connect_response(struct irlap_cb *self, struct sk_buff *userdata)
|
||||
void irlap_connect_request(struct irlap_cb *self, __u32 daddr,
|
||||
struct qos_info *qos_user, int sniff)
|
||||
{
|
||||
IRDA_DEBUG(3, "%s(), daddr=0x%08x\n", __FUNCTION__, daddr);
|
||||
IRDA_DEBUG(3, "%s(), daddr=0x%08x\n", __func__, daddr);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == LAP_MAGIC, return;);
|
||||
@@ -307,7 +307,7 @@ void irlap_connect_request(struct irlap_cb *self, __u32 daddr,
|
||||
*/
|
||||
void irlap_connect_confirm(struct irlap_cb *self, struct sk_buff *skb)
|
||||
{
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == LAP_MAGIC, return;);
|
||||
@@ -344,7 +344,7 @@ void irlap_data_request(struct irlap_cb *self, struct sk_buff *skb,
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == LAP_MAGIC, return;);
|
||||
|
||||
IRDA_DEBUG(3, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(3, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(skb_headroom(skb) >= (LAP_ADDR_HEADER+LAP_CTRL_HEADER),
|
||||
return;);
|
||||
@@ -391,7 +391,7 @@ void irlap_unitdata_request(struct irlap_cb *self, struct sk_buff *skb)
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == LAP_MAGIC, return;);
|
||||
|
||||
IRDA_DEBUG(3, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(3, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(skb_headroom(skb) >= (LAP_ADDR_HEADER+LAP_CTRL_HEADER),
|
||||
return;);
|
||||
@@ -417,7 +417,7 @@ void irlap_unitdata_request(struct irlap_cb *self, struct sk_buff *skb)
|
||||
#ifdef CONFIG_IRDA_ULTRA
|
||||
void irlap_unitdata_indication(struct irlap_cb *self, struct sk_buff *skb)
|
||||
{
|
||||
IRDA_DEBUG(1, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(1, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == LAP_MAGIC, return;);
|
||||
@@ -437,7 +437,7 @@ void irlap_unitdata_indication(struct irlap_cb *self, struct sk_buff *skb)
|
||||
*/
|
||||
void irlap_disconnect_request(struct irlap_cb *self)
|
||||
{
|
||||
IRDA_DEBUG(3, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(3, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == LAP_MAGIC, return;);
|
||||
@@ -458,7 +458,7 @@ void irlap_disconnect_request(struct irlap_cb *self)
|
||||
irlap_do_event(self, DISCONNECT_REQUEST, NULL, NULL);
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(2, "%s(), disconnect pending!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(2, "%s(), disconnect pending!\n", __func__);
|
||||
self->disconnect_pending = TRUE;
|
||||
break;
|
||||
}
|
||||
@@ -472,7 +472,7 @@ void irlap_disconnect_request(struct irlap_cb *self)
|
||||
*/
|
||||
void irlap_disconnect_indication(struct irlap_cb *self, LAP_REASON reason)
|
||||
{
|
||||
IRDA_DEBUG(1, "%s(), reason=%s\n", __FUNCTION__, lap_reasons[reason]);
|
||||
IRDA_DEBUG(1, "%s(), reason=%s\n", __func__, lap_reasons[reason]);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == LAP_MAGIC, return;);
|
||||
@@ -482,7 +482,7 @@ void irlap_disconnect_indication(struct irlap_cb *self, LAP_REASON reason)
|
||||
|
||||
switch (reason) {
|
||||
case LAP_RESET_INDICATION:
|
||||
IRDA_DEBUG(1, "%s(), Sending reset request!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(1, "%s(), Sending reset request!\n", __func__);
|
||||
irlap_do_event(self, RESET_REQUEST, NULL, NULL);
|
||||
break;
|
||||
case LAP_NO_RESPONSE: /* FALLTROUGH */
|
||||
@@ -493,7 +493,7 @@ void irlap_disconnect_indication(struct irlap_cb *self, LAP_REASON reason)
|
||||
reason, NULL);
|
||||
break;
|
||||
default:
|
||||
IRDA_ERROR("%s: Unknown reason %d\n", __FUNCTION__, reason);
|
||||
IRDA_ERROR("%s: Unknown reason %d\n", __func__, reason);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -511,7 +511,7 @@ void irlap_discovery_request(struct irlap_cb *self, discovery_t *discovery)
|
||||
IRDA_ASSERT(self->magic == LAP_MAGIC, return;);
|
||||
IRDA_ASSERT(discovery != NULL, return;);
|
||||
|
||||
IRDA_DEBUG(4, "%s(), nslots = %d\n", __FUNCTION__, discovery->nslots);
|
||||
IRDA_DEBUG(4, "%s(), nslots = %d\n", __func__, discovery->nslots);
|
||||
|
||||
IRDA_ASSERT((discovery->nslots == 1) || (discovery->nslots == 6) ||
|
||||
(discovery->nslots == 8) || (discovery->nslots == 16),
|
||||
@@ -520,7 +520,7 @@ void irlap_discovery_request(struct irlap_cb *self, discovery_t *discovery)
|
||||
/* Discovery is only possible in NDM mode */
|
||||
if (self->state != LAP_NDM) {
|
||||
IRDA_DEBUG(4, "%s(), discovery only possible in NDM mode\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
irlap_discovery_confirm(self, NULL);
|
||||
/* Note : in theory, if we are not in NDM, we could postpone
|
||||
* the discovery like we do for connection request.
|
||||
@@ -543,7 +543,7 @@ void irlap_discovery_request(struct irlap_cb *self, discovery_t *discovery)
|
||||
|
||||
if (self->discovery_log == NULL) {
|
||||
IRDA_WARNING("%s(), Unable to allocate discovery log!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -598,7 +598,7 @@ void irlap_discovery_confirm(struct irlap_cb *self, hashbin_t *discovery_log)
|
||||
*/
|
||||
void irlap_discovery_indication(struct irlap_cb *self, discovery_t *discovery)
|
||||
{
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == LAP_MAGIC, return;);
|
||||
@@ -644,7 +644,7 @@ void irlap_status_indication(struct irlap_cb *self, int quality_of_link)
|
||||
*/
|
||||
void irlap_reset_indication(struct irlap_cb *self)
|
||||
{
|
||||
IRDA_DEBUG(1, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(1, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == LAP_MAGIC, return;);
|
||||
@@ -660,7 +660,7 @@ void irlap_reset_indication(struct irlap_cb *self)
|
||||
*/
|
||||
void irlap_reset_confirm(void)
|
||||
{
|
||||
IRDA_DEBUG(1, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(1, "%s()\n", __func__);
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -760,7 +760,7 @@ int irlap_validate_nr_received(struct irlap_cb *self, int nr)
|
||||
{
|
||||
/* nr as expected? */
|
||||
if (nr == self->vs) {
|
||||
IRDA_DEBUG(4, "%s(), expected!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s(), expected!\n", __func__);
|
||||
return NR_EXPECTED;
|
||||
}
|
||||
|
||||
@@ -788,7 +788,7 @@ int irlap_validate_nr_received(struct irlap_cb *self, int nr)
|
||||
*/
|
||||
void irlap_initiate_connection_state(struct irlap_cb *self)
|
||||
{
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == LAP_MAGIC, return;);
|
||||
@@ -871,7 +871,7 @@ static void irlap_change_speed(struct irlap_cb *self, __u32 speed, int now)
|
||||
{
|
||||
struct sk_buff *skb;
|
||||
|
||||
IRDA_DEBUG(0, "%s(), setting speed to %d\n", __FUNCTION__, speed);
|
||||
IRDA_DEBUG(0, "%s(), setting speed to %d\n", __func__, speed);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == LAP_MAGIC, return;);
|
||||
@@ -914,7 +914,7 @@ static void irlap_init_qos_capabilities(struct irlap_cb *self,
|
||||
* user may not have set all of them.
|
||||
*/
|
||||
if (qos_user) {
|
||||
IRDA_DEBUG(1, "%s(), Found user specified QoS!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(1, "%s(), Found user specified QoS!\n", __func__);
|
||||
|
||||
if (qos_user->baud_rate.bits)
|
||||
self->qos_rx.baud_rate.bits &= qos_user->baud_rate.bits;
|
||||
@@ -944,7 +944,7 @@ static void irlap_init_qos_capabilities(struct irlap_cb *self,
|
||||
*/
|
||||
void irlap_apply_default_connection_parameters(struct irlap_cb *self)
|
||||
{
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == LAP_MAGIC, return;);
|
||||
@@ -1007,7 +1007,7 @@ void irlap_apply_default_connection_parameters(struct irlap_cb *self)
|
||||
*/
|
||||
void irlap_apply_connection_parameters(struct irlap_cb *self, int now)
|
||||
{
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == LAP_MAGIC, return;);
|
||||
|
@@ -217,7 +217,7 @@ static void irlap_start_poll_timer(struct irlap_cb *self, int timeout)
|
||||
} else
|
||||
self->fast_RR = FALSE;
|
||||
|
||||
IRDA_DEBUG(3, "%s(), timeout=%d (%ld)\n", __FUNCTION__, timeout, jiffies);
|
||||
IRDA_DEBUG(3, "%s(), timeout=%d (%ld)\n", __func__, timeout, jiffies);
|
||||
#endif /* CONFIG_IRDA_FAST_RR */
|
||||
|
||||
if (timeout == 0)
|
||||
@@ -241,7 +241,7 @@ void irlap_do_event(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
if (!self || self->magic != LAP_MAGIC)
|
||||
return;
|
||||
|
||||
IRDA_DEBUG(3, "%s(), event = %s, state = %s\n", __FUNCTION__,
|
||||
IRDA_DEBUG(3, "%s(), event = %s, state = %s\n", __func__,
|
||||
irlap_event[event], irlap_state[self->state]);
|
||||
|
||||
ret = (*state[self->state])(self, event, skb, info);
|
||||
@@ -259,7 +259,7 @@ void irlap_do_event(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
* try to disconnect link if we send any data frames, since
|
||||
* that will change the state away form XMIT
|
||||
*/
|
||||
IRDA_DEBUG(2, "%s() : queue len = %d\n", __FUNCTION__,
|
||||
IRDA_DEBUG(2, "%s() : queue len = %d\n", __func__,
|
||||
skb_queue_len(&self->txq));
|
||||
|
||||
if (!skb_queue_empty(&self->txq)) {
|
||||
@@ -340,7 +340,7 @@ static int irlap_state_ndm(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
* media busy in irlap_connect_request() and
|
||||
* postpone the event... - Jean II */
|
||||
IRDA_DEBUG(0, "%s(), CONNECT_REQUEST: media busy!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
|
||||
/* Always switch state before calling upper layers */
|
||||
irlap_next_state(self, LAP_NDM);
|
||||
@@ -367,7 +367,7 @@ static int irlap_state_ndm(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
irlap_connect_indication(self, skb);
|
||||
} else {
|
||||
IRDA_DEBUG(0, "%s(), SNRM frame does not "
|
||||
"contain an I field!\n", __FUNCTION__);
|
||||
"contain an I field!\n", __func__);
|
||||
}
|
||||
break;
|
||||
case DISCOVERY_REQUEST:
|
||||
@@ -375,7 +375,7 @@ static int irlap_state_ndm(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
|
||||
if (self->media_busy) {
|
||||
IRDA_DEBUG(1, "%s(), DISCOVERY_REQUEST: media busy!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
/* irlap->log.condition = MEDIA_BUSY; */
|
||||
|
||||
/* This will make IrLMP try again */
|
||||
@@ -441,7 +441,7 @@ static int irlap_state_ndm(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
* those cases...
|
||||
* Jean II
|
||||
*/
|
||||
IRDA_DEBUG(1, "%s(), Receiving final discovery request, missed the discovery slots :-(\n", __FUNCTION__);
|
||||
IRDA_DEBUG(1, "%s(), Receiving final discovery request, missed the discovery slots :-(\n", __func__);
|
||||
|
||||
/* Last discovery request -> in the log */
|
||||
irlap_discovery_indication(self, info->discovery);
|
||||
@@ -520,7 +520,7 @@ static int irlap_state_ndm(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
/* Only accept broadcast frames in NDM mode */
|
||||
if (info->caddr != CBROADCAST) {
|
||||
IRDA_DEBUG(0, "%s(), not a broadcast frame!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
} else
|
||||
irlap_unitdata_indication(self, skb);
|
||||
break;
|
||||
@@ -536,10 +536,10 @@ static int irlap_state_ndm(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
irlap_send_test_frame(self, CBROADCAST, info->daddr, skb);
|
||||
break;
|
||||
case RECV_TEST_RSP:
|
||||
IRDA_DEBUG(0, "%s() not implemented!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s() not implemented!\n", __func__);
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(2, "%s(), Unknown event %s\n", __FUNCTION__,
|
||||
IRDA_DEBUG(2, "%s(), Unknown event %s\n", __func__,
|
||||
irlap_event[event]);
|
||||
|
||||
ret = -1;
|
||||
@@ -567,13 +567,13 @@ static int irlap_state_query(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
IRDA_ASSERT(info != NULL, return -1;);
|
||||
IRDA_ASSERT(info->discovery != NULL, return -1;);
|
||||
|
||||
IRDA_DEBUG(4, "%s(), daddr=%08x\n", __FUNCTION__,
|
||||
IRDA_DEBUG(4, "%s(), daddr=%08x\n", __func__,
|
||||
info->discovery->data.daddr);
|
||||
|
||||
if (!self->discovery_log) {
|
||||
IRDA_WARNING("%s: discovery log is gone! "
|
||||
"maybe the discovery timeout has been set"
|
||||
" too short?\n", __FUNCTION__);
|
||||
" too short?\n", __func__);
|
||||
break;
|
||||
}
|
||||
hashbin_insert(self->discovery_log,
|
||||
@@ -598,7 +598,7 @@ static int irlap_state_query(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
|
||||
IRDA_ASSERT(info != NULL, return -1;);
|
||||
|
||||
IRDA_DEBUG(1, "%s(), Receiving discovery request (s = %d) while performing discovery :-(\n", __FUNCTION__, info->s);
|
||||
IRDA_DEBUG(1, "%s(), Receiving discovery request (s = %d) while performing discovery :-(\n", __func__, info->s);
|
||||
|
||||
/* Last discovery request ? */
|
||||
if (info->s == 0xff)
|
||||
@@ -613,7 +613,7 @@ static int irlap_state_query(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
*/
|
||||
if (irda_device_is_receiving(self->netdev) && !self->add_wait) {
|
||||
IRDA_DEBUG(2, "%s(), device is slow to answer, "
|
||||
"waiting some more!\n", __FUNCTION__);
|
||||
"waiting some more!\n", __func__);
|
||||
irlap_start_slot_timer(self, msecs_to_jiffies(10));
|
||||
self->add_wait = TRUE;
|
||||
return ret;
|
||||
@@ -649,7 +649,7 @@ static int irlap_state_query(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
}
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(2, "%s(), Unknown event %s\n", __FUNCTION__,
|
||||
IRDA_DEBUG(2, "%s(), Unknown event %s\n", __func__,
|
||||
irlap_event[event]);
|
||||
|
||||
ret = -1;
|
||||
@@ -671,7 +671,7 @@ static int irlap_state_reply(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
discovery_t *discovery_rsp;
|
||||
int ret=0;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return -1;);
|
||||
IRDA_ASSERT(self->magic == LAP_MAGIC, return -1;);
|
||||
@@ -679,7 +679,7 @@ static int irlap_state_reply(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
switch (event) {
|
||||
case QUERY_TIMER_EXPIRED:
|
||||
IRDA_DEBUG(0, "%s(), QUERY_TIMER_EXPIRED <%ld>\n",
|
||||
__FUNCTION__, jiffies);
|
||||
__func__, jiffies);
|
||||
irlap_next_state(self, LAP_NDM);
|
||||
break;
|
||||
case RECV_DISCOVERY_XID_CMD:
|
||||
@@ -717,7 +717,7 @@ static int irlap_state_reply(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
}
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(1, "%s(), Unknown event %d, %s\n", __FUNCTION__,
|
||||
IRDA_DEBUG(1, "%s(), Unknown event %d, %s\n", __func__,
|
||||
event, irlap_event[event]);
|
||||
|
||||
ret = -1;
|
||||
@@ -738,7 +738,7 @@ static int irlap_state_conn(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
{
|
||||
int ret = 0;
|
||||
|
||||
IRDA_DEBUG(4, "%s(), event=%s\n", __FUNCTION__, irlap_event[ event]);
|
||||
IRDA_DEBUG(4, "%s(), event=%s\n", __func__, irlap_event[ event]);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return -1;);
|
||||
IRDA_ASSERT(self->magic == LAP_MAGIC, return -1;);
|
||||
@@ -799,18 +799,18 @@ static int irlap_state_conn(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
break;
|
||||
case RECV_DISCOVERY_XID_CMD:
|
||||
IRDA_DEBUG(3, "%s(), event RECV_DISCOVER_XID_CMD!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
irlap_next_state(self, LAP_NDM);
|
||||
|
||||
break;
|
||||
case DISCONNECT_REQUEST:
|
||||
IRDA_DEBUG(0, "%s(), Disconnect request!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s(), Disconnect request!\n", __func__);
|
||||
irlap_send_dm_frame(self);
|
||||
irlap_next_state( self, LAP_NDM);
|
||||
irlap_disconnect_indication(self, LAP_DISC_INDICATION);
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(1, "%s(), Unknown event %d, %s\n", __FUNCTION__,
|
||||
IRDA_DEBUG(1, "%s(), Unknown event %d, %s\n", __func__,
|
||||
event, irlap_event[event]);
|
||||
|
||||
ret = -1;
|
||||
@@ -832,7 +832,7 @@ static int irlap_state_setup(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
{
|
||||
int ret = 0;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return -1;);
|
||||
IRDA_ASSERT(self->magic == LAP_MAGIC, return -1;);
|
||||
@@ -861,7 +861,7 @@ static int irlap_state_setup(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
self->retry_count++;
|
||||
break;
|
||||
case RECV_SNRM_CMD:
|
||||
IRDA_DEBUG(4, "%s(), SNRM battle!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s(), SNRM battle!\n", __func__);
|
||||
|
||||
IRDA_ASSERT(skb != NULL, return 0;);
|
||||
IRDA_ASSERT(info != NULL, return 0;);
|
||||
@@ -948,7 +948,7 @@ static int irlap_state_setup(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
irlap_disconnect_indication(self, LAP_DISC_INDICATION);
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(1, "%s(), Unknown event %d, %s\n", __FUNCTION__,
|
||||
IRDA_DEBUG(1, "%s(), Unknown event %d, %s\n", __func__,
|
||||
event, irlap_event[event]);
|
||||
|
||||
ret = -1;
|
||||
@@ -966,7 +966,7 @@ static int irlap_state_setup(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
static int irlap_state_offline(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
struct sk_buff *skb, struct irlap_info *info)
|
||||
{
|
||||
IRDA_DEBUG( 0, "%s(), Unknown event\n", __FUNCTION__);
|
||||
IRDA_DEBUG( 0, "%s(), Unknown event\n", __func__);
|
||||
|
||||
return -1;
|
||||
}
|
||||
@@ -1030,7 +1030,7 @@ static int irlap_state_xmit_p(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
*/
|
||||
if((!nextfit) && (skb->len > self->bytes_left)) {
|
||||
IRDA_DEBUG(0, "%s(), Not allowed to transmit"
|
||||
" more bytes!\n", __FUNCTION__);
|
||||
" more bytes!\n", __func__);
|
||||
/* Requeue the skb */
|
||||
skb_queue_head(&self->txq, skb_get(skb));
|
||||
/*
|
||||
@@ -1082,7 +1082,7 @@ static int irlap_state_xmit_p(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
#endif /* CONFIG_IRDA_FAST_RR */
|
||||
} else {
|
||||
IRDA_DEBUG(4, "%s(), Unable to send! remote busy?\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
skb_queue_head(&self->txq, skb_get(skb));
|
||||
|
||||
/*
|
||||
@@ -1094,7 +1094,7 @@ static int irlap_state_xmit_p(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
break;
|
||||
case POLL_TIMER_EXPIRED:
|
||||
IRDA_DEBUG(3, "%s(), POLL_TIMER_EXPIRED <%ld>\n",
|
||||
__FUNCTION__, jiffies);
|
||||
__func__, jiffies);
|
||||
irlap_send_rr_frame(self, CMD_FRAME);
|
||||
/* Return to NRM properly - Jean II */
|
||||
self->window = self->window_size;
|
||||
@@ -1120,7 +1120,7 @@ static int irlap_state_xmit_p(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(0, "%s(), Unknown event %s\n",
|
||||
__FUNCTION__, irlap_event[event]);
|
||||
__func__, irlap_event[event]);
|
||||
|
||||
ret = -EINVAL;
|
||||
break;
|
||||
@@ -1138,7 +1138,7 @@ static int irlap_state_pclose(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
{
|
||||
int ret = 0;
|
||||
|
||||
IRDA_DEBUG(1, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(1, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return -1;);
|
||||
IRDA_ASSERT(self->magic == LAP_MAGIC, return -1;);
|
||||
@@ -1173,7 +1173,7 @@ static int irlap_state_pclose(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
}
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(1, "%s(), Unknown event %d\n", __FUNCTION__, event);
|
||||
IRDA_DEBUG(1, "%s(), Unknown event %d\n", __func__, event);
|
||||
|
||||
ret = -1;
|
||||
break;
|
||||
@@ -1297,7 +1297,7 @@ static int irlap_state_nrm_p(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
} else {
|
||||
IRDA_DEBUG(4,
|
||||
"%s(), missing or duplicate frame!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
|
||||
/* Update Nr received */
|
||||
irlap_update_nr_received(self, info->nr);
|
||||
@@ -1367,7 +1367,7 @@ static int irlap_state_nrm_p(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
(nr_status == NR_UNEXPECTED))
|
||||
{
|
||||
IRDA_DEBUG(4, "%s(), unexpected nr and ns!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
if (info->pf) {
|
||||
/* Resend rejected frames */
|
||||
irlap_resend_rejected_frames(self, CMD_FRAME);
|
||||
@@ -1407,9 +1407,9 @@ static int irlap_state_nrm_p(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
}
|
||||
break;
|
||||
}
|
||||
IRDA_DEBUG(1, "%s(), Not implemented!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(1, "%s(), Not implemented!\n", __func__);
|
||||
IRDA_DEBUG(1, "%s(), event=%s, ns_status=%d, nr_status=%d\n",
|
||||
__FUNCTION__, irlap_event[event], ns_status, nr_status);
|
||||
__func__, irlap_event[event], ns_status, nr_status);
|
||||
break;
|
||||
case RECV_UI_FRAME:
|
||||
/* Poll bit cleared? */
|
||||
@@ -1420,7 +1420,7 @@ static int irlap_state_nrm_p(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
del_timer(&self->final_timer);
|
||||
irlap_data_indication(self, skb, TRUE);
|
||||
irlap_next_state(self, LAP_XMIT_P);
|
||||
IRDA_DEBUG(1, "%s: RECV_UI_FRAME: next state %s\n", __FUNCTION__, irlap_state[self->state]);
|
||||
IRDA_DEBUG(1, "%s: RECV_UI_FRAME: next state %s\n", __func__, irlap_state[self->state]);
|
||||
irlap_start_poll_timer(self, self->poll_timeout);
|
||||
}
|
||||
break;
|
||||
@@ -1475,7 +1475,7 @@ static int irlap_state_nrm_p(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
irlap_next_state(self, LAP_NRM_P);
|
||||
} else if (ret == NR_INVALID) {
|
||||
IRDA_DEBUG(1, "%s(), Received RR with "
|
||||
"invalid nr !\n", __FUNCTION__);
|
||||
"invalid nr !\n", __func__);
|
||||
|
||||
irlap_next_state(self, LAP_RESET_WAIT);
|
||||
|
||||
@@ -1580,7 +1580,7 @@ static int irlap_state_nrm_p(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
irlap_start_final_timer(self, 2 * self->final_timeout);
|
||||
break;
|
||||
case RECV_RD_RSP:
|
||||
IRDA_DEBUG(1, "%s(), RECV_RD_RSP\n", __FUNCTION__);
|
||||
IRDA_DEBUG(1, "%s(), RECV_RD_RSP\n", __func__);
|
||||
|
||||
irlap_flush_all_queues(self);
|
||||
irlap_next_state(self, LAP_XMIT_P);
|
||||
@@ -1589,7 +1589,7 @@ static int irlap_state_nrm_p(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(1, "%s(), Unknown event %s\n",
|
||||
__FUNCTION__, irlap_event[event]);
|
||||
__func__, irlap_event[event]);
|
||||
|
||||
ret = -1;
|
||||
break;
|
||||
@@ -1609,7 +1609,7 @@ static int irlap_state_reset_wait(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
{
|
||||
int ret = 0;
|
||||
|
||||
IRDA_DEBUG(3, "%s(), event = %s\n", __FUNCTION__, irlap_event[event]);
|
||||
IRDA_DEBUG(3, "%s(), event = %s\n", __func__, irlap_event[event]);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return -1;);
|
||||
IRDA_ASSERT(self->magic == LAP_MAGIC, return -1;);
|
||||
@@ -1635,7 +1635,7 @@ static int irlap_state_reset_wait(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
irlap_next_state( self, LAP_PCLOSE);
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(2, "%s(), Unknown event %s\n", __FUNCTION__,
|
||||
IRDA_DEBUG(2, "%s(), Unknown event %s\n", __func__,
|
||||
irlap_event[event]);
|
||||
|
||||
ret = -1;
|
||||
@@ -1656,7 +1656,7 @@ static int irlap_state_reset(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
{
|
||||
int ret = 0;
|
||||
|
||||
IRDA_DEBUG(3, "%s(), event = %s\n", __FUNCTION__, irlap_event[event]);
|
||||
IRDA_DEBUG(3, "%s(), event = %s\n", __func__, irlap_event[event]);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return -1;);
|
||||
IRDA_ASSERT(self->magic == LAP_MAGIC, return -1;);
|
||||
@@ -1714,7 +1714,7 @@ static int irlap_state_reset(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
* state
|
||||
*/
|
||||
if (!info) {
|
||||
IRDA_DEBUG(3, "%s(), RECV_SNRM_CMD\n", __FUNCTION__);
|
||||
IRDA_DEBUG(3, "%s(), RECV_SNRM_CMD\n", __func__);
|
||||
irlap_initiate_connection_state(self);
|
||||
irlap_wait_min_turn_around(self, &self->qos_tx);
|
||||
irlap_send_ua_response_frame(self, &self->qos_rx);
|
||||
@@ -1724,12 +1724,12 @@ static int irlap_state_reset(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
} else {
|
||||
IRDA_DEBUG(0,
|
||||
"%s(), SNRM frame contained an I field!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
}
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(1, "%s(), Unknown event %s\n",
|
||||
__FUNCTION__, irlap_event[event]);
|
||||
__func__, irlap_event[event]);
|
||||
|
||||
ret = -1;
|
||||
break;
|
||||
@@ -1749,7 +1749,7 @@ static int irlap_state_xmit_s(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
{
|
||||
int ret = 0;
|
||||
|
||||
IRDA_DEBUG(4, "%s(), event=%s\n", __FUNCTION__, irlap_event[event]);
|
||||
IRDA_DEBUG(4, "%s(), event=%s\n", __func__, irlap_event[event]);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return -ENODEV;);
|
||||
IRDA_ASSERT(self->magic == LAP_MAGIC, return -EBADR;);
|
||||
@@ -1786,7 +1786,7 @@ static int irlap_state_xmit_s(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
*/
|
||||
if((!nextfit) && (skb->len > self->bytes_left)) {
|
||||
IRDA_DEBUG(0, "%s(), Not allowed to transmit"
|
||||
" more bytes!\n", __FUNCTION__);
|
||||
" more bytes!\n", __func__);
|
||||
/* Requeue the skb */
|
||||
skb_queue_head(&self->txq, skb_get(skb));
|
||||
|
||||
@@ -1832,7 +1832,7 @@ static int irlap_state_xmit_s(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
ret = -EPROTO;
|
||||
}
|
||||
} else {
|
||||
IRDA_DEBUG(2, "%s(), Unable to send!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(2, "%s(), Unable to send!\n", __func__);
|
||||
skb_queue_head(&self->txq, skb_get(skb));
|
||||
ret = -EPROTO;
|
||||
}
|
||||
@@ -1848,7 +1848,7 @@ static int irlap_state_xmit_s(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
* when we return... - Jean II */
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(2, "%s(), Unknown event %s\n", __FUNCTION__,
|
||||
IRDA_DEBUG(2, "%s(), Unknown event %s\n", __func__,
|
||||
irlap_event[event]);
|
||||
|
||||
ret = -EINVAL;
|
||||
@@ -1871,7 +1871,7 @@ static int irlap_state_nrm_s(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
int nr_status;
|
||||
int ret = 0;
|
||||
|
||||
IRDA_DEBUG(4, "%s(), event=%s\n", __FUNCTION__, irlap_event[ event]);
|
||||
IRDA_DEBUG(4, "%s(), event=%s\n", __func__, irlap_event[ event]);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return -1;);
|
||||
IRDA_ASSERT(self->magic == LAP_MAGIC, return -1;);
|
||||
@@ -1880,7 +1880,7 @@ static int irlap_state_nrm_s(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
case RECV_I_CMD: /* Optimize for the common case */
|
||||
/* FIXME: must check for remote_busy below */
|
||||
IRDA_DEBUG(4, "%s(), event=%s nr=%d, vs=%d, ns=%d, "
|
||||
"vr=%d, pf=%d\n", __FUNCTION__,
|
||||
"vr=%d, pf=%d\n", __func__,
|
||||
irlap_event[event], info->nr,
|
||||
self->vs, info->ns, self->vr, info->pf);
|
||||
|
||||
@@ -2112,21 +2112,21 @@ static int irlap_state_nrm_s(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
irlap_next_state(self, LAP_NRM_S);
|
||||
} else {
|
||||
IRDA_DEBUG(1, "%s(), invalid nr not implemented!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
}
|
||||
break;
|
||||
case RECV_SNRM_CMD:
|
||||
/* SNRM frame is not allowed to contain an I-field */
|
||||
if (!info) {
|
||||
del_timer(&self->wd_timer);
|
||||
IRDA_DEBUG(1, "%s(), received SNRM cmd\n", __FUNCTION__);
|
||||
IRDA_DEBUG(1, "%s(), received SNRM cmd\n", __func__);
|
||||
irlap_next_state(self, LAP_RESET_CHECK);
|
||||
|
||||
irlap_reset_indication(self);
|
||||
} else {
|
||||
IRDA_DEBUG(0,
|
||||
"%s(), SNRM frame contained an I-field!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
|
||||
}
|
||||
break;
|
||||
@@ -2158,7 +2158,7 @@ static int irlap_state_nrm_s(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
* which explain why we use (self->N2 / 2) here !!!
|
||||
* Jean II
|
||||
*/
|
||||
IRDA_DEBUG(1, "%s(), retry_count = %d\n", __FUNCTION__,
|
||||
IRDA_DEBUG(1, "%s(), retry_count = %d\n", __func__,
|
||||
self->retry_count);
|
||||
|
||||
if (self->retry_count < (self->N2 / 2)) {
|
||||
@@ -2211,7 +2211,7 @@ static int irlap_state_nrm_s(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
irlap_send_test_frame(self, self->caddr, info->daddr, skb);
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(1, "%s(), Unknown event %d, (%s)\n", __FUNCTION__,
|
||||
IRDA_DEBUG(1, "%s(), Unknown event %d, (%s)\n", __func__,
|
||||
event, irlap_event[event]);
|
||||
|
||||
ret = -EINVAL;
|
||||
@@ -2228,7 +2228,7 @@ static int irlap_state_sclose(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
{
|
||||
int ret = 0;
|
||||
|
||||
IRDA_DEBUG(1, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(1, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return -ENODEV;);
|
||||
IRDA_ASSERT(self->magic == LAP_MAGIC, return -EBADR;);
|
||||
@@ -2285,7 +2285,7 @@ static int irlap_state_sclose(struct irlap_cb *self, IRLAP_EVENT event,
|
||||
break; /* stay in SCLOSE */
|
||||
}
|
||||
|
||||
IRDA_DEBUG(1, "%s(), Unknown event %d, (%s)\n", __FUNCTION__,
|
||||
IRDA_DEBUG(1, "%s(), Unknown event %d, (%s)\n", __func__,
|
||||
event, irlap_event[event]);
|
||||
|
||||
ret = -EINVAL;
|
||||
@@ -2301,7 +2301,7 @@ static int irlap_state_reset_check( struct irlap_cb *self, IRLAP_EVENT event,
|
||||
{
|
||||
int ret = 0;
|
||||
|
||||
IRDA_DEBUG(1, "%s(), event=%s\n", __FUNCTION__, irlap_event[event]);
|
||||
IRDA_DEBUG(1, "%s(), event=%s\n", __func__, irlap_event[event]);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return -ENODEV;);
|
||||
IRDA_ASSERT(self->magic == LAP_MAGIC, return -EBADR;);
|
||||
@@ -2322,7 +2322,7 @@ static int irlap_state_reset_check( struct irlap_cb *self, IRLAP_EVENT event,
|
||||
irlap_next_state(self, LAP_SCLOSE);
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(1, "%s(), Unknown event %d, (%s)\n", __FUNCTION__,
|
||||
IRDA_DEBUG(1, "%s(), Unknown event %d, (%s)\n", __func__,
|
||||
event, irlap_event[event]);
|
||||
|
||||
ret = -EINVAL;
|
||||
|
@@ -102,7 +102,7 @@ void irlap_queue_xmit(struct irlap_cb *self, struct sk_buff *skb)
|
||||
irlap_insert_info(self, skb);
|
||||
|
||||
if (unlikely(self->mode & IRDA_MODE_MONITOR)) {
|
||||
IRDA_DEBUG(3, "%s(): %s is in monitor mode\n", __FUNCTION__,
|
||||
IRDA_DEBUG(3, "%s(): %s is in monitor mode\n", __func__,
|
||||
self->netdev->name);
|
||||
dev_kfree_skb(skb);
|
||||
return;
|
||||
@@ -182,7 +182,7 @@ static void irlap_recv_snrm_cmd(struct irlap_cb *self, struct sk_buff *skb,
|
||||
/* Check if the new connection address is valid */
|
||||
if ((info->caddr == 0x00) || (info->caddr == 0xfe)) {
|
||||
IRDA_DEBUG(3, "%s(), invalid connection address!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -193,7 +193,7 @@ static void irlap_recv_snrm_cmd(struct irlap_cb *self, struct sk_buff *skb,
|
||||
/* Only accept if addressed directly to us */
|
||||
if (info->saddr != self->saddr) {
|
||||
IRDA_DEBUG(2, "%s(), not addressed to us!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
return;
|
||||
}
|
||||
irlap_do_event(self, RECV_SNRM_CMD, skb, info);
|
||||
@@ -215,7 +215,7 @@ void irlap_send_ua_response_frame(struct irlap_cb *self, struct qos_info *qos)
|
||||
struct ua_frame *frame;
|
||||
int ret;
|
||||
|
||||
IRDA_DEBUG(2, "%s() <%ld>\n", __FUNCTION__, jiffies);
|
||||
IRDA_DEBUG(2, "%s() <%ld>\n", __func__, jiffies);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == LAP_MAGIC, return;);
|
||||
@@ -290,7 +290,7 @@ void irlap_send_disc_frame(struct irlap_cb *self)
|
||||
struct sk_buff *tx_skb = NULL;
|
||||
struct disc_frame *frame;
|
||||
|
||||
IRDA_DEBUG(3, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(3, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == LAP_MAGIC, return;);
|
||||
@@ -321,7 +321,7 @@ void irlap_send_discovery_xid_frame(struct irlap_cb *self, int S, __u8 s,
|
||||
__u32 bcast = BROADCAST;
|
||||
__u8 *info;
|
||||
|
||||
IRDA_DEBUG(4, "%s(), s=%d, S=%d, command=%d\n", __FUNCTION__,
|
||||
IRDA_DEBUG(4, "%s(), s=%d, S=%d, command=%d\n", __func__,
|
||||
s, S, command);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
@@ -414,13 +414,13 @@ static void irlap_recv_discovery_xid_rsp(struct irlap_cb *self,
|
||||
__u8 *discovery_info;
|
||||
char *text;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == LAP_MAGIC, return;);
|
||||
|
||||
if (!pskb_may_pull(skb, sizeof(struct xid_frame))) {
|
||||
IRDA_ERROR("%s: frame too short!\n", __FUNCTION__);
|
||||
IRDA_ERROR("%s: frame too short!\n", __func__);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -432,12 +432,12 @@ static void irlap_recv_discovery_xid_rsp(struct irlap_cb *self,
|
||||
/* Make sure frame is addressed to us */
|
||||
if ((info->saddr != self->saddr) && (info->saddr != BROADCAST)) {
|
||||
IRDA_DEBUG(0, "%s(), frame is not addressed to us!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
return;
|
||||
}
|
||||
|
||||
if ((discovery = kzalloc(sizeof(discovery_t), GFP_ATOMIC)) == NULL) {
|
||||
IRDA_WARNING("%s: kmalloc failed!\n", __FUNCTION__);
|
||||
IRDA_WARNING("%s: kmalloc failed!\n", __func__);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -445,7 +445,7 @@ static void irlap_recv_discovery_xid_rsp(struct irlap_cb *self,
|
||||
discovery->data.saddr = self->saddr;
|
||||
discovery->timestamp = jiffies;
|
||||
|
||||
IRDA_DEBUG(4, "%s(), daddr=%08x\n", __FUNCTION__,
|
||||
IRDA_DEBUG(4, "%s(), daddr=%08x\n", __func__,
|
||||
discovery->data.daddr);
|
||||
|
||||
discovery_info = skb_pull(skb, sizeof(struct xid_frame));
|
||||
@@ -491,7 +491,7 @@ static void irlap_recv_discovery_xid_cmd(struct irlap_cb *self,
|
||||
char *text;
|
||||
|
||||
if (!pskb_may_pull(skb, sizeof(struct xid_frame))) {
|
||||
IRDA_ERROR("%s: frame too short!\n", __FUNCTION__);
|
||||
IRDA_ERROR("%s: frame too short!\n", __func__);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -503,7 +503,7 @@ static void irlap_recv_discovery_xid_cmd(struct irlap_cb *self,
|
||||
/* Make sure frame is addressed to us */
|
||||
if ((info->saddr != self->saddr) && (info->saddr != BROADCAST)) {
|
||||
IRDA_DEBUG(0, "%s(), frame is not addressed to us!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -536,7 +536,7 @@ static void irlap_recv_discovery_xid_cmd(struct irlap_cb *self,
|
||||
if((discovery_info == NULL) ||
|
||||
!pskb_may_pull(skb, 3)) {
|
||||
IRDA_ERROR("%s: discovery frame too short!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -545,7 +545,7 @@ static void irlap_recv_discovery_xid_cmd(struct irlap_cb *self,
|
||||
*/
|
||||
discovery = kmalloc(sizeof(discovery_t), GFP_ATOMIC);
|
||||
if (!discovery) {
|
||||
IRDA_WARNING("%s: unable to malloc!\n", __FUNCTION__);
|
||||
IRDA_WARNING("%s: unable to malloc!\n", __func__);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -657,7 +657,7 @@ static void irlap_recv_rnr_frame(struct irlap_cb *self, struct sk_buff *skb,
|
||||
{
|
||||
info->nr = skb->data[1] >> 5;
|
||||
|
||||
IRDA_DEBUG(4, "%s(), nr=%d, %ld\n", __FUNCTION__, info->nr, jiffies);
|
||||
IRDA_DEBUG(4, "%s(), nr=%d, %ld\n", __func__, info->nr, jiffies);
|
||||
|
||||
if (command)
|
||||
irlap_do_event(self, RECV_RNR_CMD, skb, info);
|
||||
@@ -668,7 +668,7 @@ static void irlap_recv_rnr_frame(struct irlap_cb *self, struct sk_buff *skb,
|
||||
static void irlap_recv_rej_frame(struct irlap_cb *self, struct sk_buff *skb,
|
||||
struct irlap_info *info, int command)
|
||||
{
|
||||
IRDA_DEBUG(0, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s()\n", __func__);
|
||||
|
||||
info->nr = skb->data[1] >> 5;
|
||||
|
||||
@@ -682,7 +682,7 @@ static void irlap_recv_rej_frame(struct irlap_cb *self, struct sk_buff *skb,
|
||||
static void irlap_recv_srej_frame(struct irlap_cb *self, struct sk_buff *skb,
|
||||
struct irlap_info *info, int command)
|
||||
{
|
||||
IRDA_DEBUG(0, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s()\n", __func__);
|
||||
|
||||
info->nr = skb->data[1] >> 5;
|
||||
|
||||
@@ -696,7 +696,7 @@ static void irlap_recv_srej_frame(struct irlap_cb *self, struct sk_buff *skb,
|
||||
static void irlap_recv_disc_frame(struct irlap_cb *self, struct sk_buff *skb,
|
||||
struct irlap_info *info, int command)
|
||||
{
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(2, "%s()\n", __func__);
|
||||
|
||||
/* Check if this is a command or a response frame */
|
||||
if (command)
|
||||
@@ -755,7 +755,7 @@ void irlap_send_data_primary(struct irlap_cb *self, struct sk_buff *skb)
|
||||
|
||||
irlap_send_i_frame( self, tx_skb, CMD_FRAME);
|
||||
} else {
|
||||
IRDA_DEBUG(4, "%s(), sending unreliable frame\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s(), sending unreliable frame\n", __func__);
|
||||
irlap_send_ui_frame(self, skb_get(skb), self->caddr, CMD_FRAME);
|
||||
self->window -= 1;
|
||||
}
|
||||
@@ -808,7 +808,7 @@ void irlap_send_data_primary_poll(struct irlap_cb *self, struct sk_buff *skb)
|
||||
irlap_next_state(self, LAP_NRM_P);
|
||||
irlap_send_i_frame(self, tx_skb, CMD_FRAME);
|
||||
} else {
|
||||
IRDA_DEBUG(4, "%s(), sending unreliable frame\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s(), sending unreliable frame\n", __func__);
|
||||
|
||||
if (self->ack_required) {
|
||||
irlap_send_ui_frame(self, skb_get(skb), self->caddr, CMD_FRAME);
|
||||
@@ -835,7 +835,7 @@ void irlap_send_data_primary_poll(struct irlap_cb *self, struct sk_buff *skb)
|
||||
* See max_line_capacities[][] in qos.c for details. Jean II */
|
||||
transmission_time -= (self->final_timeout * self->bytes_left
|
||||
/ self->line_capacity);
|
||||
IRDA_DEBUG(4, "%s() adjusting transmission_time : ft=%d, bl=%d, lc=%d -> tt=%d\n", __FUNCTION__, self->final_timeout, self->bytes_left, self->line_capacity, transmission_time);
|
||||
IRDA_DEBUG(4, "%s() adjusting transmission_time : ft=%d, bl=%d, lc=%d -> tt=%d\n", __func__, self->final_timeout, self->bytes_left, self->line_capacity, transmission_time);
|
||||
|
||||
/* We are allowed to transmit a maximum number of bytes again. */
|
||||
self->bytes_left = self->line_capacity;
|
||||
@@ -1001,7 +1001,7 @@ void irlap_resend_rejected_frames(struct irlap_cb *self, int command)
|
||||
/* tx_skb = skb_clone( skb, GFP_ATOMIC); */
|
||||
tx_skb = skb_copy(skb, GFP_ATOMIC);
|
||||
if (!tx_skb) {
|
||||
IRDA_DEBUG(0, "%s(), unable to copy\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s(), unable to copy\n", __func__);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -1033,7 +1033,7 @@ void irlap_resend_rejected_frames(struct irlap_cb *self, int command)
|
||||
*/
|
||||
while (!skb_queue_empty(&self->txq)) {
|
||||
|
||||
IRDA_DEBUG(0, "%s(), sending additional frames!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s(), sending additional frames!\n", __func__);
|
||||
if (self->window > 0) {
|
||||
skb = skb_dequeue( &self->txq);
|
||||
IRDA_ASSERT(skb != NULL, return;);
|
||||
@@ -1073,7 +1073,7 @@ void irlap_resend_rejected_frame(struct irlap_cb *self, int command)
|
||||
/* tx_skb = skb_clone( skb, GFP_ATOMIC); */
|
||||
tx_skb = skb_copy(skb, GFP_ATOMIC);
|
||||
if (!tx_skb) {
|
||||
IRDA_DEBUG(0, "%s(), unable to copy\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s(), unable to copy\n", __func__);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -1096,7 +1096,7 @@ void irlap_resend_rejected_frame(struct irlap_cb *self, int command)
|
||||
void irlap_send_ui_frame(struct irlap_cb *self, struct sk_buff *skb,
|
||||
__u8 caddr, int command)
|
||||
{
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == LAP_MAGIC, return;);
|
||||
@@ -1156,7 +1156,7 @@ static inline void irlap_recv_i_frame(struct irlap_cb *self,
|
||||
static void irlap_recv_ui_frame(struct irlap_cb *self, struct sk_buff *skb,
|
||||
struct irlap_info *info)
|
||||
{
|
||||
IRDA_DEBUG( 4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG( 4, "%s()\n", __func__);
|
||||
|
||||
info->pf = skb->data[1] & PF_BIT; /* Final bit */
|
||||
|
||||
@@ -1175,7 +1175,7 @@ static void irlap_recv_frmr_frame(struct irlap_cb *self, struct sk_buff *skb,
|
||||
__u8 *frame;
|
||||
int w, x, y, z;
|
||||
|
||||
IRDA_DEBUG(0, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == LAP_MAGIC, return;);
|
||||
@@ -1183,7 +1183,7 @@ static void irlap_recv_frmr_frame(struct irlap_cb *self, struct sk_buff *skb,
|
||||
IRDA_ASSERT(info != NULL, return;);
|
||||
|
||||
if (!pskb_may_pull(skb, 4)) {
|
||||
IRDA_ERROR("%s: frame too short!\n", __FUNCTION__);
|
||||
IRDA_ERROR("%s: frame too short!\n", __func__);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -1269,10 +1269,10 @@ static void irlap_recv_test_frame(struct irlap_cb *self, struct sk_buff *skb,
|
||||
{
|
||||
struct test_frame *frame;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(2, "%s()\n", __func__);
|
||||
|
||||
if (!pskb_may_pull(skb, sizeof(*frame))) {
|
||||
IRDA_ERROR("%s: frame too short!\n", __FUNCTION__);
|
||||
IRDA_ERROR("%s: frame too short!\n", __func__);
|
||||
return;
|
||||
}
|
||||
frame = (struct test_frame *) skb->data;
|
||||
@@ -1281,7 +1281,7 @@ static void irlap_recv_test_frame(struct irlap_cb *self, struct sk_buff *skb,
|
||||
if (info->caddr == CBROADCAST) {
|
||||
if (skb->len < sizeof(struct test_frame)) {
|
||||
IRDA_DEBUG(0, "%s() test frame too short!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -1342,14 +1342,14 @@ int irlap_driver_rcv(struct sk_buff *skb, struct net_device *dev,
|
||||
* share and non linear skbs. This should never happen, so
|
||||
* we don't need to be clever about it. Jean II */
|
||||
if ((skb = skb_share_check(skb, GFP_ATOMIC)) == NULL) {
|
||||
IRDA_ERROR("%s: can't clone shared skb!\n", __FUNCTION__);
|
||||
IRDA_ERROR("%s: can't clone shared skb!\n", __func__);
|
||||
dev_kfree_skb(skb);
|
||||
return -1;
|
||||
}
|
||||
|
||||
/* Check if frame is large enough for parsing */
|
||||
if (!pskb_may_pull(skb, 2)) {
|
||||
IRDA_ERROR("%s: frame too short!\n", __FUNCTION__);
|
||||
IRDA_ERROR("%s: frame too short!\n", __func__);
|
||||
dev_kfree_skb(skb);
|
||||
return -1;
|
||||
}
|
||||
@@ -1365,7 +1365,7 @@ int irlap_driver_rcv(struct sk_buff *skb, struct net_device *dev,
|
||||
/* First we check if this frame has a valid connection address */
|
||||
if ((info.caddr != self->caddr) && (info.caddr != CBROADCAST)) {
|
||||
IRDA_DEBUG(0, "%s(), wrong connection address!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
goto out;
|
||||
}
|
||||
/*
|
||||
@@ -1400,7 +1400,7 @@ int irlap_driver_rcv(struct sk_buff *skb, struct net_device *dev,
|
||||
break;
|
||||
default:
|
||||
IRDA_WARNING("%s: Unknown S-frame %02x received!\n",
|
||||
__FUNCTION__, info.control);
|
||||
__func__, info.control);
|
||||
break;
|
||||
}
|
||||
goto out;
|
||||
@@ -1438,7 +1438,7 @@ int irlap_driver_rcv(struct sk_buff *skb, struct net_device *dev,
|
||||
break;
|
||||
default:
|
||||
IRDA_WARNING("%s: Unknown frame %02x received!\n",
|
||||
__FUNCTION__, info.control);
|
||||
__func__, info.control);
|
||||
break;
|
||||
}
|
||||
out:
|
||||
|
112
net/irda/irlmp.c
112
net/irda/irlmp.c
@@ -76,7 +76,7 @@ const char *irlmp_reasons[] = {
|
||||
*/
|
||||
int __init irlmp_init(void)
|
||||
{
|
||||
IRDA_DEBUG(1, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(1, "%s()\n", __func__);
|
||||
/* Initialize the irlmp structure. */
|
||||
irlmp = kzalloc( sizeof(struct irlmp_cb), GFP_KERNEL);
|
||||
if (irlmp == NULL)
|
||||
@@ -164,7 +164,7 @@ struct lsap_cb *irlmp_open_lsap(__u8 slsap_sel, notify_t *notify, __u8 pid)
|
||||
/* Allocate new instance of a LSAP connection */
|
||||
self = kzalloc(sizeof(struct lsap_cb), GFP_ATOMIC);
|
||||
if (self == NULL) {
|
||||
IRDA_ERROR("%s: can't allocate memory\n", __FUNCTION__);
|
||||
IRDA_ERROR("%s: can't allocate memory\n", __func__);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
@@ -202,7 +202,7 @@ EXPORT_SYMBOL(irlmp_open_lsap);
|
||||
*/
|
||||
static void __irlmp_close_lsap(struct lsap_cb *self)
|
||||
{
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == LMP_LSAP_MAGIC, return;);
|
||||
@@ -264,7 +264,7 @@ void irlmp_close_lsap(struct lsap_cb *self)
|
||||
if (!lsap) {
|
||||
IRDA_DEBUG(0,
|
||||
"%s(), Looks like somebody has removed me already!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
return;
|
||||
}
|
||||
__irlmp_close_lsap(self);
|
||||
@@ -291,7 +291,7 @@ void irlmp_register_link(struct irlap_cb *irlap, __u32 saddr, notify_t *notify)
|
||||
*/
|
||||
lap = kzalloc(sizeof(struct lap_cb), GFP_KERNEL);
|
||||
if (lap == NULL) {
|
||||
IRDA_ERROR("%s: unable to kmalloc\n", __FUNCTION__);
|
||||
IRDA_ERROR("%s: unable to kmalloc\n", __func__);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -304,7 +304,7 @@ void irlmp_register_link(struct irlap_cb *irlap, __u32 saddr, notify_t *notify)
|
||||
#endif
|
||||
lap->lsaps = hashbin_new(HB_LOCK);
|
||||
if (lap->lsaps == NULL) {
|
||||
IRDA_WARNING("%s(), unable to kmalloc lsaps\n", __FUNCTION__);
|
||||
IRDA_WARNING("%s(), unable to kmalloc lsaps\n", __func__);
|
||||
kfree(lap);
|
||||
return;
|
||||
}
|
||||
@@ -336,7 +336,7 @@ void irlmp_unregister_link(__u32 saddr)
|
||||
{
|
||||
struct lap_cb *link;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
/* We must remove ourselves from the hashbin *first*. This ensure
|
||||
* that no more LSAPs will be open on this link and no discovery
|
||||
@@ -381,7 +381,7 @@ int irlmp_connect_request(struct lsap_cb *self, __u8 dlsap_sel,
|
||||
|
||||
IRDA_DEBUG(2,
|
||||
"%s(), slsap_sel=%02x, dlsap_sel=%02x, saddr=%08x, daddr=%08x\n",
|
||||
__FUNCTION__, self->slsap_sel, dlsap_sel, saddr, daddr);
|
||||
__func__, self->slsap_sel, dlsap_sel, saddr, daddr);
|
||||
|
||||
if (test_bit(0, &self->connected)) {
|
||||
ret = -EISCONN;
|
||||
@@ -425,7 +425,7 @@ int irlmp_connect_request(struct lsap_cb *self, __u8 dlsap_sel,
|
||||
if (daddr != DEV_ADDR_ANY)
|
||||
discovery = hashbin_find(irlmp->cachelog, daddr, NULL);
|
||||
else {
|
||||
IRDA_DEBUG(2, "%s(), no daddr\n", __FUNCTION__);
|
||||
IRDA_DEBUG(2, "%s(), no daddr\n", __func__);
|
||||
discovery = (discovery_t *)
|
||||
hashbin_get_first(irlmp->cachelog);
|
||||
}
|
||||
@@ -438,7 +438,7 @@ int irlmp_connect_request(struct lsap_cb *self, __u8 dlsap_sel,
|
||||
}
|
||||
lap = hashbin_lock_find(irlmp->links, saddr, NULL);
|
||||
if (lap == NULL) {
|
||||
IRDA_DEBUG(1, "%s(), Unable to find a usable link!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(1, "%s(), Unable to find a usable link!\n", __func__);
|
||||
ret = -EHOSTUNREACH;
|
||||
goto err;
|
||||
}
|
||||
@@ -453,14 +453,14 @@ int irlmp_connect_request(struct lsap_cb *self, __u8 dlsap_sel,
|
||||
* disconnected yet (waiting for timeout in LAP).
|
||||
* Maybe we could give LAP a bit of help in this case.
|
||||
*/
|
||||
IRDA_DEBUG(0, "%s(), sorry, but I'm waiting for LAP to timeout!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s(), sorry, but I'm waiting for LAP to timeout!\n", __func__);
|
||||
ret = -EAGAIN;
|
||||
goto err;
|
||||
}
|
||||
|
||||
/* LAP is already connected to a different node, and LAP
|
||||
* can only talk to one node at a time */
|
||||
IRDA_DEBUG(0, "%s(), sorry, but link is busy!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s(), sorry, but link is busy!\n", __func__);
|
||||
ret = -EBUSY;
|
||||
goto err;
|
||||
}
|
||||
@@ -522,7 +522,7 @@ void irlmp_connect_indication(struct lsap_cb *self, struct sk_buff *skb)
|
||||
IRDA_ASSERT(self->lap != NULL, return;);
|
||||
|
||||
IRDA_DEBUG(2, "%s(), slsap_sel=%02x, dlsap_sel=%02x\n",
|
||||
__FUNCTION__, self->slsap_sel, self->dlsap_sel);
|
||||
__func__, self->slsap_sel, self->dlsap_sel);
|
||||
|
||||
/* Note : self->lap is set in irlmp_link_data_indication(),
|
||||
* (case CONNECT_CMD:) because we have no way to set it here.
|
||||
@@ -563,7 +563,7 @@ int irlmp_connect_response(struct lsap_cb *self, struct sk_buff *userdata)
|
||||
* in the state machine itself. Jean II */
|
||||
|
||||
IRDA_DEBUG(2, "%s(), slsap_sel=%02x, dlsap_sel=%02x\n",
|
||||
__FUNCTION__, self->slsap_sel, self->dlsap_sel);
|
||||
__func__, self->slsap_sel, self->dlsap_sel);
|
||||
|
||||
/* Make room for MUX control header (3 bytes) */
|
||||
IRDA_ASSERT(skb_headroom(userdata) >= LMP_CONTROL_HEADER, return -1;);
|
||||
@@ -589,7 +589,7 @@ void irlmp_connect_confirm(struct lsap_cb *self, struct sk_buff *skb)
|
||||
int lap_header_size;
|
||||
int max_seg_size;
|
||||
|
||||
IRDA_DEBUG(3, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(3, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(skb != NULL, return;);
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
@@ -603,7 +603,7 @@ void irlmp_connect_confirm(struct lsap_cb *self, struct sk_buff *skb)
|
||||
max_header_size = LMP_HEADER + lap_header_size;
|
||||
|
||||
IRDA_DEBUG(2, "%s(), max_header_size=%d\n",
|
||||
__FUNCTION__, max_header_size);
|
||||
__func__, max_header_size);
|
||||
|
||||
/* Hide LMP_CONTROL_HEADER header from layer above */
|
||||
skb_pull(skb, LMP_CONTROL_HEADER);
|
||||
@@ -629,7 +629,7 @@ struct lsap_cb *irlmp_dup(struct lsap_cb *orig, void *instance)
|
||||
struct lsap_cb *new;
|
||||
unsigned long flags;
|
||||
|
||||
IRDA_DEBUG(1, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(1, "%s()\n", __func__);
|
||||
|
||||
spin_lock_irqsave(&irlmp->unconnected_lsaps->hb_spinlock, flags);
|
||||
|
||||
@@ -638,7 +638,7 @@ struct lsap_cb *irlmp_dup(struct lsap_cb *orig, void *instance)
|
||||
if ((!hashbin_find(irlmp->unconnected_lsaps, (long) orig, NULL)) ||
|
||||
(orig->lap == NULL)) {
|
||||
IRDA_DEBUG(0, "%s(), invalid LSAP (wrong state)\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
spin_unlock_irqrestore(&irlmp->unconnected_lsaps->hb_spinlock,
|
||||
flags);
|
||||
return NULL;
|
||||
@@ -647,7 +647,7 @@ struct lsap_cb *irlmp_dup(struct lsap_cb *orig, void *instance)
|
||||
/* Allocate a new instance */
|
||||
new = kmemdup(orig, sizeof(*new), GFP_ATOMIC);
|
||||
if (!new) {
|
||||
IRDA_DEBUG(0, "%s(), unable to kmalloc\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s(), unable to kmalloc\n", __func__);
|
||||
spin_unlock_irqrestore(&irlmp->unconnected_lsaps->hb_spinlock,
|
||||
flags);
|
||||
return NULL;
|
||||
@@ -693,7 +693,7 @@ int irlmp_disconnect_request(struct lsap_cb *self, struct sk_buff *userdata)
|
||||
* and us that might mess up the hashbins below. This fixes it.
|
||||
* Jean II */
|
||||
if (! test_and_clear_bit(0, &self->connected)) {
|
||||
IRDA_DEBUG(0, "%s(), already disconnected!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s(), already disconnected!\n", __func__);
|
||||
dev_kfree_skb(userdata);
|
||||
return -1;
|
||||
}
|
||||
@@ -747,19 +747,19 @@ void irlmp_disconnect_indication(struct lsap_cb *self, LM_REASON reason,
|
||||
{
|
||||
struct lsap_cb *lsap;
|
||||
|
||||
IRDA_DEBUG(1, "%s(), reason=%s\n", __FUNCTION__, irlmp_reasons[reason]);
|
||||
IRDA_DEBUG(1, "%s(), reason=%s\n", __func__, irlmp_reasons[reason]);
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == LMP_LSAP_MAGIC, return;);
|
||||
|
||||
IRDA_DEBUG(3, "%s(), slsap_sel=%02x, dlsap_sel=%02x\n",
|
||||
__FUNCTION__, self->slsap_sel, self->dlsap_sel);
|
||||
__func__, self->slsap_sel, self->dlsap_sel);
|
||||
|
||||
/* Already disconnected ?
|
||||
* There is a race condition between irlmp_disconnect_request()
|
||||
* and us that might mess up the hashbins below. This fixes it.
|
||||
* Jean II */
|
||||
if (! test_and_clear_bit(0, &self->connected)) {
|
||||
IRDA_DEBUG(0, "%s(), already disconnected!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s(), already disconnected!\n", __func__);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -792,7 +792,7 @@ void irlmp_disconnect_indication(struct lsap_cb *self, LM_REASON reason,
|
||||
self->notify.disconnect_indication(self->notify.instance,
|
||||
self, reason, skb);
|
||||
} else {
|
||||
IRDA_DEBUG(0, "%s(), no handler\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s(), no handler\n", __func__);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -845,7 +845,7 @@ void irlmp_do_discovery(int nslots)
|
||||
/* Make sure the value is sane */
|
||||
if ((nslots != 1) && (nslots != 6) && (nslots != 8) && (nslots != 16)){
|
||||
IRDA_WARNING("%s: invalid value for number of slots!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
nslots = sysctl_discovery_slots = 8;
|
||||
}
|
||||
|
||||
@@ -963,7 +963,7 @@ irlmp_notify_client(irlmp_client_t *client,
|
||||
int number; /* Number of nodes in the log */
|
||||
int i;
|
||||
|
||||
IRDA_DEBUG(3, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(3, "%s()\n", __func__);
|
||||
|
||||
/* Check if client wants or not partial/selective log (optimisation) */
|
||||
if (!client->disco_callback)
|
||||
@@ -1014,7 +1014,7 @@ void irlmp_discovery_confirm(hashbin_t *log, DISCOVERY_MODE mode)
|
||||
irlmp_client_t *client;
|
||||
irlmp_client_t *client_next;
|
||||
|
||||
IRDA_DEBUG(3, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(3, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(log != NULL, return;);
|
||||
|
||||
@@ -1049,7 +1049,7 @@ void irlmp_discovery_expiry(discinfo_t *expiries, int number)
|
||||
irlmp_client_t *client_next;
|
||||
int i;
|
||||
|
||||
IRDA_DEBUG(3, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(3, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(expiries != NULL, return;);
|
||||
|
||||
@@ -1082,7 +1082,7 @@ void irlmp_discovery_expiry(discinfo_t *expiries, int number)
|
||||
*/
|
||||
discovery_t *irlmp_get_discovery_response(void)
|
||||
{
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(irlmp != NULL, return NULL;);
|
||||
|
||||
@@ -1160,7 +1160,7 @@ int irlmp_udata_request(struct lsap_cb *self, struct sk_buff *userdata)
|
||||
{
|
||||
int ret;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(userdata != NULL, return -1;);
|
||||
|
||||
@@ -1184,7 +1184,7 @@ int irlmp_udata_request(struct lsap_cb *self, struct sk_buff *userdata)
|
||||
*/
|
||||
void irlmp_udata_indication(struct lsap_cb *self, struct sk_buff *skb)
|
||||
{
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == LMP_LSAP_MAGIC, return;);
|
||||
@@ -1211,7 +1211,7 @@ int irlmp_connless_data_request(struct lsap_cb *self, struct sk_buff *userdata,
|
||||
struct sk_buff *clone_skb;
|
||||
struct lap_cb *lap;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(userdata != NULL, return -1;);
|
||||
|
||||
@@ -1262,7 +1262,7 @@ int irlmp_connless_data_request(struct lsap_cb *self, struct sk_buff *userdata,
|
||||
#ifdef CONFIG_IRDA_ULTRA
|
||||
void irlmp_connless_data_indication(struct lsap_cb *self, struct sk_buff *skb)
|
||||
{
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == LMP_LSAP_MAGIC, return;);
|
||||
@@ -1305,7 +1305,7 @@ void irlmp_status_indication(struct lap_cb *self,
|
||||
curr->notify.status_indication(curr->notify.instance,
|
||||
link, lock);
|
||||
else
|
||||
IRDA_DEBUG(2, "%s(), no handler\n", __FUNCTION__);
|
||||
IRDA_DEBUG(2, "%s(), no handler\n", __func__);
|
||||
|
||||
curr = next;
|
||||
}
|
||||
@@ -1333,7 +1333,7 @@ void irlmp_flow_indication(struct lap_cb *self, LOCAL_FLOW flow)
|
||||
/* Get the number of lsap. That's the only safe way to know
|
||||
* that we have looped around... - Jean II */
|
||||
lsap_todo = HASHBIN_GET_SIZE(self->lsaps);
|
||||
IRDA_DEBUG(4, "%s() : %d lsaps to scan\n", __FUNCTION__, lsap_todo);
|
||||
IRDA_DEBUG(4, "%s() : %d lsaps to scan\n", __func__, lsap_todo);
|
||||
|
||||
/* Poll lsap in order until the queue is full or until we
|
||||
* tried them all.
|
||||
@@ -1352,14 +1352,14 @@ void irlmp_flow_indication(struct lap_cb *self, LOCAL_FLOW flow)
|
||||
/* Uh-oh... Paranoia */
|
||||
if(curr == NULL)
|
||||
break;
|
||||
IRDA_DEBUG(4, "%s() : curr is %p, next was %p and is now %p, still %d to go - queue len = %d\n", __FUNCTION__, curr, next, self->flow_next, lsap_todo, IRLAP_GET_TX_QUEUE_LEN(self->irlap));
|
||||
IRDA_DEBUG(4, "%s() : curr is %p, next was %p and is now %p, still %d to go - queue len = %d\n", __func__, curr, next, self->flow_next, lsap_todo, IRLAP_GET_TX_QUEUE_LEN(self->irlap));
|
||||
|
||||
/* Inform lsap user that it can send one more packet. */
|
||||
if (curr->notify.flow_indication != NULL)
|
||||
curr->notify.flow_indication(curr->notify.instance,
|
||||
curr, flow);
|
||||
else
|
||||
IRDA_DEBUG(1, "%s(), no handler\n", __FUNCTION__);
|
||||
IRDA_DEBUG(1, "%s(), no handler\n", __func__);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1381,7 +1381,7 @@ __u8 *irlmp_hint_to_service(__u8 *hint)
|
||||
*/
|
||||
service = kmalloc(16, GFP_ATOMIC);
|
||||
if (!service) {
|
||||
IRDA_DEBUG(1, "%s(), Unable to kmalloc!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(1, "%s(), Unable to kmalloc!\n", __func__);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
@@ -1482,12 +1482,12 @@ void *irlmp_register_service(__u16 hints)
|
||||
{
|
||||
irlmp_service_t *service;
|
||||
|
||||
IRDA_DEBUG(4, "%s(), hints = %04x\n", __FUNCTION__, hints);
|
||||
IRDA_DEBUG(4, "%s(), hints = %04x\n", __func__, hints);
|
||||
|
||||
/* Make a new registration */
|
||||
service = kmalloc(sizeof(irlmp_service_t), GFP_ATOMIC);
|
||||
if (!service) {
|
||||
IRDA_DEBUG(1, "%s(), Unable to kmalloc!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(1, "%s(), Unable to kmalloc!\n", __func__);
|
||||
return NULL;
|
||||
}
|
||||
service->hints.word = hints;
|
||||
@@ -1512,7 +1512,7 @@ int irlmp_unregister_service(void *handle)
|
||||
irlmp_service_t *service;
|
||||
unsigned long flags;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
if (!handle)
|
||||
return -1;
|
||||
@@ -1520,7 +1520,7 @@ int irlmp_unregister_service(void *handle)
|
||||
/* Caller may call with invalid handle (it's legal) - Jean II */
|
||||
service = hashbin_lock_find(irlmp->services, (long) handle, NULL);
|
||||
if (!service) {
|
||||
IRDA_DEBUG(1, "%s(), Unknown service!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(1, "%s(), Unknown service!\n", __func__);
|
||||
return -1;
|
||||
}
|
||||
|
||||
@@ -1557,13 +1557,13 @@ void *irlmp_register_client(__u16 hint_mask, DISCOVERY_CALLBACK1 disco_clb,
|
||||
{
|
||||
irlmp_client_t *client;
|
||||
|
||||
IRDA_DEBUG(1, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(1, "%s()\n", __func__);
|
||||
IRDA_ASSERT(irlmp != NULL, return NULL;);
|
||||
|
||||
/* Make a new registration */
|
||||
client = kmalloc(sizeof(irlmp_client_t), GFP_ATOMIC);
|
||||
if (!client) {
|
||||
IRDA_DEBUG( 1, "%s(), Unable to kmalloc!\n", __FUNCTION__);
|
||||
IRDA_DEBUG( 1, "%s(), Unable to kmalloc!\n", __func__);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
@@ -1599,7 +1599,7 @@ int irlmp_update_client(void *handle, __u16 hint_mask,
|
||||
|
||||
client = hashbin_lock_find(irlmp->clients, (long) handle, NULL);
|
||||
if (!client) {
|
||||
IRDA_DEBUG(1, "%s(), Unknown client!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(1, "%s(), Unknown client!\n", __func__);
|
||||
return -1;
|
||||
}
|
||||
|
||||
@@ -1622,7 +1622,7 @@ int irlmp_unregister_client(void *handle)
|
||||
{
|
||||
struct irlmp_client *client;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
if (!handle)
|
||||
return -1;
|
||||
@@ -1630,11 +1630,11 @@ int irlmp_unregister_client(void *handle)
|
||||
/* Caller may call with invalid handle (it's legal) - Jean II */
|
||||
client = hashbin_lock_find(irlmp->clients, (long) handle, NULL);
|
||||
if (!client) {
|
||||
IRDA_DEBUG(1, "%s(), Unknown client!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(1, "%s(), Unknown client!\n", __func__);
|
||||
return -1;
|
||||
}
|
||||
|
||||
IRDA_DEBUG(4, "%s(), removing client!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s(), removing client!\n", __func__);
|
||||
hashbin_remove_this(irlmp->clients, (irda_queue_t *) client);
|
||||
kfree(client);
|
||||
|
||||
@@ -1663,7 +1663,7 @@ static int irlmp_slsap_inuse(__u8 slsap_sel)
|
||||
IRDA_ASSERT(irlmp->magic == LMP_MAGIC, return TRUE;);
|
||||
IRDA_ASSERT(slsap_sel != LSAP_ANY, return TRUE;);
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
#ifdef CONFIG_IRDA_ULTRA
|
||||
/* Accept all bindings to the connectionless LSAP */
|
||||
@@ -1790,7 +1790,7 @@ static __u8 irlmp_find_free_slsap(void)
|
||||
/* Make sure we terminate the loop */
|
||||
if (wrapped++) {
|
||||
IRDA_ERROR("%s: no more free LSAPs !\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
@@ -1805,7 +1805,7 @@ static __u8 irlmp_find_free_slsap(void)
|
||||
/* Got it ! */
|
||||
lsap_sel = irlmp->last_lsap_sel;
|
||||
IRDA_DEBUG(4, "%s(), found free lsap_sel=%02x\n",
|
||||
__FUNCTION__, lsap_sel);
|
||||
__func__, lsap_sel);
|
||||
|
||||
return lsap_sel;
|
||||
}
|
||||
@@ -1823,26 +1823,26 @@ LM_REASON irlmp_convert_lap_reason( LAP_REASON lap_reason)
|
||||
|
||||
switch (lap_reason) {
|
||||
case LAP_DISC_INDICATION: /* Received a disconnect request from peer */
|
||||
IRDA_DEBUG( 1, "%s(), LAP_DISC_INDICATION\n", __FUNCTION__);
|
||||
IRDA_DEBUG( 1, "%s(), LAP_DISC_INDICATION\n", __func__);
|
||||
reason = LM_USER_REQUEST;
|
||||
break;
|
||||
case LAP_NO_RESPONSE: /* To many retransmits without response */
|
||||
IRDA_DEBUG( 1, "%s(), LAP_NO_RESPONSE\n", __FUNCTION__);
|
||||
IRDA_DEBUG( 1, "%s(), LAP_NO_RESPONSE\n", __func__);
|
||||
reason = LM_LAP_DISCONNECT;
|
||||
break;
|
||||
case LAP_RESET_INDICATION:
|
||||
IRDA_DEBUG( 1, "%s(), LAP_RESET_INDICATION\n", __FUNCTION__);
|
||||
IRDA_DEBUG( 1, "%s(), LAP_RESET_INDICATION\n", __func__);
|
||||
reason = LM_LAP_RESET;
|
||||
break;
|
||||
case LAP_FOUND_NONE:
|
||||
case LAP_MEDIA_BUSY:
|
||||
case LAP_PRIMARY_CONFLICT:
|
||||
IRDA_DEBUG(1, "%s(), LAP_FOUND_NONE, LAP_MEDIA_BUSY or LAP_PRIMARY_CONFLICT\n", __FUNCTION__);
|
||||
IRDA_DEBUG(1, "%s(), LAP_FOUND_NONE, LAP_MEDIA_BUSY or LAP_PRIMARY_CONFLICT\n", __func__);
|
||||
reason = LM_CONNECT_FAILURE;
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(1, "%s(), Unknow IrLAP disconnect reason %d!\n",
|
||||
__FUNCTION__, lap_reason);
|
||||
__func__, lap_reason);
|
||||
reason = LM_LAP_DISCONNECT;
|
||||
break;
|
||||
}
|
||||
|
@@ -120,7 +120,7 @@ static inline void irlmp_next_lap_state(struct lap_cb *self,
|
||||
IRLMP_STATE state)
|
||||
{
|
||||
/*
|
||||
IRDA_DEBUG(4, "%s(), LMP LAP = %s\n", __FUNCTION__, irlmp_state[state]);
|
||||
IRDA_DEBUG(4, "%s(), LMP LAP = %s\n", __func__, irlmp_state[state]);
|
||||
*/
|
||||
self->lap_state = state;
|
||||
}
|
||||
@@ -130,7 +130,7 @@ static inline void irlmp_next_lsap_state(struct lsap_cb *self,
|
||||
{
|
||||
/*
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_DEBUG(4, "%s(), LMP LSAP = %s\n", __FUNCTION__, irlsap_state[state]);
|
||||
IRDA_DEBUG(4, "%s(), LMP LSAP = %s\n", __func__, irlsap_state[state]);
|
||||
*/
|
||||
self->lsap_state = state;
|
||||
}
|
||||
@@ -143,7 +143,7 @@ int irlmp_do_lsap_event(struct lsap_cb *self, IRLMP_EVENT event,
|
||||
IRDA_ASSERT(self->magic == LMP_LSAP_MAGIC, return -1;);
|
||||
|
||||
IRDA_DEBUG(4, "%s(), EVENT = %s, STATE = %s\n",
|
||||
__FUNCTION__, irlmp_event[event], irlsap_state[ self->lsap_state]);
|
||||
__func__, irlmp_event[event], irlsap_state[ self->lsap_state]);
|
||||
|
||||
return (*lsap_state[self->lsap_state]) (self, event, skb);
|
||||
}
|
||||
@@ -160,7 +160,7 @@ void irlmp_do_lap_event(struct lap_cb *self, IRLMP_EVENT event,
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == LMP_LAP_MAGIC, return;);
|
||||
|
||||
IRDA_DEBUG(4, "%s(), EVENT = %s, STATE = %s\n", __FUNCTION__,
|
||||
IRDA_DEBUG(4, "%s(), EVENT = %s, STATE = %s\n", __func__,
|
||||
irlmp_event[event],
|
||||
irlmp_state[self->lap_state]);
|
||||
|
||||
@@ -169,7 +169,7 @@ void irlmp_do_lap_event(struct lap_cb *self, IRLMP_EVENT event,
|
||||
|
||||
void irlmp_discovery_timer_expired(void *data)
|
||||
{
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
/* We always cleanup the log (active & passive discovery) */
|
||||
irlmp_do_expiry();
|
||||
@@ -184,7 +184,7 @@ void irlmp_watchdog_timer_expired(void *data)
|
||||
{
|
||||
struct lsap_cb *self = (struct lsap_cb *) data;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(2, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == LMP_LSAP_MAGIC, return;);
|
||||
@@ -196,7 +196,7 @@ void irlmp_idle_timer_expired(void *data)
|
||||
{
|
||||
struct lap_cb *self = (struct lap_cb *) data;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(2, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == LMP_LAP_MAGIC, return;);
|
||||
@@ -256,7 +256,7 @@ irlmp_do_all_lsap_event(hashbin_t * lsap_hashbin,
|
||||
static void irlmp_state_standby(struct lap_cb *self, IRLMP_EVENT event,
|
||||
struct sk_buff *skb)
|
||||
{
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
IRDA_ASSERT(self->irlap != NULL, return;);
|
||||
|
||||
switch (event) {
|
||||
@@ -276,7 +276,7 @@ static void irlmp_state_standby(struct lap_cb *self, IRLMP_EVENT event,
|
||||
irlap_connect_response(self->irlap, skb);
|
||||
break;
|
||||
case LM_LAP_CONNECT_REQUEST:
|
||||
IRDA_DEBUG(4, "%s() LS_CONNECT_REQUEST\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s() LS_CONNECT_REQUEST\n", __func__);
|
||||
|
||||
irlmp_next_lap_state(self, LAP_U_CONNECT);
|
||||
|
||||
@@ -285,13 +285,13 @@ static void irlmp_state_standby(struct lap_cb *self, IRLMP_EVENT event,
|
||||
break;
|
||||
case LM_LAP_DISCONNECT_INDICATION:
|
||||
IRDA_DEBUG(4, "%s(), Error LM_LAP_DISCONNECT_INDICATION\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
|
||||
irlmp_next_lap_state(self, LAP_STANDBY);
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(0, "%s(), Unknown event %s\n",
|
||||
__FUNCTION__, irlmp_event[event]);
|
||||
__func__, irlmp_event[event]);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -306,7 +306,7 @@ static void irlmp_state_standby(struct lap_cb *self, IRLMP_EVENT event,
|
||||
static void irlmp_state_u_connect(struct lap_cb *self, IRLMP_EVENT event,
|
||||
struct sk_buff *skb)
|
||||
{
|
||||
IRDA_DEBUG(2, "%s(), event=%s\n", __FUNCTION__, irlmp_event[event]);
|
||||
IRDA_DEBUG(2, "%s(), event=%s\n", __func__, irlmp_event[event]);
|
||||
|
||||
switch (event) {
|
||||
case LM_LAP_CONNECT_INDICATION:
|
||||
@@ -326,7 +326,7 @@ static void irlmp_state_u_connect(struct lap_cb *self, IRLMP_EVENT event,
|
||||
* the lsaps may already have gone. This avoid getting stuck
|
||||
* forever in LAP_ACTIVE state - Jean II */
|
||||
if (HASHBIN_GET_SIZE(self->lsaps) == 0) {
|
||||
IRDA_DEBUG(0, "%s() NO LSAPs !\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s() NO LSAPs !\n", __func__);
|
||||
irlmp_start_idle_timer(self, LM_IDLE_TIMEOUT);
|
||||
}
|
||||
break;
|
||||
@@ -344,12 +344,12 @@ static void irlmp_state_u_connect(struct lap_cb *self, IRLMP_EVENT event,
|
||||
* the lsaps may already have gone. This avoid getting stuck
|
||||
* forever in LAP_ACTIVE state - Jean II */
|
||||
if (HASHBIN_GET_SIZE(self->lsaps) == 0) {
|
||||
IRDA_DEBUG(0, "%s() NO LSAPs !\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s() NO LSAPs !\n", __func__);
|
||||
irlmp_start_idle_timer(self, LM_IDLE_TIMEOUT);
|
||||
}
|
||||
break;
|
||||
case LM_LAP_DISCONNECT_INDICATION:
|
||||
IRDA_DEBUG(4, "%s(), LM_LAP_DISCONNECT_INDICATION\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s(), LM_LAP_DISCONNECT_INDICATION\n", __func__);
|
||||
irlmp_next_lap_state(self, LAP_STANDBY);
|
||||
|
||||
/* Send disconnect event to all LSAPs using this link */
|
||||
@@ -357,7 +357,7 @@ static void irlmp_state_u_connect(struct lap_cb *self, IRLMP_EVENT event,
|
||||
LM_LAP_DISCONNECT_INDICATION);
|
||||
break;
|
||||
case LM_LAP_DISCONNECT_REQUEST:
|
||||
IRDA_DEBUG(4, "%s(), LM_LAP_DISCONNECT_REQUEST\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s(), LM_LAP_DISCONNECT_REQUEST\n", __func__);
|
||||
|
||||
/* One of the LSAP did timeout or was closed, if it was
|
||||
* the last one, try to get out of here - Jean II */
|
||||
@@ -367,7 +367,7 @@ static void irlmp_state_u_connect(struct lap_cb *self, IRLMP_EVENT event,
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(0, "%s(), Unknown event %s\n",
|
||||
__FUNCTION__, irlmp_event[event]);
|
||||
__func__, irlmp_event[event]);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -381,11 +381,11 @@ static void irlmp_state_u_connect(struct lap_cb *self, IRLMP_EVENT event,
|
||||
static void irlmp_state_active(struct lap_cb *self, IRLMP_EVENT event,
|
||||
struct sk_buff *skb)
|
||||
{
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
switch (event) {
|
||||
case LM_LAP_CONNECT_REQUEST:
|
||||
IRDA_DEBUG(4, "%s(), LS_CONNECT_REQUEST\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s(), LS_CONNECT_REQUEST\n", __func__);
|
||||
|
||||
/*
|
||||
* IrLAP may have a pending disconnect. We tried to close
|
||||
@@ -468,7 +468,7 @@ static void irlmp_state_active(struct lap_cb *self, IRLMP_EVENT event,
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(0, "%s(), Unknown event %s\n",
|
||||
__FUNCTION__, irlmp_event[event]);
|
||||
__func__, irlmp_event[event]);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -490,7 +490,7 @@ static int irlmp_state_disconnected(struct lsap_cb *self, IRLMP_EVENT event,
|
||||
{
|
||||
int ret = 0;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return -1;);
|
||||
IRDA_ASSERT(self->magic == LMP_LSAP_MAGIC, return -1;);
|
||||
@@ -505,11 +505,11 @@ static int irlmp_state_disconnected(struct lsap_cb *self, IRLMP_EVENT event,
|
||||
break;
|
||||
#endif /* CONFIG_IRDA_ULTRA */
|
||||
case LM_CONNECT_REQUEST:
|
||||
IRDA_DEBUG(4, "%s(), LM_CONNECT_REQUEST\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s(), LM_CONNECT_REQUEST\n", __func__);
|
||||
|
||||
if (self->conn_skb) {
|
||||
IRDA_WARNING("%s: busy with another request!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
return -EBUSY;
|
||||
}
|
||||
/* Don't forget to refcount it (see irlmp_connect_request()) */
|
||||
@@ -526,7 +526,7 @@ static int irlmp_state_disconnected(struct lsap_cb *self, IRLMP_EVENT event,
|
||||
case LM_CONNECT_INDICATION:
|
||||
if (self->conn_skb) {
|
||||
IRDA_WARNING("%s: busy with another request!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
return -EBUSY;
|
||||
}
|
||||
/* Don't forget to refcount it (see irlap_driver_rcv()) */
|
||||
@@ -552,7 +552,7 @@ static int irlmp_state_disconnected(struct lsap_cb *self, IRLMP_EVENT event,
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(1, "%s(), Unknown event %s on LSAP %#02x\n",
|
||||
__FUNCTION__, irlmp_event[event], self->slsap_sel);
|
||||
__func__, irlmp_event[event], self->slsap_sel);
|
||||
break;
|
||||
}
|
||||
return ret;
|
||||
@@ -570,7 +570,7 @@ static int irlmp_state_connect(struct lsap_cb *self, IRLMP_EVENT event,
|
||||
struct lsap_cb *lsap;
|
||||
int ret = 0;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return -1;);
|
||||
IRDA_ASSERT(self->magic == LMP_LSAP_MAGIC, return -1;);
|
||||
@@ -603,7 +603,7 @@ static int irlmp_state_connect(struct lsap_cb *self, IRLMP_EVENT event,
|
||||
case LM_WATCHDOG_TIMEOUT:
|
||||
/* May happen, who knows...
|
||||
* Jean II */
|
||||
IRDA_DEBUG(0, "%s() WATCHDOG_TIMEOUT!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s() WATCHDOG_TIMEOUT!\n", __func__);
|
||||
|
||||
/* Disconnect, get out... - Jean II */
|
||||
self->lap = NULL;
|
||||
@@ -614,7 +614,7 @@ static int irlmp_state_connect(struct lsap_cb *self, IRLMP_EVENT event,
|
||||
/* LM_LAP_DISCONNECT_INDICATION : Should never happen, we
|
||||
* are *not* yet bound to the IrLAP link. Jean II */
|
||||
IRDA_DEBUG(0, "%s(), Unknown event %s on LSAP %#02x\n",
|
||||
__FUNCTION__, irlmp_event[event], self->slsap_sel);
|
||||
__func__, irlmp_event[event], self->slsap_sel);
|
||||
break;
|
||||
}
|
||||
return ret;
|
||||
@@ -632,7 +632,7 @@ static int irlmp_state_connect_pend(struct lsap_cb *self, IRLMP_EVENT event,
|
||||
struct sk_buff *tx_skb;
|
||||
int ret = 0;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return -1;);
|
||||
IRDA_ASSERT(self->magic == LMP_LSAP_MAGIC, return -1;);
|
||||
@@ -643,16 +643,16 @@ static int irlmp_state_connect_pend(struct lsap_cb *self, IRLMP_EVENT event,
|
||||
break;
|
||||
case LM_CONNECT_RESPONSE:
|
||||
IRDA_DEBUG(0, "%s(), LM_CONNECT_RESPONSE, "
|
||||
"no indication issued yet\n", __FUNCTION__);
|
||||
"no indication issued yet\n", __func__);
|
||||
/* Keep state */
|
||||
break;
|
||||
case LM_DISCONNECT_REQUEST:
|
||||
IRDA_DEBUG(0, "%s(), LM_DISCONNECT_REQUEST, "
|
||||
"not yet bound to IrLAP connection\n", __FUNCTION__);
|
||||
"not yet bound to IrLAP connection\n", __func__);
|
||||
/* Keep state */
|
||||
break;
|
||||
case LM_LAP_CONNECT_CONFIRM:
|
||||
IRDA_DEBUG(4, "%s(), LS_CONNECT_CONFIRM\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s(), LS_CONNECT_CONFIRM\n", __func__);
|
||||
irlmp_next_lsap_state(self, LSAP_CONNECT);
|
||||
|
||||
tx_skb = self->conn_skb;
|
||||
@@ -666,7 +666,7 @@ static int irlmp_state_connect_pend(struct lsap_cb *self, IRLMP_EVENT event,
|
||||
/* Will happen in some rare cases because of a race condition.
|
||||
* Just make sure we don't stay there forever...
|
||||
* Jean II */
|
||||
IRDA_DEBUG(0, "%s() WATCHDOG_TIMEOUT!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s() WATCHDOG_TIMEOUT!\n", __func__);
|
||||
|
||||
/* Go back to disconnected mode, keep the socket waiting */
|
||||
self->lap = NULL;
|
||||
@@ -680,7 +680,7 @@ static int irlmp_state_connect_pend(struct lsap_cb *self, IRLMP_EVENT event,
|
||||
/* LM_LAP_DISCONNECT_INDICATION : Should never happen, we
|
||||
* are *not* yet bound to the IrLAP link. Jean II */
|
||||
IRDA_DEBUG(0, "%s(), Unknown event %s on LSAP %#02x\n",
|
||||
__FUNCTION__, irlmp_event[event], self->slsap_sel);
|
||||
__func__, irlmp_event[event], self->slsap_sel);
|
||||
break;
|
||||
}
|
||||
return ret;
|
||||
@@ -698,7 +698,7 @@ static int irlmp_state_dtr(struct lsap_cb *self, IRLMP_EVENT event,
|
||||
LM_REASON reason;
|
||||
int ret = 0;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return -1;);
|
||||
IRDA_ASSERT(self->magic == LMP_LSAP_MAGIC, return -1;);
|
||||
@@ -722,12 +722,12 @@ static int irlmp_state_dtr(struct lsap_cb *self, IRLMP_EVENT event,
|
||||
break;
|
||||
case LM_CONNECT_REQUEST:
|
||||
IRDA_DEBUG(0, "%s(), LM_CONNECT_REQUEST, "
|
||||
"error, LSAP already connected\n", __FUNCTION__);
|
||||
"error, LSAP already connected\n", __func__);
|
||||
/* Keep state */
|
||||
break;
|
||||
case LM_CONNECT_RESPONSE:
|
||||
IRDA_DEBUG(0, "%s(), LM_CONNECT_RESPONSE, "
|
||||
"error, LSAP already connected\n", __FUNCTION__);
|
||||
"error, LSAP already connected\n", __func__);
|
||||
/* Keep state */
|
||||
break;
|
||||
case LM_DISCONNECT_REQUEST:
|
||||
@@ -740,7 +740,7 @@ static int irlmp_state_dtr(struct lsap_cb *self, IRLMP_EVENT event,
|
||||
/* Try to close the LAP connection if its still there */
|
||||
if (self->lap) {
|
||||
IRDA_DEBUG(4, "%s(), trying to close IrLAP\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
irlmp_do_lap_event(self->lap,
|
||||
LM_LAP_DISCONNECT_REQUEST,
|
||||
NULL);
|
||||
@@ -764,14 +764,14 @@ static int irlmp_state_dtr(struct lsap_cb *self, IRLMP_EVENT event,
|
||||
reason = skb->data[3];
|
||||
|
||||
/* Try to close the LAP connection */
|
||||
IRDA_DEBUG(4, "%s(), trying to close IrLAP\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s(), trying to close IrLAP\n", __func__);
|
||||
irlmp_do_lap_event(self->lap, LM_LAP_DISCONNECT_REQUEST, NULL);
|
||||
|
||||
irlmp_disconnect_indication(self, reason, skb);
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(0, "%s(), Unknown event %s on LSAP %#02x\n",
|
||||
__FUNCTION__, irlmp_event[event], self->slsap_sel);
|
||||
__func__, irlmp_event[event], self->slsap_sel);
|
||||
break;
|
||||
}
|
||||
return ret;
|
||||
@@ -793,7 +793,7 @@ static int irlmp_state_setup(struct lsap_cb *self, IRLMP_EVENT event,
|
||||
IRDA_ASSERT(self != NULL, return -1;);
|
||||
IRDA_ASSERT(self->magic == LMP_LSAP_MAGIC, return -1;);
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
switch (event) {
|
||||
case LM_CONNECT_CONFIRM:
|
||||
@@ -814,7 +814,7 @@ static int irlmp_state_setup(struct lsap_cb *self, IRLMP_EVENT event,
|
||||
reason = skb->data[3];
|
||||
|
||||
/* Try to close the LAP connection */
|
||||
IRDA_DEBUG(4, "%s(), trying to close IrLAP\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s(), trying to close IrLAP\n", __func__);
|
||||
irlmp_do_lap_event(self->lap, LM_LAP_DISCONNECT_REQUEST, NULL);
|
||||
|
||||
irlmp_disconnect_indication(self, reason, skb);
|
||||
@@ -832,7 +832,7 @@ static int irlmp_state_setup(struct lsap_cb *self, IRLMP_EVENT event,
|
||||
irlmp_disconnect_indication(self, reason, skb);
|
||||
break;
|
||||
case LM_WATCHDOG_TIMEOUT:
|
||||
IRDA_DEBUG(0, "%s() WATCHDOG_TIMEOUT!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s() WATCHDOG_TIMEOUT!\n", __func__);
|
||||
|
||||
IRDA_ASSERT(self->lap != NULL, return -1;);
|
||||
irlmp_do_lap_event(self->lap, LM_LAP_DISCONNECT_REQUEST, NULL);
|
||||
@@ -842,7 +842,7 @@ static int irlmp_state_setup(struct lsap_cb *self, IRLMP_EVENT event,
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(0, "%s(), Unknown event %s on LSAP %#02x\n",
|
||||
__FUNCTION__, irlmp_event[event], self->slsap_sel);
|
||||
__func__, irlmp_event[event], self->slsap_sel);
|
||||
break;
|
||||
}
|
||||
return ret;
|
||||
@@ -863,7 +863,7 @@ static int irlmp_state_setup_pend(struct lsap_cb *self, IRLMP_EVENT event,
|
||||
LM_REASON reason;
|
||||
int ret = 0;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return -1;);
|
||||
IRDA_ASSERT(irlmp != NULL, return -1;);
|
||||
@@ -883,7 +883,7 @@ static int irlmp_state_setup_pend(struct lsap_cb *self, IRLMP_EVENT event,
|
||||
irlmp_next_lsap_state(self, LSAP_SETUP);
|
||||
break;
|
||||
case LM_WATCHDOG_TIMEOUT:
|
||||
IRDA_DEBUG(0, "%s() : WATCHDOG_TIMEOUT !\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s() : WATCHDOG_TIMEOUT !\n", __func__);
|
||||
|
||||
IRDA_ASSERT(self->lap != NULL, return -1;);
|
||||
irlmp_do_lap_event(self->lap, LM_LAP_DISCONNECT_REQUEST, NULL);
|
||||
@@ -902,7 +902,7 @@ static int irlmp_state_setup_pend(struct lsap_cb *self, IRLMP_EVENT event,
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(0, "%s(), Unknown event %s on LSAP %#02x\n",
|
||||
__FUNCTION__, irlmp_event[event], self->slsap_sel);
|
||||
__func__, irlmp_event[event], self->slsap_sel);
|
||||
break;
|
||||
}
|
||||
return ret;
|
||||
|
@@ -44,7 +44,7 @@ inline void irlmp_send_data_pdu(struct lap_cb *self, __u8 dlsap, __u8 slsap,
|
||||
skb->data[1] = slsap;
|
||||
|
||||
if (expedited) {
|
||||
IRDA_DEBUG(4, "%s(), sending expedited data\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s(), sending expedited data\n", __func__);
|
||||
irlap_data_request(self->irlap, skb, TRUE);
|
||||
} else
|
||||
irlap_data_request(self->irlap, skb, FALSE);
|
||||
@@ -60,7 +60,7 @@ void irlmp_send_lcf_pdu(struct lap_cb *self, __u8 dlsap, __u8 slsap,
|
||||
{
|
||||
__u8 *frame;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(2, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == LMP_LAP_MAGIC, return;);
|
||||
@@ -95,7 +95,7 @@ void irlmp_link_data_indication(struct lap_cb *self, struct sk_buff *skb,
|
||||
__u8 dlsap_sel; /* Destination LSAP address */
|
||||
__u8 *fp;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == LMP_LAP_MAGIC, return;);
|
||||
@@ -117,7 +117,7 @@ void irlmp_link_data_indication(struct lap_cb *self, struct sk_buff *skb,
|
||||
if ((fp[0] & CONTROL_BIT) && (fp[2] == CONNECT_CMD)) {
|
||||
IRDA_DEBUG(3, "%s(), incoming connection, "
|
||||
"source LSAP=%d, dest LSAP=%d\n",
|
||||
__FUNCTION__, slsap_sel, dlsap_sel);
|
||||
__func__, slsap_sel, dlsap_sel);
|
||||
|
||||
/* Try to find LSAP among the unconnected LSAPs */
|
||||
lsap = irlmp_find_lsap(self, dlsap_sel, slsap_sel, CONNECT_CMD,
|
||||
@@ -125,7 +125,7 @@ void irlmp_link_data_indication(struct lap_cb *self, struct sk_buff *skb,
|
||||
|
||||
/* Maybe LSAP was already connected, so try one more time */
|
||||
if (!lsap) {
|
||||
IRDA_DEBUG(1, "%s(), incoming connection for LSAP already connected\n", __FUNCTION__);
|
||||
IRDA_DEBUG(1, "%s(), incoming connection for LSAP already connected\n", __func__);
|
||||
lsap = irlmp_find_lsap(self, dlsap_sel, slsap_sel, 0,
|
||||
self->lsaps);
|
||||
}
|
||||
@@ -136,12 +136,12 @@ void irlmp_link_data_indication(struct lap_cb *self, struct sk_buff *skb,
|
||||
if (lsap == NULL) {
|
||||
IRDA_DEBUG(2, "IrLMP, Sorry, no LSAP for received frame!\n");
|
||||
IRDA_DEBUG(2, "%s(), slsap_sel = %02x, dlsap_sel = %02x\n",
|
||||
__FUNCTION__, slsap_sel, dlsap_sel);
|
||||
__func__, slsap_sel, dlsap_sel);
|
||||
if (fp[0] & CONTROL_BIT) {
|
||||
IRDA_DEBUG(2, "%s(), received control frame %02x\n",
|
||||
__FUNCTION__, fp[2]);
|
||||
__func__, fp[2]);
|
||||
} else {
|
||||
IRDA_DEBUG(2, "%s(), received data frame\n", __FUNCTION__);
|
||||
IRDA_DEBUG(2, "%s(), received data frame\n", __func__);
|
||||
}
|
||||
return;
|
||||
}
|
||||
@@ -160,7 +160,7 @@ void irlmp_link_data_indication(struct lap_cb *self, struct sk_buff *skb,
|
||||
break;
|
||||
case DISCONNECT:
|
||||
IRDA_DEBUG(4, "%s(), Disconnect indication!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
irlmp_do_lsap_event(lsap, LM_DISCONNECT_INDICATION,
|
||||
skb);
|
||||
break;
|
||||
@@ -172,7 +172,7 @@ void irlmp_link_data_indication(struct lap_cb *self, struct sk_buff *skb,
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(0, "%s(), Unknown control frame %02x\n",
|
||||
__FUNCTION__, fp[2]);
|
||||
__func__, fp[2]);
|
||||
break;
|
||||
}
|
||||
} else if (unreliable) {
|
||||
@@ -206,7 +206,7 @@ void irlmp_link_unitdata_indication(struct lap_cb *self, struct sk_buff *skb)
|
||||
__u8 *fp;
|
||||
unsigned long flags;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == LMP_LAP_MAGIC, return;);
|
||||
@@ -224,13 +224,13 @@ void irlmp_link_unitdata_indication(struct lap_cb *self, struct sk_buff *skb)
|
||||
|
||||
if (pid & 0x80) {
|
||||
IRDA_DEBUG(0, "%s(), extension in PID not supp!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
return;
|
||||
}
|
||||
|
||||
/* Check if frame is addressed to the connectionless LSAP */
|
||||
if ((slsap_sel != LSAP_CONNLESS) || (dlsap_sel != LSAP_CONNLESS)) {
|
||||
IRDA_DEBUG(0, "%s(), dropping frame!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s(), dropping frame!\n", __func__);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -254,7 +254,7 @@ void irlmp_link_unitdata_indication(struct lap_cb *self, struct sk_buff *skb)
|
||||
if (lsap)
|
||||
irlmp_connless_data_indication(lsap, skb);
|
||||
else {
|
||||
IRDA_DEBUG(0, "%s(), found no matching LSAP!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s(), found no matching LSAP!\n", __func__);
|
||||
}
|
||||
}
|
||||
#endif /* CONFIG_IRDA_ULTRA */
|
||||
@@ -270,7 +270,7 @@ void irlmp_link_disconnect_indication(struct lap_cb *lap,
|
||||
LAP_REASON reason,
|
||||
struct sk_buff *skb)
|
||||
{
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(2, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(lap != NULL, return;);
|
||||
IRDA_ASSERT(lap->magic == LMP_LAP_MAGIC, return;);
|
||||
@@ -296,7 +296,7 @@ void irlmp_link_connect_indication(struct lap_cb *self, __u32 saddr,
|
||||
__u32 daddr, struct qos_info *qos,
|
||||
struct sk_buff *skb)
|
||||
{
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
/* Copy QoS settings for this session */
|
||||
self->qos = qos;
|
||||
@@ -317,7 +317,7 @@ void irlmp_link_connect_indication(struct lap_cb *self, __u32 saddr,
|
||||
void irlmp_link_connect_confirm(struct lap_cb *self, struct qos_info *qos,
|
||||
struct sk_buff *skb)
|
||||
{
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == LMP_LAP_MAGIC, return;);
|
||||
@@ -383,7 +383,7 @@ void irlmp_link_discovery_indication(struct lap_cb *self,
|
||||
*/
|
||||
void irlmp_link_discovery_confirm(struct lap_cb *self, hashbin_t *log)
|
||||
{
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == LMP_LAP_MAGIC, return;);
|
||||
|
@@ -90,7 +90,7 @@ static int __init irda_init(void)
|
||||
{
|
||||
int ret = 0;
|
||||
|
||||
IRDA_DEBUG(0, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s()\n", __func__);
|
||||
|
||||
/* Lower layer of the stack */
|
||||
irlmp_init();
|
||||
|
@@ -337,27 +337,27 @@
|
||||
/* All error messages (will show up in the normal logs) */
|
||||
#define DERROR(dbg, format, args...) \
|
||||
{if(DEBUG_##dbg) \
|
||||
printk(KERN_INFO "irnet: %s(): " format, __FUNCTION__ , ##args);}
|
||||
printk(KERN_INFO "irnet: %s(): " format, __func__ , ##args);}
|
||||
|
||||
/* Normal debug message (will show up in /var/log/debug) */
|
||||
#define DEBUG(dbg, format, args...) \
|
||||
{if(DEBUG_##dbg) \
|
||||
printk(KERN_DEBUG "irnet: %s(): " format, __FUNCTION__ , ##args);}
|
||||
printk(KERN_DEBUG "irnet: %s(): " format, __func__ , ##args);}
|
||||
|
||||
/* Entering a function (trace) */
|
||||
#define DENTER(dbg, format, args...) \
|
||||
{if(DEBUG_##dbg) \
|
||||
printk(KERN_DEBUG "irnet: -> %s" format, __FUNCTION__ , ##args);}
|
||||
printk(KERN_DEBUG "irnet: -> %s" format, __func__ , ##args);}
|
||||
|
||||
/* Entering and exiting a function in one go (trace) */
|
||||
#define DPASS(dbg, format, args...) \
|
||||
{if(DEBUG_##dbg) \
|
||||
printk(KERN_DEBUG "irnet: <>%s" format, __FUNCTION__ , ##args);}
|
||||
printk(KERN_DEBUG "irnet: <>%s" format, __func__ , ##args);}
|
||||
|
||||
/* Exiting a function (trace) */
|
||||
#define DEXIT(dbg, format, args...) \
|
||||
{if(DEBUG_##dbg) \
|
||||
printk(KERN_DEBUG "irnet: <-%s()" format, __FUNCTION__ , ##args);}
|
||||
printk(KERN_DEBUG "irnet: <-%s()" format, __func__ , ##args);}
|
||||
|
||||
/* Exit a function with debug */
|
||||
#define DRETURN(ret, dbg, args...) \
|
||||
|
@@ -40,7 +40,7 @@ static struct net_device * ifname_to_netdev(struct net *net, struct genl_info *i
|
||||
|
||||
ifname = nla_data(info->attrs[IRDA_NL_ATTR_IFNAME]);
|
||||
|
||||
IRDA_DEBUG(5, "%s(): Looking for %s\n", __FUNCTION__, ifname);
|
||||
IRDA_DEBUG(5, "%s(): Looking for %s\n", __func__, ifname);
|
||||
|
||||
return dev_get_by_name(net, ifname);
|
||||
}
|
||||
@@ -56,7 +56,7 @@ static int irda_nl_set_mode(struct sk_buff *skb, struct genl_info *info)
|
||||
|
||||
mode = nla_get_u32(info->attrs[IRDA_NL_ATTR_MODE]);
|
||||
|
||||
IRDA_DEBUG(5, "%s(): Switching to mode: %d\n", __FUNCTION__, mode);
|
||||
IRDA_DEBUG(5, "%s(): Switching to mode: %d\n", __func__, mode);
|
||||
|
||||
dev = ifname_to_netdev(&init_net, info);
|
||||
if (!dev)
|
||||
|
@@ -232,7 +232,7 @@ static __u32 hash( const char* name)
|
||||
static void enqueue_first(irda_queue_t **queue, irda_queue_t* element)
|
||||
{
|
||||
|
||||
IRDA_DEBUG( 4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG( 4, "%s()\n", __func__);
|
||||
|
||||
/*
|
||||
* Check if queue is empty.
|
||||
@@ -451,7 +451,7 @@ void hashbin_insert(hashbin_t* hashbin, irda_queue_t* entry, long hashv,
|
||||
unsigned long flags = 0;
|
||||
int bin;
|
||||
|
||||
IRDA_DEBUG( 4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG( 4, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT( hashbin != NULL, return;);
|
||||
IRDA_ASSERT( hashbin->magic == HB_MAGIC, return;);
|
||||
@@ -564,7 +564,7 @@ void* hashbin_remove( hashbin_t* hashbin, long hashv, const char* name)
|
||||
unsigned long flags = 0;
|
||||
irda_queue_t* entry;
|
||||
|
||||
IRDA_DEBUG( 4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG( 4, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT( hashbin != NULL, return NULL;);
|
||||
IRDA_ASSERT( hashbin->magic == HB_MAGIC, return NULL;);
|
||||
@@ -657,7 +657,7 @@ void* hashbin_remove_this( hashbin_t* hashbin, irda_queue_t* entry)
|
||||
int bin;
|
||||
long hashv;
|
||||
|
||||
IRDA_DEBUG( 4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG( 4, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT( hashbin != NULL, return NULL;);
|
||||
IRDA_ASSERT( hashbin->magic == HB_MAGIC, return NULL;);
|
||||
|
108
net/irda/irttp.c
108
net/irda/irttp.c
@@ -95,7 +95,7 @@ int __init irttp_init(void)
|
||||
irttp->tsaps = hashbin_new(HB_LOCK);
|
||||
if (!irttp->tsaps) {
|
||||
IRDA_ERROR("%s: can't allocate IrTTP hashbin!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
kfree(irttp);
|
||||
return -ENOMEM;
|
||||
}
|
||||
@@ -164,7 +164,7 @@ static void irttp_todo_expired(unsigned long data)
|
||||
if (!self || self->magic != TTP_TSAP_MAGIC)
|
||||
return;
|
||||
|
||||
IRDA_DEBUG(4, "%s(instance=%p)\n", __FUNCTION__, self);
|
||||
IRDA_DEBUG(4, "%s(instance=%p)\n", __func__, self);
|
||||
|
||||
/* Try to make some progress, especially on Tx side - Jean II */
|
||||
irttp_run_rx_queue(self);
|
||||
@@ -205,7 +205,7 @@ void irttp_flush_queues(struct tsap_cb *self)
|
||||
{
|
||||
struct sk_buff* skb;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == TTP_TSAP_MAGIC, return;);
|
||||
@@ -238,7 +238,7 @@ static struct sk_buff *irttp_reassemble_skb(struct tsap_cb *self)
|
||||
IRDA_ASSERT(self != NULL, return NULL;);
|
||||
IRDA_ASSERT(self->magic == TTP_TSAP_MAGIC, return NULL;);
|
||||
|
||||
IRDA_DEBUG(2, "%s(), self->rx_sdu_size=%d\n", __FUNCTION__,
|
||||
IRDA_DEBUG(2, "%s(), self->rx_sdu_size=%d\n", __func__,
|
||||
self->rx_sdu_size);
|
||||
|
||||
skb = dev_alloc_skb(TTP_HEADER + self->rx_sdu_size);
|
||||
@@ -264,7 +264,7 @@ static struct sk_buff *irttp_reassemble_skb(struct tsap_cb *self)
|
||||
|
||||
IRDA_DEBUG(2,
|
||||
"%s(), frame len=%d, rx_sdu_size=%d, rx_max_sdu_size=%d\n",
|
||||
__FUNCTION__, n, self->rx_sdu_size, self->rx_max_sdu_size);
|
||||
__func__, n, self->rx_sdu_size, self->rx_max_sdu_size);
|
||||
/* Note : irttp_run_rx_queue() calculate self->rx_sdu_size
|
||||
* by summing the size of all fragments, so we should always
|
||||
* have n == self->rx_sdu_size, except in cases where we
|
||||
@@ -293,7 +293,7 @@ static inline void irttp_fragment_skb(struct tsap_cb *self,
|
||||
struct sk_buff *frag;
|
||||
__u8 *frame;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(2, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == TTP_TSAP_MAGIC, return;);
|
||||
@@ -303,7 +303,7 @@ static inline void irttp_fragment_skb(struct tsap_cb *self,
|
||||
* Split frame into a number of segments
|
||||
*/
|
||||
while (skb->len > self->max_seg_size) {
|
||||
IRDA_DEBUG(2, "%s(), fragmenting ...\n", __FUNCTION__);
|
||||
IRDA_DEBUG(2, "%s(), fragmenting ...\n", __func__);
|
||||
|
||||
/* Make new segment */
|
||||
frag = alloc_skb(self->max_seg_size+self->max_header_size,
|
||||
@@ -328,7 +328,7 @@ static inline void irttp_fragment_skb(struct tsap_cb *self,
|
||||
skb_queue_tail(&self->tx_queue, frag);
|
||||
}
|
||||
/* Queue what is left of the original skb */
|
||||
IRDA_DEBUG(2, "%s(), queuing last segment\n", __FUNCTION__);
|
||||
IRDA_DEBUG(2, "%s(), queuing last segment\n", __func__);
|
||||
|
||||
frame = skb_push(skb, TTP_HEADER);
|
||||
frame[0] = 0x00; /* Clear more bit */
|
||||
@@ -359,7 +359,7 @@ static int irttp_param_max_sdu_size(void *instance, irda_param_t *param,
|
||||
else
|
||||
self->tx_max_sdu_size = param->pv.i;
|
||||
|
||||
IRDA_DEBUG(1, "%s(), MaxSduSize=%d\n", __FUNCTION__, param->pv.i);
|
||||
IRDA_DEBUG(1, "%s(), MaxSduSize=%d\n", __func__, param->pv.i);
|
||||
|
||||
return 0;
|
||||
}
|
||||
@@ -400,13 +400,13 @@ struct tsap_cb *irttp_open_tsap(__u8 stsap_sel, int credit, notify_t *notify)
|
||||
* JeanII */
|
||||
if((stsap_sel != LSAP_ANY) &&
|
||||
((stsap_sel < 0x01) || (stsap_sel >= 0x70))) {
|
||||
IRDA_DEBUG(0, "%s(), invalid tsap!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s(), invalid tsap!\n", __func__);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
self = kzalloc(sizeof(struct tsap_cb), GFP_ATOMIC);
|
||||
if (self == NULL) {
|
||||
IRDA_DEBUG(0, "%s(), unable to kmalloc!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s(), unable to kmalloc!\n", __func__);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
@@ -438,7 +438,7 @@ struct tsap_cb *irttp_open_tsap(__u8 stsap_sel, int credit, notify_t *notify)
|
||||
*/
|
||||
lsap = irlmp_open_lsap(stsap_sel, &ttp_notify, 0);
|
||||
if (lsap == NULL) {
|
||||
IRDA_WARNING("%s: unable to allocate LSAP!!\n", __FUNCTION__);
|
||||
IRDA_WARNING("%s: unable to allocate LSAP!!\n", __func__);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
@@ -448,7 +448,7 @@ struct tsap_cb *irttp_open_tsap(__u8 stsap_sel, int credit, notify_t *notify)
|
||||
* the stsap_sel we have might not be valid anymore
|
||||
*/
|
||||
self->stsap_sel = lsap->slsap_sel;
|
||||
IRDA_DEBUG(4, "%s(), stsap_sel=%02x\n", __FUNCTION__, self->stsap_sel);
|
||||
IRDA_DEBUG(4, "%s(), stsap_sel=%02x\n", __func__, self->stsap_sel);
|
||||
|
||||
self->notify = *notify;
|
||||
self->lsap = lsap;
|
||||
@@ -506,7 +506,7 @@ int irttp_close_tsap(struct tsap_cb *self)
|
||||
{
|
||||
struct tsap_cb *tsap;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return -1;);
|
||||
IRDA_ASSERT(self->magic == TTP_TSAP_MAGIC, return -1;);
|
||||
@@ -516,7 +516,7 @@ int irttp_close_tsap(struct tsap_cb *self)
|
||||
/* Check if disconnect is not pending */
|
||||
if (!test_bit(0, &self->disconnect_pend)) {
|
||||
IRDA_WARNING("%s: TSAP still connected!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
irttp_disconnect_request(self, NULL, P_NORMAL);
|
||||
}
|
||||
self->close_pend = TRUE;
|
||||
@@ -553,18 +553,18 @@ int irttp_udata_request(struct tsap_cb *self, struct sk_buff *skb)
|
||||
IRDA_ASSERT(self->magic == TTP_TSAP_MAGIC, return -1;);
|
||||
IRDA_ASSERT(skb != NULL, return -1;);
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
/* Check that nothing bad happens */
|
||||
if ((skb->len == 0) || (!self->connected)) {
|
||||
IRDA_DEBUG(1, "%s(), No data, or not connected\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
goto err;
|
||||
}
|
||||
|
||||
if (skb->len > self->max_seg_size) {
|
||||
IRDA_DEBUG(1, "%s(), UData is too large for IrLAP!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
goto err;
|
||||
}
|
||||
|
||||
@@ -595,12 +595,12 @@ int irttp_data_request(struct tsap_cb *self, struct sk_buff *skb)
|
||||
IRDA_ASSERT(self->magic == TTP_TSAP_MAGIC, return -1;);
|
||||
IRDA_ASSERT(skb != NULL, return -1;);
|
||||
|
||||
IRDA_DEBUG(2, "%s() : queue len = %d\n", __FUNCTION__,
|
||||
IRDA_DEBUG(2, "%s() : queue len = %d\n", __func__,
|
||||
skb_queue_len(&self->tx_queue));
|
||||
|
||||
/* Check that nothing bad happens */
|
||||
if ((skb->len == 0) || (!self->connected)) {
|
||||
IRDA_WARNING("%s: No data, or not connected\n", __FUNCTION__);
|
||||
IRDA_WARNING("%s: No data, or not connected\n", __func__);
|
||||
ret = -ENOTCONN;
|
||||
goto err;
|
||||
}
|
||||
@@ -611,7 +611,7 @@ int irttp_data_request(struct tsap_cb *self, struct sk_buff *skb)
|
||||
*/
|
||||
if ((self->tx_max_sdu_size == 0) && (skb->len > self->max_seg_size)) {
|
||||
IRDA_ERROR("%s: SAR disabled, and data is too large for IrLAP!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
ret = -EMSGSIZE;
|
||||
goto err;
|
||||
}
|
||||
@@ -625,7 +625,7 @@ int irttp_data_request(struct tsap_cb *self, struct sk_buff *skb)
|
||||
(skb->len > self->tx_max_sdu_size))
|
||||
{
|
||||
IRDA_ERROR("%s: SAR enabled, but data is larger than TxMaxSduSize!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
ret = -EMSGSIZE;
|
||||
goto err;
|
||||
}
|
||||
@@ -704,7 +704,7 @@ static void irttp_run_tx_queue(struct tsap_cb *self)
|
||||
int n;
|
||||
|
||||
IRDA_DEBUG(2, "%s() : send_credit = %d, queue_len = %d\n",
|
||||
__FUNCTION__,
|
||||
__func__,
|
||||
self->send_credit, skb_queue_len(&self->tx_queue));
|
||||
|
||||
/* Get exclusive access to the tx queue, otherwise don't touch it */
|
||||
@@ -813,7 +813,7 @@ static inline void irttp_give_credit(struct tsap_cb *self)
|
||||
IRDA_ASSERT(self->magic == TTP_TSAP_MAGIC, return;);
|
||||
|
||||
IRDA_DEBUG(4, "%s() send=%d,avail=%d,remote=%d\n",
|
||||
__FUNCTION__,
|
||||
__func__,
|
||||
self->send_credit, self->avail_credit, self->remote_credit);
|
||||
|
||||
/* Give credit to peer */
|
||||
@@ -862,7 +862,7 @@ static int irttp_udata_indication(void *instance, void *sap,
|
||||
struct tsap_cb *self;
|
||||
int err;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
self = (struct tsap_cb *) instance;
|
||||
|
||||
@@ -979,7 +979,7 @@ static void irttp_status_indication(void *instance,
|
||||
{
|
||||
struct tsap_cb *self;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
self = (struct tsap_cb *) instance;
|
||||
|
||||
@@ -997,7 +997,7 @@ static void irttp_status_indication(void *instance,
|
||||
self->notify.status_indication(self->notify.instance,
|
||||
link, lock);
|
||||
else
|
||||
IRDA_DEBUG(2, "%s(), no handler\n", __FUNCTION__);
|
||||
IRDA_DEBUG(2, "%s(), no handler\n", __func__);
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -1015,7 +1015,7 @@ static void irttp_flow_indication(void *instance, void *sap, LOCAL_FLOW flow)
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == TTP_TSAP_MAGIC, return;);
|
||||
|
||||
IRDA_DEBUG(4, "%s(instance=%p)\n", __FUNCTION__, self);
|
||||
IRDA_DEBUG(4, "%s(instance=%p)\n", __func__, self);
|
||||
|
||||
/* We are "polled" directly from LAP, and the LAP want to fill
|
||||
* its Tx window. We want to do our best to send it data, so that
|
||||
@@ -1053,18 +1053,18 @@ static void irttp_flow_indication(void *instance, void *sap, LOCAL_FLOW flow)
|
||||
*/
|
||||
void irttp_flow_request(struct tsap_cb *self, LOCAL_FLOW flow)
|
||||
{
|
||||
IRDA_DEBUG(1, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(1, "%s()\n", __func__);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return;);
|
||||
IRDA_ASSERT(self->magic == TTP_TSAP_MAGIC, return;);
|
||||
|
||||
switch (flow) {
|
||||
case FLOW_STOP:
|
||||
IRDA_DEBUG(1, "%s(), flow stop\n", __FUNCTION__);
|
||||
IRDA_DEBUG(1, "%s(), flow stop\n", __func__);
|
||||
self->rx_sdu_busy = TRUE;
|
||||
break;
|
||||
case FLOW_START:
|
||||
IRDA_DEBUG(1, "%s(), flow start\n", __FUNCTION__);
|
||||
IRDA_DEBUG(1, "%s(), flow start\n", __func__);
|
||||
self->rx_sdu_busy = FALSE;
|
||||
|
||||
/* Client say he can accept more data, try to free our
|
||||
@@ -1073,7 +1073,7 @@ void irttp_flow_request(struct tsap_cb *self, LOCAL_FLOW flow)
|
||||
|
||||
break;
|
||||
default:
|
||||
IRDA_DEBUG(1, "%s(), Unknown flow command!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(1, "%s(), Unknown flow command!\n", __func__);
|
||||
}
|
||||
}
|
||||
EXPORT_SYMBOL(irttp_flow_request);
|
||||
@@ -1093,7 +1093,7 @@ int irttp_connect_request(struct tsap_cb *self, __u8 dtsap_sel,
|
||||
__u8 *frame;
|
||||
__u8 n;
|
||||
|
||||
IRDA_DEBUG(4, "%s(), max_sdu_size=%d\n", __FUNCTION__, max_sdu_size);
|
||||
IRDA_DEBUG(4, "%s(), max_sdu_size=%d\n", __func__, max_sdu_size);
|
||||
|
||||
IRDA_ASSERT(self != NULL, return -EBADR;);
|
||||
IRDA_ASSERT(self->magic == TTP_TSAP_MAGIC, return -EBADR;);
|
||||
@@ -1191,7 +1191,7 @@ static void irttp_connect_confirm(void *instance, void *sap,
|
||||
__u8 plen;
|
||||
__u8 n;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
self = (struct tsap_cb *) instance;
|
||||
|
||||
@@ -1215,7 +1215,7 @@ static void irttp_connect_confirm(void *instance, void *sap,
|
||||
|
||||
n = skb->data[0] & 0x7f;
|
||||
|
||||
IRDA_DEBUG(4, "%s(), Initial send_credit=%d\n", __FUNCTION__, n);
|
||||
IRDA_DEBUG(4, "%s(), Initial send_credit=%d\n", __func__, n);
|
||||
|
||||
self->send_credit = n;
|
||||
self->tx_max_sdu_size = 0;
|
||||
@@ -1236,7 +1236,7 @@ static void irttp_connect_confirm(void *instance, void *sap,
|
||||
/* Any errors in the parameter list? */
|
||||
if (ret < 0) {
|
||||
IRDA_WARNING("%s: error extracting parameters\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
dev_kfree_skb(skb);
|
||||
|
||||
/* Do not accept this connection attempt */
|
||||
@@ -1246,10 +1246,10 @@ static void irttp_connect_confirm(void *instance, void *sap,
|
||||
skb_pull(skb, IRDA_MIN(skb->len, plen+1));
|
||||
}
|
||||
|
||||
IRDA_DEBUG(4, "%s() send=%d,avail=%d,remote=%d\n", __FUNCTION__,
|
||||
IRDA_DEBUG(4, "%s() send=%d,avail=%d,remote=%d\n", __func__,
|
||||
self->send_credit, self->avail_credit, self->remote_credit);
|
||||
|
||||
IRDA_DEBUG(2, "%s(), MaxSduSize=%d\n", __FUNCTION__,
|
||||
IRDA_DEBUG(2, "%s(), MaxSduSize=%d\n", __func__,
|
||||
self->tx_max_sdu_size);
|
||||
|
||||
if (self->notify.connect_confirm) {
|
||||
@@ -1288,7 +1288,7 @@ void irttp_connect_indication(void *instance, void *sap, struct qos_info *qos,
|
||||
self->max_seg_size = max_seg_size - TTP_HEADER;
|
||||
self->max_header_size = max_header_size+TTP_HEADER;
|
||||
|
||||
IRDA_DEBUG(4, "%s(), TSAP sel=%02x\n", __FUNCTION__, self->stsap_sel);
|
||||
IRDA_DEBUG(4, "%s(), TSAP sel=%02x\n", __func__, self->stsap_sel);
|
||||
|
||||
/* Need to update dtsap_sel if its equal to LSAP_ANY */
|
||||
self->dtsap_sel = lsap->dlsap_sel;
|
||||
@@ -1313,7 +1313,7 @@ void irttp_connect_indication(void *instance, void *sap, struct qos_info *qos,
|
||||
/* Any errors in the parameter list? */
|
||||
if (ret < 0) {
|
||||
IRDA_WARNING("%s: error extracting parameters\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
dev_kfree_skb(skb);
|
||||
|
||||
/* Do not accept this connection attempt */
|
||||
@@ -1350,7 +1350,7 @@ int irttp_connect_response(struct tsap_cb *self, __u32 max_sdu_size,
|
||||
IRDA_ASSERT(self != NULL, return -1;);
|
||||
IRDA_ASSERT(self->magic == TTP_TSAP_MAGIC, return -1;);
|
||||
|
||||
IRDA_DEBUG(4, "%s(), Source TSAP selector=%02x\n", __FUNCTION__,
|
||||
IRDA_DEBUG(4, "%s(), Source TSAP selector=%02x\n", __func__,
|
||||
self->stsap_sel);
|
||||
|
||||
/* Any userdata supplied? */
|
||||
@@ -1432,14 +1432,14 @@ struct tsap_cb *irttp_dup(struct tsap_cb *orig, void *instance)
|
||||
struct tsap_cb *new;
|
||||
unsigned long flags;
|
||||
|
||||
IRDA_DEBUG(1, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(1, "%s()\n", __func__);
|
||||
|
||||
/* Protect our access to the old tsap instance */
|
||||
spin_lock_irqsave(&irttp->tsaps->hb_spinlock, flags);
|
||||
|
||||
/* Find the old instance */
|
||||
if (!hashbin_find(irttp->tsaps, (long) orig, NULL)) {
|
||||
IRDA_DEBUG(0, "%s(), unable to find TSAP\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s(), unable to find TSAP\n", __func__);
|
||||
spin_unlock_irqrestore(&irttp->tsaps->hb_spinlock, flags);
|
||||
return NULL;
|
||||
}
|
||||
@@ -1447,7 +1447,7 @@ struct tsap_cb *irttp_dup(struct tsap_cb *orig, void *instance)
|
||||
/* Allocate a new instance */
|
||||
new = kmalloc(sizeof(struct tsap_cb), GFP_ATOMIC);
|
||||
if (!new) {
|
||||
IRDA_DEBUG(0, "%s(), unable to kmalloc\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s(), unable to kmalloc\n", __func__);
|
||||
spin_unlock_irqrestore(&irttp->tsaps->hb_spinlock, flags);
|
||||
return NULL;
|
||||
}
|
||||
@@ -1460,7 +1460,7 @@ struct tsap_cb *irttp_dup(struct tsap_cb *orig, void *instance)
|
||||
/* Try to dup the LSAP (may fail if we were too slow) */
|
||||
new->lsap = irlmp_dup(orig->lsap, new);
|
||||
if (!new->lsap) {
|
||||
IRDA_DEBUG(0, "%s(), dup failed!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s(), dup failed!\n", __func__);
|
||||
kfree(new);
|
||||
return NULL;
|
||||
}
|
||||
@@ -1495,7 +1495,7 @@ int irttp_disconnect_request(struct tsap_cb *self, struct sk_buff *userdata,
|
||||
|
||||
/* Already disconnected? */
|
||||
if (!self->connected) {
|
||||
IRDA_DEBUG(4, "%s(), already disconnected!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s(), already disconnected!\n", __func__);
|
||||
if (userdata)
|
||||
dev_kfree_skb(userdata);
|
||||
return -1;
|
||||
@@ -1508,7 +1508,7 @@ int irttp_disconnect_request(struct tsap_cb *self, struct sk_buff *userdata,
|
||||
* Jean II */
|
||||
if(test_and_set_bit(0, &self->disconnect_pend)) {
|
||||
IRDA_DEBUG(0, "%s(), disconnect already pending\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
if (userdata)
|
||||
dev_kfree_skb(userdata);
|
||||
|
||||
@@ -1527,7 +1527,7 @@ int irttp_disconnect_request(struct tsap_cb *self, struct sk_buff *userdata,
|
||||
* disconnecting right now since the data will
|
||||
* not have any usable connection to be sent on
|
||||
*/
|
||||
IRDA_DEBUG(1, "%s(): High priority!!()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(1, "%s(): High priority!!()\n", __func__);
|
||||
irttp_flush_queues(self);
|
||||
} else if (priority == P_NORMAL) {
|
||||
/*
|
||||
@@ -1548,7 +1548,7 @@ int irttp_disconnect_request(struct tsap_cb *self, struct sk_buff *userdata,
|
||||
* be sent at the LMP level (so even if the peer has its Tx queue
|
||||
* full of data). - Jean II */
|
||||
|
||||
IRDA_DEBUG(1, "%s(), Disconnecting ...\n", __FUNCTION__);
|
||||
IRDA_DEBUG(1, "%s(), Disconnecting ...\n", __func__);
|
||||
self->connected = FALSE;
|
||||
|
||||
if (!userdata) {
|
||||
@@ -1584,7 +1584,7 @@ void irttp_disconnect_indication(void *instance, void *sap, LM_REASON reason,
|
||||
{
|
||||
struct tsap_cb *self;
|
||||
|
||||
IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(4, "%s()\n", __func__);
|
||||
|
||||
self = (struct tsap_cb *) instance;
|
||||
|
||||
@@ -1644,7 +1644,7 @@ static void irttp_do_data_indication(struct tsap_cb *self, struct sk_buff *skb)
|
||||
* give an error back
|
||||
*/
|
||||
if (err) {
|
||||
IRDA_DEBUG(0, "%s() requeueing skb!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s() requeueing skb!\n", __func__);
|
||||
|
||||
/* Make sure we take a break */
|
||||
self->rx_sdu_busy = TRUE;
|
||||
@@ -1669,7 +1669,7 @@ void irttp_run_rx_queue(struct tsap_cb *self)
|
||||
struct sk_buff *skb;
|
||||
int more = 0;
|
||||
|
||||
IRDA_DEBUG(2, "%s() send=%d,avail=%d,remote=%d\n", __FUNCTION__,
|
||||
IRDA_DEBUG(2, "%s() send=%d,avail=%d,remote=%d\n", __func__,
|
||||
self->send_credit, self->avail_credit, self->remote_credit);
|
||||
|
||||
/* Get exclusive access to the rx queue, otherwise don't touch it */
|
||||
@@ -1710,7 +1710,7 @@ void irttp_run_rx_queue(struct tsap_cb *self)
|
||||
*/
|
||||
if (self->rx_sdu_size <= self->rx_max_sdu_size) {
|
||||
IRDA_DEBUG(4, "%s(), queueing frag\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
skb_queue_tail(&self->rx_fragments, skb);
|
||||
} else {
|
||||
/* Free the part of the SDU that is too big */
|
||||
@@ -1740,7 +1740,7 @@ void irttp_run_rx_queue(struct tsap_cb *self)
|
||||
/* Now we can deliver the reassembled skb */
|
||||
irttp_do_data_indication(self, skb);
|
||||
} else {
|
||||
IRDA_DEBUG(1, "%s(), Truncated frame\n", __FUNCTION__);
|
||||
IRDA_DEBUG(1, "%s(), Truncated frame\n", __func__);
|
||||
|
||||
/* Free the part of the SDU that is too big */
|
||||
dev_kfree_skb(skb);
|
||||
|
@@ -148,23 +148,23 @@ static int irda_insert_integer(void *self, __u8 *buf, int len, __u8 pi,
|
||||
*/
|
||||
if (p.pl == 0) {
|
||||
if (p.pv.i < 0xff) {
|
||||
IRDA_DEBUG(2, "%s(), using 1 byte\n", __FUNCTION__);
|
||||
IRDA_DEBUG(2, "%s(), using 1 byte\n", __func__);
|
||||
p.pl = 1;
|
||||
} else if (p.pv.i < 0xffff) {
|
||||
IRDA_DEBUG(2, "%s(), using 2 bytes\n", __FUNCTION__);
|
||||
IRDA_DEBUG(2, "%s(), using 2 bytes\n", __func__);
|
||||
p.pl = 2;
|
||||
} else {
|
||||
IRDA_DEBUG(2, "%s(), using 4 bytes\n", __FUNCTION__);
|
||||
IRDA_DEBUG(2, "%s(), using 4 bytes\n", __func__);
|
||||
p.pl = 4; /* Default length */
|
||||
}
|
||||
}
|
||||
/* Check if buffer is long enough for insertion */
|
||||
if (len < (2+p.pl)) {
|
||||
IRDA_WARNING("%s: buffer too short for insertion!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
return -1;
|
||||
}
|
||||
IRDA_DEBUG(2, "%s(), pi=%#x, pl=%d, pi=%d\n", __FUNCTION__,
|
||||
IRDA_DEBUG(2, "%s(), pi=%#x, pl=%d, pi=%d\n", __func__,
|
||||
p.pi, p.pl, p.pv.i);
|
||||
switch (p.pl) {
|
||||
case 1:
|
||||
@@ -187,7 +187,7 @@ static int irda_insert_integer(void *self, __u8 *buf, int len, __u8 pi,
|
||||
break;
|
||||
default:
|
||||
IRDA_WARNING("%s: length %d not supported\n",
|
||||
__FUNCTION__, p.pl);
|
||||
__func__, p.pl);
|
||||
/* Skip parameter */
|
||||
return -1;
|
||||
}
|
||||
@@ -218,7 +218,7 @@ static int irda_extract_integer(void *self, __u8 *buf, int len, __u8 pi,
|
||||
if (len < (2+p.pl)) {
|
||||
IRDA_WARNING("%s: buffer too short for parsing! "
|
||||
"Need %d bytes, but len is only %d\n",
|
||||
__FUNCTION__, p.pl, len);
|
||||
__func__, p.pl, len);
|
||||
return -1;
|
||||
}
|
||||
|
||||
@@ -230,7 +230,7 @@ static int irda_extract_integer(void *self, __u8 *buf, int len, __u8 pi,
|
||||
if (((type & PV_MASK) != PV_INTEGER) && ((type & PV_MASK) != p.pl)) {
|
||||
IRDA_ERROR("%s: invalid parameter length! "
|
||||
"Expected %d bytes, but value had %d bytes!\n",
|
||||
__FUNCTION__, type & PV_MASK, p.pl);
|
||||
__func__, type & PV_MASK, p.pl);
|
||||
|
||||
/* Most parameters are bit/byte fields or little endian,
|
||||
* so it's ok to only extract a subset of it (the subset
|
||||
@@ -268,13 +268,13 @@ static int irda_extract_integer(void *self, __u8 *buf, int len, __u8 pi,
|
||||
break;
|
||||
default:
|
||||
IRDA_WARNING("%s: length %d not supported\n",
|
||||
__FUNCTION__, p.pl);
|
||||
__func__, p.pl);
|
||||
|
||||
/* Skip parameter */
|
||||
return p.pl+2;
|
||||
}
|
||||
|
||||
IRDA_DEBUG(2, "%s(), pi=%#x, pl=%d, pi=%d\n", __FUNCTION__,
|
||||
IRDA_DEBUG(2, "%s(), pi=%#x, pl=%d, pi=%d\n", __func__,
|
||||
p.pi, p.pl, p.pv.i);
|
||||
/* Call handler for this parameter */
|
||||
err = (*func)(self, &p, PV_PUT);
|
||||
@@ -294,19 +294,19 @@ static int irda_extract_string(void *self, __u8 *buf, int len, __u8 pi,
|
||||
irda_param_t p;
|
||||
int err;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(2, "%s()\n", __func__);
|
||||
|
||||
p.pi = pi; /* In case handler needs to know */
|
||||
p.pl = buf[1]; /* Extract length of value */
|
||||
|
||||
IRDA_DEBUG(2, "%s(), pi=%#x, pl=%d\n", __FUNCTION__,
|
||||
IRDA_DEBUG(2, "%s(), pi=%#x, pl=%d\n", __func__,
|
||||
p.pi, p.pl);
|
||||
|
||||
/* Check if buffer is long enough for parsing */
|
||||
if (len < (2+p.pl)) {
|
||||
IRDA_WARNING("%s: buffer too short for parsing! "
|
||||
"Need %d bytes, but len is only %d\n",
|
||||
__FUNCTION__, p.pl, len);
|
||||
__func__, p.pl, len);
|
||||
return -1;
|
||||
}
|
||||
|
||||
@@ -314,7 +314,7 @@ static int irda_extract_string(void *self, __u8 *buf, int len, __u8 pi,
|
||||
* checked that the buffer is long enough */
|
||||
strncpy(str, buf+2, p.pl);
|
||||
|
||||
IRDA_DEBUG(2, "%s(), str=0x%02x 0x%02x\n", __FUNCTION__,
|
||||
IRDA_DEBUG(2, "%s(), str=0x%02x 0x%02x\n", __func__,
|
||||
(__u8) str[0], (__u8) str[1]);
|
||||
|
||||
/* Null terminate string */
|
||||
@@ -345,11 +345,11 @@ static int irda_extract_octseq(void *self, __u8 *buf, int len, __u8 pi,
|
||||
if (len < (2+p.pl)) {
|
||||
IRDA_WARNING("%s: buffer too short for parsing! "
|
||||
"Need %d bytes, but len is only %d\n",
|
||||
__FUNCTION__, p.pl, len);
|
||||
__func__, p.pl, len);
|
||||
return -1;
|
||||
}
|
||||
|
||||
IRDA_DEBUG(0, "%s(), not impl\n", __FUNCTION__);
|
||||
IRDA_DEBUG(0, "%s(), not impl\n", __func__);
|
||||
|
||||
return p.pl+2; /* Extracted pl+2 bytes */
|
||||
}
|
||||
@@ -473,7 +473,7 @@ int irda_param_insert(void *self, __u8 pi, __u8 *buf, int len,
|
||||
(pi_minor > info->tables[pi_major].len-1))
|
||||
{
|
||||
IRDA_DEBUG(0, "%s(), no handler for parameter=0x%02x\n",
|
||||
__FUNCTION__, pi);
|
||||
__func__, pi);
|
||||
|
||||
/* Skip this parameter */
|
||||
return -1;
|
||||
@@ -487,7 +487,7 @@ int irda_param_insert(void *self, __u8 pi, __u8 *buf, int len,
|
||||
|
||||
/* Check if handler has been implemented */
|
||||
if (!pi_minor_info->func) {
|
||||
IRDA_MESSAGE("%s: no handler for pi=%#x\n", __FUNCTION__, pi);
|
||||
IRDA_MESSAGE("%s: no handler for pi=%#x\n", __func__, pi);
|
||||
/* Skip this parameter */
|
||||
return -1;
|
||||
}
|
||||
@@ -527,7 +527,7 @@ static int irda_param_extract(void *self, __u8 *buf, int len,
|
||||
(pi_minor > info->tables[pi_major].len-1))
|
||||
{
|
||||
IRDA_DEBUG(0, "%s(), no handler for parameter=0x%02x\n",
|
||||
__FUNCTION__, buf[0]);
|
||||
__func__, buf[0]);
|
||||
|
||||
/* Skip this parameter */
|
||||
return 2 + buf[n + 1]; /* Continue */
|
||||
@@ -539,13 +539,13 @@ static int irda_param_extract(void *self, __u8 *buf, int len,
|
||||
/* Find expected data type for this parameter identifier (pi)*/
|
||||
type = pi_minor_info->type;
|
||||
|
||||
IRDA_DEBUG(3, "%s(), pi=[%d,%d], type=%d\n", __FUNCTION__,
|
||||
IRDA_DEBUG(3, "%s(), pi=[%d,%d], type=%d\n", __func__,
|
||||
pi_major, pi_minor, type);
|
||||
|
||||
/* Check if handler has been implemented */
|
||||
if (!pi_minor_info->func) {
|
||||
IRDA_MESSAGE("%s: no handler for pi=%#x\n",
|
||||
__FUNCTION__, buf[n]);
|
||||
__func__, buf[n]);
|
||||
/* Skip this parameter */
|
||||
return 2 + buf[n + 1]; /* Continue */
|
||||
}
|
||||
|
@@ -201,7 +201,7 @@ static int msb_index (__u16 word)
|
||||
* it's very likely the peer. - Jean II */
|
||||
if (word == 0) {
|
||||
IRDA_WARNING("%s(), Detected buggy peer, adjust null PV to 0x1!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
/* The only safe choice (we don't know the array size) */
|
||||
word = 0x1;
|
||||
}
|
||||
@@ -342,7 +342,7 @@ static void irlap_adjust_qos_settings(struct qos_info *qos)
|
||||
__u32 line_capacity;
|
||||
int index;
|
||||
|
||||
IRDA_DEBUG(2, "%s()\n", __FUNCTION__);
|
||||
IRDA_DEBUG(2, "%s()\n", __func__);
|
||||
|
||||
/*
|
||||
* Make sure the mintt is sensible.
|
||||
@@ -352,7 +352,7 @@ static void irlap_adjust_qos_settings(struct qos_info *qos)
|
||||
int i;
|
||||
|
||||
IRDA_WARNING("%s(), Detected buggy peer, adjust mtt to %dus!\n",
|
||||
__FUNCTION__, sysctl_min_tx_turn_time);
|
||||
__func__, sysctl_min_tx_turn_time);
|
||||
|
||||
/* We don't really need bits, but easier this way */
|
||||
i = value_highest_bit(sysctl_min_tx_turn_time, min_turn_times,
|
||||
@@ -370,7 +370,7 @@ static void irlap_adjust_qos_settings(struct qos_info *qos)
|
||||
{
|
||||
IRDA_DEBUG(0,
|
||||
"%s(), adjusting max turn time from %d to 500 ms\n",
|
||||
__FUNCTION__, qos->max_turn_time.value);
|
||||
__func__, qos->max_turn_time.value);
|
||||
qos->max_turn_time.value = 500;
|
||||
}
|
||||
|
||||
@@ -386,7 +386,7 @@ static void irlap_adjust_qos_settings(struct qos_info *qos)
|
||||
while ((qos->data_size.value > line_capacity) && (index > 0)) {
|
||||
qos->data_size.value = data_sizes[index--];
|
||||
IRDA_DEBUG(2, "%s(), reducing data size to %d\n",
|
||||
__FUNCTION__, qos->data_size.value);
|
||||
__func__, qos->data_size.value);
|
||||
}
|
||||
#else /* Use method described in section 6.6.11 of IrLAP */
|
||||
while (irlap_requested_line_capacity(qos) > line_capacity) {
|
||||
@@ -396,14 +396,14 @@ static void irlap_adjust_qos_settings(struct qos_info *qos)
|
||||
if (qos->window_size.value > 1) {
|
||||
qos->window_size.value--;
|
||||
IRDA_DEBUG(2, "%s(), reducing window size to %d\n",
|
||||
__FUNCTION__, qos->window_size.value);
|
||||
__func__, qos->window_size.value);
|
||||
} else if (index > 1) {
|
||||
qos->data_size.value = data_sizes[index--];
|
||||
IRDA_DEBUG(2, "%s(), reducing data size to %d\n",
|
||||
__FUNCTION__, qos->data_size.value);
|
||||
__func__, qos->data_size.value);
|
||||
} else {
|
||||
IRDA_WARNING("%s(), nothing more we can do!\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
}
|
||||
}
|
||||
#endif /* CONFIG_IRDA_DYNAMIC_WINDOW */
|
||||
@@ -538,7 +538,7 @@ static int irlap_param_baud_rate(void *instance, irda_param_t *param, int get)
|
||||
if (get) {
|
||||
param->pv.i = self->qos_rx.baud_rate.bits;
|
||||
IRDA_DEBUG(2, "%s(), baud rate = 0x%02x\n",
|
||||
__FUNCTION__, param->pv.i);
|
||||
__func__, param->pv.i);
|
||||
} else {
|
||||
/*
|
||||
* Stations must agree on baud rate, so calculate
|
||||
@@ -711,7 +711,7 @@ __u32 irlap_max_line_capacity(__u32 speed, __u32 max_turn_time)
|
||||
int i,j;
|
||||
|
||||
IRDA_DEBUG(2, "%s(), speed=%d, max_turn_time=%d\n",
|
||||
__FUNCTION__, speed, max_turn_time);
|
||||
__func__, speed, max_turn_time);
|
||||
|
||||
i = value_index(speed, baud_rates, 10);
|
||||
j = value_index(max_turn_time, max_turn_times, 4);
|
||||
@@ -722,7 +722,7 @@ __u32 irlap_max_line_capacity(__u32 speed, __u32 max_turn_time)
|
||||
line_capacity = max_line_capacities[i][j];
|
||||
|
||||
IRDA_DEBUG(2, "%s(), line capacity=%d bytes\n",
|
||||
__FUNCTION__, line_capacity);
|
||||
__func__, line_capacity);
|
||||
|
||||
return line_capacity;
|
||||
}
|
||||
@@ -738,7 +738,7 @@ static __u32 irlap_requested_line_capacity(struct qos_info *qos)
|
||||
qos->min_turn_time.value);
|
||||
|
||||
IRDA_DEBUG(2, "%s(), requested line capacity=%d\n",
|
||||
__FUNCTION__, line_capacity);
|
||||
__func__, line_capacity);
|
||||
|
||||
return line_capacity;
|
||||
}
|
||||
|
@@ -106,16 +106,16 @@ int async_wrap_skb(struct sk_buff *skb, __u8 *tx_buff, int buffsize)
|
||||
* Nothing to worry about, but we set the default number of
|
||||
* BOF's
|
||||
*/
|
||||
IRDA_DEBUG(1, "%s(), wrong magic in skb!\n", __FUNCTION__);
|
||||
IRDA_DEBUG(1, "%s(), wrong magic in skb!\n", __func__);
|
||||
xbofs = 10;
|
||||
} else
|
||||
xbofs = cb->xbofs + cb->xbofs_delay;
|
||||
|
||||
IRDA_DEBUG(4, "%s(), xbofs=%d\n", __FUNCTION__, xbofs);
|
||||
IRDA_DEBUG(4, "%s(), xbofs=%d\n", __func__, xbofs);
|
||||
|
||||
/* Check that we never use more than 115 + 48 xbofs */
|
||||
if (xbofs > 163) {
|
||||
IRDA_DEBUG(0, "%s(), too many xbofs (%d)\n", __FUNCTION__,
|
||||
IRDA_DEBUG(0, "%s(), too many xbofs (%d)\n", __func__,
|
||||
xbofs);
|
||||
xbofs = 163;
|
||||
}
|
||||
@@ -135,7 +135,7 @@ int async_wrap_skb(struct sk_buff *skb, __u8 *tx_buff, int buffsize)
|
||||
*/
|
||||
if(n >= (buffsize-5)) {
|
||||
IRDA_ERROR("%s(), tx buffer overflow (n=%d)\n",
|
||||
__FUNCTION__, n);
|
||||
__func__, n);
|
||||
return n;
|
||||
}
|
||||
|
||||
@@ -287,7 +287,7 @@ async_unwrap_bof(struct net_device *dev,
|
||||
/* Not supposed to happen, the previous frame is not
|
||||
* finished - Jean II */
|
||||
IRDA_DEBUG(1, "%s(), Discarding incomplete frame\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
stats->rx_errors++;
|
||||
stats->rx_missed_errors++;
|
||||
irda_device_set_media_busy(dev, TRUE);
|
||||
@@ -360,7 +360,7 @@ async_unwrap_eof(struct net_device *dev,
|
||||
/* Wrong CRC, discard frame! */
|
||||
irda_device_set_media_busy(dev, TRUE);
|
||||
|
||||
IRDA_DEBUG(1, "%s(), crc error\n", __FUNCTION__);
|
||||
IRDA_DEBUG(1, "%s(), crc error\n", __func__);
|
||||
stats->rx_errors++;
|
||||
stats->rx_crc_errors++;
|
||||
}
|
||||
@@ -386,7 +386,7 @@ async_unwrap_ce(struct net_device *dev,
|
||||
break;
|
||||
|
||||
case LINK_ESCAPE:
|
||||
IRDA_WARNING("%s: state not defined\n", __FUNCTION__);
|
||||
IRDA_WARNING("%s: state not defined\n", __func__);
|
||||
break;
|
||||
|
||||
case BEGIN_FRAME:
|
||||
@@ -421,7 +421,7 @@ async_unwrap_other(struct net_device *dev,
|
||||
#endif
|
||||
} else {
|
||||
IRDA_DEBUG(1, "%s(), Rx buffer overflow, aborting\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
rx_buff->state = OUTSIDE_FRAME;
|
||||
}
|
||||
break;
|
||||
@@ -440,7 +440,7 @@ async_unwrap_other(struct net_device *dev,
|
||||
rx_buff->state = INSIDE_FRAME;
|
||||
} else {
|
||||
IRDA_DEBUG(1, "%s(), Rx buffer overflow, aborting\n",
|
||||
__FUNCTION__);
|
||||
__func__);
|
||||
rx_buff->state = OUTSIDE_FRAME;
|
||||
}
|
||||
break;
|
||||
|
Reference in New Issue
Block a user