Skip to content

Commit

Permalink
sctp: remove the typedef sctp_param_action_t
Browse files Browse the repository at this point in the history
Remove this typedef, there is even no places using it.

Signed-off-by: Xin Long <lucien.xin@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Xin Long authored and David S. Miller committed Jul 1, 2017
1 parent 34b4e29 commit 0664ed4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/linux/sctp.h
Original file line number Diff line number Diff line change
Expand Up @@ -216,12 +216,12 @@ enum sctp_param {
* not recognize the Parameter Type.
*
*/
typedef enum {
enum {
SCTP_PARAM_ACTION_DISCARD = cpu_to_be16(0x0000),
SCTP_PARAM_ACTION_DISCARD_ERR = cpu_to_be16(0x4000),
SCTP_PARAM_ACTION_SKIP = cpu_to_be16(0x8000),
SCTP_PARAM_ACTION_SKIP_ERR = cpu_to_be16(0xc000),
} sctp_param_action_t;
};

enum { SCTP_PARAM_ACTION_MASK = cpu_to_be16(0xc000), };

Expand Down

0 comments on commit 0664ed4

Please sign in to comment.