diff mbox series

atm: Clean up errors in atm_tcp.h

Message ID 32b04d0b.86a.18ad54f1174.Coremail.chenguohua@jari.cn (mailing list archive)
State Rejected
Headers show
Series atm: Clean up errors in atm_tcp.h | expand

Checks

Context Check Description
netdev/tree_selection success Not a local patch

Commit Message

chenguohua@jari.cn Sept. 27, 2023, 6:24 a.m. UTC
Fix the following errors reported by checkpatch:

ERROR: space required after that ',' (ctx:VxV)

Signed-off-by: GuoHua Cheng <chenguohua@jari.cn>
---
 include/linux/atm_tcp.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Simon Horman Oct. 1, 2023, 7:47 p.m. UTC | #1
On Wed, Sep 27, 2023 at 02:24:03PM +0800, chenguohua@jari.cn wrote:
> Fix the following errors reported by checkpatch:
> 
> ERROR: space required after that ',' (ctx:VxV)
> 
> Signed-off-by: GuoHua Cheng <chenguohua@jari.cn>

Hi GuoHua Cheng,

unfortunately, patches that only contain checkpatch clean-ups
for Networking code are not accepted.

pw-bot: rejected
diff mbox series

Patch

diff --git a/include/linux/atm_tcp.h b/include/linux/atm_tcp.h
index 2558439d849b..2635965e8982 100644
--- a/include/linux/atm_tcp.h
+++ b/include/linux/atm_tcp.h
@@ -13,7 +13,7 @@  struct atm_vcc;
 struct module;
 
 struct atm_tcp_ops {
-	int (*attach)(struct atm_vcc *vcc,int itf);
+	int (*attach)(struct atm_vcc *vcc, int itf);
 	int (*create_persistent)(int itf);
 	int (*remove_persistent)(int itf);
 	struct module *owner;