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: Kevin McKinney <klmckinney1@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
} __packed;
typedef struct TransportHeaderT xporthdr;
-typedef enum _E_NWPKT_IPFRAME_TYPE {
+enum bcm_ip_frame_type {
eNonIPPacket,
eIPv4Packet,
eIPv6Packet
-} E_NWPKT_IPFRAME_TYPE;
+};
enum bcm_eth_frame_type {
eEthUnsupportedFrame,
};
struct bcm_eth_packet_info {
- E_NWPKT_IPFRAME_TYPE eNwpktIPFrameType;
+ enum bcm_ip_frame_type eNwpktIPFrameType;
enum bcm_eth_frame_type eNwpktEthFrameType;
unsigned short usEtherType;
unsigned char ucDSAP;