diff options
author | Xin Long <lucien.xin@gmail.com> | 2017-07-22 21:34:36 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-07-24 19:01:20 -0400 |
commit | 441ae65ae000dd325a609306bd0cd850df50cfc4 (patch) | |
tree | 55a32a510403473ac9fc5c3b44c534d17d5925b6 /include/linux/sctp.h | |
parent | 38c00f7482281801d6f7fe410c7a4b61ae25218e (diff) |
sctp: remove the typedef sctp_abort_chunk_t
This patch is to remove the typedef sctp_abort_chunk_t, and
replace with struct sctp_abort_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>
Diffstat (limited to 'include/linux/sctp.h')
-rw-r--r-- | include/linux/sctp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/sctp.h b/include/linux/sctp.h index bfda7c66960c..ba007163acfd 100644 --- a/include/linux/sctp.h +++ b/include/linux/sctp.h | |||
@@ -408,9 +408,9 @@ struct sctp_heartbeat_chunk { | |||
408 | * common header. Just the common header is all that is needed with a | 408 | * common header. Just the common header is all that is needed with a |
409 | * chunk descriptor. | 409 | * chunk descriptor. |
410 | */ | 410 | */ |
411 | typedef struct sctp_abort_chunk { | 411 | struct sctp_abort_chunk { |
412 | struct sctp_chunkhdr uh; | 412 | struct sctp_chunkhdr uh; |
413 | } sctp_abort_chunk_t; | 413 | }; |
414 | 414 | ||
415 | 415 | ||
416 | /* For the graceful shutdown we must carry the tag (in common header) | 416 | /* For the graceful shutdown we must carry the tag (in common header) |