aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/sctp
diff options
context:
space:
mode:
authorXin Long <lucien.xin@gmail.com>2017-08-11 10:23:49 +0800
committerDavid S. Miller <davem@davemloft.net>2017-08-11 10:02:43 -0700
commitd38ef5ae35b0960f3219f1cf0203e19819e757c7 (patch)
treecc46c52a7c313a90444dd9b080f573f3b6bbce7d /include/net/sctp
parentsctp: remove the typedef sctp_cmsgs_t (diff)
downloadlinux-dev-d38ef5ae35b0960f3219f1cf0203e19819e757c7.tar.xz
linux-dev-d38ef5ae35b0960f3219f1cf0203e19819e757c7.zip
sctp: remove the typedef sctp_dbg_objcnt_entry_t
This patch is to remove the typedef sctp_dbg_objcnt_entry_t, and replace with struct sctp_dbg_objcnt_entry in the places where it's using this typedef. Signed-off-by: Xin Long <lucien.xin@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/sctp')
-rw-r--r--include/net/sctp/structs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net/sctp/structs.h b/include/net/sctp/structs.h
index e171d3a3d2b4..b6d75b37f84d 100644
--- a/include/net/sctp/structs.h
+++ b/include/net/sctp/structs.h
@@ -1992,9 +1992,9 @@ struct sctp_cmsgs {
};
/* Structure for tracking memory objects */
-typedef struct {
+struct sctp_dbg_objcnt_entry {
char *label;
atomic_t *counter;
-} sctp_dbg_objcnt_entry_t;
+};
#endif /* __sctp_structs_h__ */