Commit 8ab19921 authored by Kevin McKinney's avatar Kevin McKinney Committed by Greg Kroah-Hartman

Staging: bcm: Remove typedef for _E_NWPKT_IPFRAME_TYPE and call directly.

This patch removes typedef for _E_NWPKT_IPFRAME_TYPE,
and changes the name of the enum to bcm_ip_frame_type.
In addition, any calls to enum "E_NWPKT_IPFRAME_TYPE"
are changed to call directly.
Signed-off-by: default avatarKevin McKinney <klmckinney1@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1f05da95
...@@ -23,11 +23,11 @@ struct TransportHeaderT { ...@@ -23,11 +23,11 @@ struct TransportHeaderT {
} __packed; } __packed;
typedef struct TransportHeaderT xporthdr; typedef struct TransportHeaderT xporthdr;
typedef enum _E_NWPKT_IPFRAME_TYPE { enum bcm_ip_frame_type {
eNonIPPacket, eNonIPPacket,
eIPv4Packet, eIPv4Packet,
eIPv6Packet eIPv6Packet
} E_NWPKT_IPFRAME_TYPE; };
enum bcm_eth_frame_type { enum bcm_eth_frame_type {
eEthUnsupportedFrame, eEthUnsupportedFrame,
...@@ -38,7 +38,7 @@ enum bcm_eth_frame_type { ...@@ -38,7 +38,7 @@ enum bcm_eth_frame_type {
}; };
struct bcm_eth_packet_info { struct bcm_eth_packet_info {
E_NWPKT_IPFRAME_TYPE eNwpktIPFrameType; enum bcm_ip_frame_type eNwpktIPFrameType;
enum bcm_eth_frame_type eNwpktEthFrameType; enum bcm_eth_frame_type eNwpktEthFrameType;
unsigned short usEtherType; unsigned short usEtherType;
unsigned char ucDSAP; unsigned char ucDSAP;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment