net: snmp: Clean up errors in snmp.h

Message ID 55bdec01.8ad.18ad9c80cca.Coremail.wangkailong@jari.cn
State New
Headers
Series net: snmp: Clean up errors in snmp.h |

Commit Message

KaiLong Wang Sept. 28, 2023, 3:14 a.m. UTC
  Fix the following errors reported by checkpatch:

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

Signed-off-by: KaiLong Wang <wangkailong@jari.cn>
---
 include/net/snmp.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
  

Comments

Simon Horman Oct. 2, 2023, 4:29 p.m. UTC | #1
On Thu, Sep 28, 2023 at 11:14:40AM +0800, KaiLong Wang wrote:
> Fix the following errors reported by checkpatch:
> 
> ERROR: space required after that ',' (ctx:VxV)
> ERROR: spaces required around that '==' (ctx:VxV)
> 
> Signed-off-by: KaiLong Wang <wangkailong@jari.cn>

Hi KaiLong Wang,

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

Patch

diff --git a/include/net/snmp.h b/include/net/snmp.h
index 468a67836e2f..92e92bebde2c 100644
--- a/include/net/snmp.h
+++ b/include/net/snmp.h
@@ -31,7 +31,7 @@  struct snmp_mib {
 	int entry;
 };
 
-#define SNMP_MIB_ITEM(_name,_entry)	{	\
+#define SNMP_MIB_ITEM(_name, _entry)	{	\
 	.name = _name,				\
 	.entry = _entry,			\
 }
@@ -155,7 +155,7 @@  struct linux_tls_mib {
 	} while (0)
 
 
-#if BITS_PER_LONG==32
+#if BITS_PER_LONG == 32
 
 #define __SNMP_ADD_STATS64(mib, field, addend) 				\
 	do {								\