summaryrefslogtreecommitdiff
path: root/drivers/staging/bcm/Protocol.h
diff options
context:
space:
mode:
authorKevin McKinney <klmckinney1@gmail.com>2012-12-22 14:27:51 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-01-07 10:56:51 -0800
commit620fac923c8a1aa53f6fd1e1e332c53415b56df8 (patch)
tree6d4a2212a5778c46c24c20dda60ee311c0c25495 /drivers/staging/bcm/Protocol.h
parent9bcacc2975d03ea5f952bfd71ac9c33726a1804e (diff)
Staging: bcm: Remove typedef for _ETH_CS_802_LLC_FRAME and call directly.
This patch removes typedef for _ETH_CS_802_LLC_FRAME, and changes the name of the struct to bcm_eth_llc_frame. In addition, any calls to struct "ETH_CS_802_LLC_FRAME" are changed to call directly. Signed-off-by: Kevin McKinney <klmckinney1@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/bcm/Protocol.h')
-rw-r--r--drivers/staging/bcm/Protocol.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/bcm/Protocol.h b/drivers/staging/bcm/Protocol.h
index c9a242983418..842539d897bd 100644
--- a/drivers/staging/bcm/Protocol.h
+++ b/drivers/staging/bcm/Protocol.h
@@ -52,12 +52,12 @@ typedef struct _ETH_CS_802_Q_FRAME {
unsigned short EthType;
} __packed ETH_CS_802_Q_FRAME;
-typedef struct _ETH_CS_802_LLC_FRAME {
+struct bcm_eth_llc_frame {
struct bcm_eth_header EThHdr;
unsigned char DSAP;
unsigned char SSAP;
unsigned char Control;
-} __packed ETH_CS_802_LLC_FRAME;
+} __packed;
struct bcm_eth_llc_snap_frame {
struct bcm_eth_header EThHdr;