sctp: remove the typedef sctp_sackhdr_t
[linux-2.6-block.git] / include / linux / sctp.h
index 8df6ac53f05bfd8e440c8a3208f1d95fac7a21df..a2e43129d11a062686820f9496d4503e33e5771a 100644 (file)
@@ -373,17 +373,17 @@ union sctp_sack_variable {
        __be32 dup;
 };
 
-typedef struct sctp_sackhdr {
+struct sctp_sackhdr {
        __be32 cum_tsn_ack;
        __be32 a_rwnd;
        __be16 num_gap_ack_blocks;
        __be16 num_dup_tsns;
        union sctp_sack_variable variable[0];
-} sctp_sackhdr_t;
+};
 
 typedef struct sctp_sack_chunk {
        struct sctp_chunkhdr chunk_hdr;
-       sctp_sackhdr_t sack_hdr;
+       struct sctp_sackhdr sack_hdr;
 } sctp_sack_chunk_t;