Commit d7338269 authored by Soumyajit Deb's avatar Soumyajit Deb Committed by Greg Kroah-Hartman

Staging: hp100: Add space after "," in function arguments.

Add space after "," in function arguments to improve code readability.
Reported by checkpatch.pl
Signed-off-by: default avatarSoumyajit Deb <debsoumyajit100@gmail.com>
Link: https://lore.kernel.org/r/20200325072905.29066-6-debsoumyajit100@gmail.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent c40bca6a
...@@ -1793,7 +1793,7 @@ static void hp100_rx(struct net_device *dev) ...@@ -1793,7 +1793,7 @@ static void hp100_rx(struct net_device *dev)
u_char *ptr; u_char *ptr;
skb_reserve(skb,2); skb_reserve(skb, 2);
/* ptr to start of the sk_buff data area */ /* ptr to start of the sk_buff data area */
skb_put(skb, pkt_len); skb_put(skb, pkt_len);
...@@ -1801,7 +1801,7 @@ static void hp100_rx(struct net_device *dev) ...@@ -1801,7 +1801,7 @@ static void hp100_rx(struct net_device *dev)
/* Now transfer the data from the card into that area */ /* Now transfer the data from the card into that area */
if (lp->mode == 2) if (lp->mode == 2)
memcpy_fromio(ptr, lp->mem_ptr_virt,pkt_len); memcpy_fromio(ptr, lp->mem_ptr_virt, pkt_len);
else /* io mapped */ else /* io mapped */
insl(ioaddr + HP100_REG_DATA32, ptr, pkt_len >> 2); insl(ioaddr + HP100_REG_DATA32, ptr, pkt_len >> 2);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment