sctp: remove the typedef sctp_data_chunk_t

This patch is to remove the typedef sctp_data_chunk_t, and replace
with struct sctp_data_chunk 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>
This commit is contained in:
Xin Long
2017-06-30 11:52:20 +08:00
committed by David S. Miller
parent 3583df1a3d
commit 9f8d314715
6 changed files with 10 additions and 10 deletions

View File

@@ -235,10 +235,10 @@ struct sctp_datahdr {
__u8 payload[0];
};
typedef struct sctp_data_chunk {
struct sctp_data_chunk {
struct sctp_chunkhdr chunk_hdr;
struct sctp_datahdr data_hdr;
} sctp_data_chunk_t;
};
/* DATA Chuck Specific Flags */
enum {