aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/bcm
diff options
context:
space:
mode:
authorKevin McKinney <klmckinney1@gmail.com>2012-12-22 14:27:40 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-01-07 10:56:44 -0800
commita3489276ec02e0d3dbc6723f89041187d9a6cf76 (patch)
tree3bc675dee30ed24c34579e1880752c39d0c3b2ff /drivers/staging/bcm
parentStaging: bcm: Fix all white space issues in Protocol.h (diff)
downloadlinux-dev-a3489276ec02e0d3dbc6723f89041187d9a6cf76.tar.xz
linux-dev-a3489276ec02e0d3dbc6723f89041187d9a6cf76.zip
Staging: bcm: Properly format comments in Protocol.h
This patch properly formats comments, and removes them as needed in Protocol.h. Signed-off-by: Kevin McKinney <klmckinney1@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/bcm')
-rw-r--r--drivers/staging/bcm/Protocol.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/staging/bcm/Protocol.h b/drivers/staging/bcm/Protocol.h
index d113ed440e28..7803ce568253 100644
--- a/drivers/staging/bcm/Protocol.h
+++ b/drivers/staging/bcm/Protocol.h
@@ -13,7 +13,7 @@ struct ArpHeader {
unsigned char ar_sip[4]; /* sender IP address */
unsigned char ar_tha[ETH_ALEN]; /* target hardware address */
unsigned char ar_tip[4]; /* target IP address */
-} /*__attribute__((packed))*/;
+};
struct TransportHeaderT
{
@@ -85,7 +85,7 @@ typedef struct _ETH_CS_ETH2_FRAME
#define ETHERNET_FRAMETYPE_IPV6 ntohs(0x86dd)
#define ETHERNET_FRAMETYPE_802QVLAN ntohs(0x8100)
-//Per SF CS Specification Encodings
+/* Per SF CS Specification Encodings */
typedef enum _E_SERVICEFLOW_CS_SPEC_
{
eCSSpecUnspecified = 0,
@@ -119,7 +119,7 @@ typedef enum _E_SERVICEFLOW_CS_SPEC_
#define ARP_OP_REPLY 0x02
#define ARP_PKT_SIZE 60
-// This is the format for the TCP packet header
+/* This is the format for the TCP packet header */
typedef struct _TCP_HEADER
{
USHORT usSrcPort;
@@ -134,7 +134,7 @@ typedef struct _TCP_HEADER
} TCP_HEADER, *PTCP_HEADER;
#define TCP_HEADER_LEN sizeof(TCP_HEADER)
-#define TCP_ACK 0x10 //Bit 4 in tcpflags field.
+#define TCP_ACK 0x10 /* Bit 4 in tcpflags field. */
#define GET_TCP_HEADER_LEN(byte) ((byte&0xF0)>>4)
-#endif //__PROTOCOL_H__
+#endif /* __PROTOCOL_H__ */