diff options
author | Kuniyuki Iwashima <kuniyu@amazon.co.jp> | 2021-06-23 15:06:34 +0900 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-06-23 13:47:55 -0700 |
commit | 10ed7ce42b13790ba85f8e10110d89a2bce58807 (patch) | |
tree | 12951759ee172eb1c05e61cabd75b05344621945 /include/net | |
parent | 55d444b310c64b084dcc62ba3e4dc3862269fb96 (diff) |
net/tls: Remove the __TLS_DEC_STATS() macro.
The commit d26b698dd3cd ("net/tls: add skeleton of MIB statistics")
introduced __TLS_DEC_STATS(), but it is not used and __SNMP_DEC_STATS() is
not defined also. Let's remove it.
Signed-off-by: Kuniyuki Iwashima <kuniyu@amazon.co.jp>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/tls.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/net/tls.h b/include/net/tls.h index 8341a8d1e807..8d398a5de3ee 100644 --- a/include/net/tls.h +++ b/include/net/tls.h @@ -79,8 +79,6 @@ __SNMP_INC_STATS((net)->mib.tls_statistics, field) #define TLS_INC_STATS(net, field) \ SNMP_INC_STATS((net)->mib.tls_statistics, field) -#define __TLS_DEC_STATS(net, field) \ - __SNMP_DEC_STATS((net)->mib.tls_statistics, field) #define TLS_DEC_STATS(net, field) \ SNMP_DEC_STATS((net)->mib.tls_statistics, field) |