__u8  variable[0];
 };
 
-typedef struct sctp_operr_chunk {
+struct sctp_operr_chunk {
        struct sctp_chunkhdr chunk_hdr;
        struct sctp_errhdr err_hdr;
-} sctp_operr_chunk_t;
+};
 
 /* RFC 2960 3.3.10 - Operation Error
  *
 
        /* Make sure that the ERROR chunk has a valid length.
         * The parameter walking depends on this as well.
         */
-       if (!sctp_chunk_length_valid(chunk, sizeof(sctp_operr_chunk_t)))
+       if (!sctp_chunk_length_valid(chunk, sizeof(struct sctp_operr_chunk)))
                return sctp_sf_violation_chunklen(net, ep, asoc, type, arg,
                                                  commands);
 
                return sctp_sf_pdiscard(net, ep, asoc, type, arg, commands);
 
        /* Make sure that the ERROR chunk has a valid length. */
-       if (!sctp_chunk_length_valid(chunk, sizeof(sctp_operr_chunk_t)))
+       if (!sctp_chunk_length_valid(chunk, sizeof(struct sctp_operr_chunk)))
                return sctp_sf_violation_chunklen(net, ep, asoc, type, arg,
                                                  commands);
        sctp_walk_errors(err, chunk->chunk_hdr);