diff mbox series

Fix partial warnings of checkpatch.pl for ipx_route.c

Message ID 1520277563-3825-1-git-send-email-hvultur@gmail.com
State Not Applicable, archived
Delegated to: David Miller
Headers show
Series Fix partial warnings of checkpatch.pl for ipx_route.c | expand

Commit Message

Horatiu Vultur March 5, 2018, 7:19 p.m. UTC
Fix partial warnings of checkpatch.pl for ipx_route.c

Signed-off-by: Horatiu Vultur <hvultur@gmail.com>
---
 drivers/staging/ipx/ipx_route.c | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

Comments

Eric Dumazet March 5, 2018, 7:23 p.m. UTC | #1
On Mon, 2018-03-05 at 20:19 +0100, Horatiu Vultur wrote:
> Fix partial warnings of checkpatch.pl for ipx_route.c
> 
> Signed-off-by: Horatiu Vultur <hvultur@gmail.com>
> ---
>  drivers/staging/ipx/ipx_route.c | 7 ++++---
>  1 file changed, 4 insertions(+), 3 deletions(-)
> 

Please take a look at drivers/staging/ipx/TODO
diff mbox series

Patch

diff --git a/drivers/staging/ipx/ipx_route.c b/drivers/staging/ipx/ipx_route.c
index 3cf93aa9..bd26fbb 100644
--- a/drivers/staging/ipx/ipx_route.c
+++ b/drivers/staging/ipx/ipx_route.c
@@ -71,8 +71,8 @@  int ipxrtr_add_route(__be32 network, struct ipx_interface *intrfc,
 			goto out_put;
 	}
 
-	rt->ir_net 	= network;
-	rt->ir_intrfc 	= intrfc;
+	rt->ir_net	= network;
+	rt->ir_intrfc	= intrfc;
 	if (!node) {
 		memset(rt->ir_router_node, '\0', IPX_NODE_LEN);
 		rt->ir_routed = 0;
@@ -207,7 +207,7 @@  int ipxrtr_route_packet(struct sock *sk, struct sockaddr_ipx *usipx,
 	ipx = ipx_hdr(skb);
 	ipx->ipx_pktsize = htons(len + sizeof(struct ipxhdr));
 	IPX_SKB_CB(skb)->ipx_tctrl = 0;
-	ipx->ipx_type 	 = usipx->sipx_type;
+	ipx->ipx_type	 = usipx->sipx_type;
 
 	IPX_SKB_CB(skb)->last_hop.index = -1;
 #ifdef CONFIG_IPX_INTERN
@@ -280,6 +280,7 @@  int ipxrtr_ioctl(unsigned int cmd, void __user *arg)
 		break;
 	case SIOCADDRT: {
 		struct ipx_route_definition f;
+
 		f.ipx_network		= st->sipx_network;
 		f.ipx_router_network	= sg->sipx_network;
 		memcpy(f.ipx_router_node, sg->sipx_node, IPX_NODE_LEN);