[PATCH] drivers: net: slip: Add space after that ','

From: hanyu001
Date: Fri Jul 14 2023 - 03:33:50 EST


Fix Error reported by checkpatch.pl

./drivers/net/slip/slhc.c:465: ERROR: space required after that ',' (ctx:VxV)
./drivers/net/slip/slhc.c:465: ERROR: space required after that ',' (ctx:VxV)
./drivers/net/slip/slhc.c:466: ERROR: space required after that ',' (ctx:VxV)
./drivers/net/slip/slhc.c:466: ERROR: space required after that ',' (ctx:VxV)

Signed-off-by: maqimei <2433033762@xxxxxx>
---
drivers/net/slip/slhc.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/slip/slhc.c b/drivers/net/slip/slhc.c
index 72e64ee..0011915 100644
--- a/drivers/net/slip/slhc.c
+++ b/drivers/net/slip/slhc.c
@@ -462,8 +462,8 @@ struct slcompress *
*(__sum16 *)cp = csum;
cp += 2;
/* deltaS is now the size of the change section of the compressed header */
- memcpy(cp,new_seq,deltaS); /* Write list of deltas */
- memcpy(cp+deltaS,icp+hlen,isize-hlen);
+ memcpy(cp, new_seq, deltaS); /* Write list of deltas */
+ memcpy(cp+deltaS, icp+hlen, isize-hlen);
comp->sls_o_compressed++;
ocp[0] |= SL_TYPE_COMPRESSED_TCP;
return isize - hlen + deltaS + (cp - ocp);