Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fa61f0ca authored by Joe Perches's avatar Joe Perches Committed by David S. Miller
Browse files

net/atm/raw.c: checkpatch cleanups



Spacing cleanups
Mostly 80 column wrapped.

Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 6b6dd498
Loading
Loading
Loading
Loading
+7 −14
Original line number Diff line number Diff line
@@ -28,7 +28,6 @@ static void atm_push_raw(struct atm_vcc *vcc,struct sk_buff *skb)
	}
}


static void atm_pop_raw(struct atm_vcc *vcc, struct sk_buff *skb)
{
	struct sock *sk = sk_atm(vcc);
@@ -40,7 +39,6 @@ static void atm_pop_raw(struct atm_vcc *vcc,struct sk_buff *skb)
	sk->sk_write_space(sk);
}


static int atm_send_aal0(struct atm_vcc *vcc, struct sk_buff *skb)
{
	/*
@@ -49,15 +47,14 @@ static int atm_send_aal0(struct atm_vcc *vcc,struct sk_buff *skb)
	 */
	if (!capable(CAP_NET_ADMIN) &&
	    (((u32 *)skb->data)[0] & (ATM_HDR_VPI_MASK | ATM_HDR_VCI_MASK)) !=
	    ((vcc->vpi << ATM_HDR_VPI_SHIFT) | (vcc->vci << ATM_HDR_VCI_SHIFT)))
	    {
	    ((vcc->vpi << ATM_HDR_VPI_SHIFT) |
	     (vcc->vci << ATM_HDR_VCI_SHIFT))) {
		kfree_skb(skb);
		return -EADDRNOTAVAIL;
	}
	return vcc->dev->ops->send(vcc, skb);
}


int atm_init_aal0(struct atm_vcc *vcc)
{
	vcc->push = atm_push_raw;
@@ -67,7 +64,6 @@ int atm_init_aal0(struct atm_vcc *vcc)
	return 0;
}


int atm_init_aal34(struct atm_vcc *vcc)
{
	vcc->push = atm_push_raw;
@@ -77,7 +73,6 @@ int atm_init_aal34(struct atm_vcc *vcc)
	return 0;
}


int atm_init_aal5(struct atm_vcc *vcc)
{
	vcc->push = atm_push_raw;
@@ -86,6 +81,4 @@ int atm_init_aal5(struct atm_vcc *vcc)
	vcc->send = vcc->dev->ops->send;
	return 0;
}


EXPORT_SYMBOL(atm_init_aal5);