]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
sctp: remove the typedef sctp_dup_tsn_t
authorXin Long <lucien.xin@gmail.com>
Sun, 23 Jul 2017 01:34:30 +0000 (09:34 +0800)
committerDavid S. Miller <davem@davemloft.net>
Mon, 24 Jul 2017 23:01:20 +0000 (16:01 -0700)
This patch is to remove the typedef sctp_dup_tsn_t, and replace
with __be32 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>
include/linux/sctp.h

index b84b8e8340da953324fa4c7f0bcc2850abc2d282..8faf74eff63dd541bba56cb2a3e88fac8c8b2c3f 100644 (file)
@@ -368,11 +368,9 @@ struct sctp_gap_ack_block {
        __be16 end;
 };
 
-typedef __be32 sctp_dup_tsn_t;
-
 typedef union {
        struct sctp_gap_ack_block gab;
-       sctp_dup_tsn_t dup;
+       __be32 dup;
 } sctp_sack_variable_t;
 
 typedef struct sctp_sackhdr {