Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fe9a0fe7 authored by Xin Long's avatar Xin Long Committed by David S. Miller
Browse files

sctp: remove the typedef sctp_gap_ack_block_t



This patch is to remove the typedef sctp_gap_ack_block_t, and
replace with struct sctp_gap_ack_block in the places where it's
using this typedef.

Signed-off-by: default avatarXin Long <lucien.xin@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 62e6b7e4
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -363,15 +363,15 @@ struct sctp_unrecognized_param {
 *  subsequences of DATA chunks as represented by their TSNs.
 */

typedef struct sctp_gap_ack_block {
struct sctp_gap_ack_block {
	__be16 start;
	__be16 end;
} sctp_gap_ack_block_t;
};

typedef __be32 sctp_dup_tsn_t;

typedef union {
	sctp_gap_ack_block_t	gab;
	struct sctp_gap_ack_block gab;
	sctp_dup_tsn_t dup;
} sctp_sack_variable_t;