This patch removes typedef for _U_IP_ADDRESS,
changes the name of the union from _U_IP_ADDRESS
to bcm_ip_address, and converts the union to a
struct. In addition, any calls to the following
typedef "U_IP_ADDRESS" are changed to call the
struct directly.

Signed-off-by: Kevin McKinney <[email protected]>
---
 drivers/staging/bcm/Adapter.h |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/staging/bcm/Adapter.h b/drivers/staging/bcm/Adapter.h
index 8a4fa36..a67c01a 100644
--- a/drivers/staging/bcm/Adapter.h
+++ b/drivers/staging/bcm/Adapter.h
@@ -81,7 +81,7 @@ typedef struct _CLASSIFICATION_ONLY {
 #define MAX_PROTOCOL_LENGTH   32
 #define IPV6_ADDRESS_SIZEINBYTES 0x10
 
-typedef union _U_IP_ADDRESS {
+struct bcm_ip_address {
        struct {
                ULONG ulIpv4Addr[MAX_IP_RANGE_LENGTH]; /* Source Ip Address 
Range */
                ULONG ulIpv4Mask[MAX_IP_RANGE_LENGTH]; /* Source Ip Mask 
Address Range */
@@ -98,7 +98,7 @@ typedef union _U_IP_ADDRESS {
                UCHAR ucIpv6Address[MAX_IP_RANGE_LENGTH * 
IPV6_ADDRESS_SIZEINBYTES];
                UCHAR ucIpv6Mask[MAX_IP_RANGE_LENGTH * 
IPV6_ADDRESS_SIZEINBYTES];
        };
-} U_IP_ADDRESS;
+};
 struct _packet_info;
 
 struct bcm_hdr_supression_contextinfo {
@@ -113,10 +113,10 @@ struct bcm_classifier_rule {
        BOOLEAN         bUsed;
        USHORT          usVCID_Value;
        B_UINT8         u8ClassifierRulePriority; /* This field detemines the 
Classifier Priority */
-       U_IP_ADDRESS    stSrcIpAddress;
+       struct bcm_ip_address stSrcIpAddress;
        UCHAR           ucIPSourceAddressLength; /* Ip Source Address Length */
 
-       U_IP_ADDRESS    stDestIpAddress;
+       struct bcm_ip_address stDestIpAddress;
        UCHAR           ucIPDestinationAddressLength; /* Ip Destination Address 
Length */
        UCHAR           ucIPTypeOfServiceLength; /* Type of service Length */
        UCHAR           ucTosLow; /* Tos Low */
-- 
1.7.9.5

_______________________________________________
devel mailing list
[email protected]
http://driverdev.linuxdriverproject.org/mailman/listinfo/devel

Reply via email to