This patch removes typedef from the struct tstrHostIFSetMulti and
renames it to set_multicast in order to comply with the Linux coding
style.

Signed-off-by: Tony Cho <tony....@atmel.com>
---
 drivers/staging/wilc1000/host_interface.c | 17 +++++++++--------
 1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/drivers/staging/wilc1000/host_interface.c 
b/drivers/staging/wilc1000/host_interface.c
index 80527b5..c484619 100644
--- a/drivers/staging/wilc1000/host_interface.c
+++ b/drivers/staging/wilc1000/host_interface.c
@@ -299,7 +299,7 @@ struct del_beacon {
 };
 
 /*!
- *  @struct             tstrHostIFSetMulti
+ *  @struct             set_multicast
  *  @brief             set Multicast filter Address
  *  @details
  *  @todo
@@ -309,10 +309,10 @@ struct del_beacon {
  *  @version           1.0 Description
  */
 
-typedef struct {
+struct set_multicast {
        bool bIsEnabled;
        u32 u32count;
-} tstrHostIFSetMulti;
+};
 
 /*!
  *  @struct             tstrHostIFDelAllSta
@@ -434,7 +434,7 @@ union message_body {
        struct sta_inactive_t strHostIfStaInactiveT;
        struct set_ip_addr strHostIfSetIP;
        struct drv_handler strHostIfSetDrvHandler;
-       tstrHostIFSetMulti strHostIfSetMulti;
+       struct set_multicast strHostIfSetMulti;
        tstrHostIfSetOperationMode strHostIfSetOperationMode;
        tstrHostIfSetMacAddress strHostIfSetMacAddress;
        tstrHostIfGetMacAddress strHostIfGetMacAddress;
@@ -4050,13 +4050,14 @@ static void Handle_PowerManagement(tstrWILC_WFIDrv 
*drvHandler,
 /**
  *  @brief Handle_SetMulticastFilter
  *  @details        Set Multicast filter in firmware
- *  @param[in]   tstrHostIFSetMulti* strHostIfSetMulti
+ *  @param[in]   struct set_multicast *strHostIfSetMulti
  *  @return         NONE
  *  @author            asobhy
  *  @date
  *  @version   1.0
  */
-static void Handle_SetMulticastFilter(tstrWILC_WFIDrv *drvHandler, 
tstrHostIFSetMulti *strHostIfSetMulti)
+static void Handle_SetMulticastFilter(tstrWILC_WFIDrv *drvHandler,
+                                     struct set_multicast *strHostIfSetMulti)
 {
        s32 s32Error = 0;
        tstrWID strWID;
@@ -4066,7 +4067,7 @@ static void Handle_SetMulticastFilter(tstrWILC_WFIDrv 
*drvHandler, tstrHostIFSet
 
        strWID.u16WIDid = (u16)WID_SETUP_MULTICAST_FILTER;
        strWID.enuWIDtype = WID_BIN;
-       strWID.s32ValueSize = sizeof(tstrHostIFSetMulti) + 
((strHostIfSetMulti->u32count) * ETH_ALEN);
+       strWID.s32ValueSize = sizeof(struct set_multicast) + 
((strHostIfSetMulti->u32count) * ETH_ALEN);
        strWID.ps8WidVal = kmalloc(strWID.s32ValueSize, GFP_KERNEL);
        if (strWID.ps8WidVal == NULL)
                goto ERRORHANDLER;
@@ -7301,7 +7302,7 @@ s32 host_int_setup_multicast_filter(tstrWILC_WFIDrv 
*hWFIDrv, bool bIsEnabled, u
 
        tstrWILC_WFIDrv *pstrWFIDrv = (tstrWILC_WFIDrv *)hWFIDrv;
        struct host_if_msg msg;
-       tstrHostIFSetMulti *pstrMulticastFilterParam = 
&msg.body.strHostIfSetMulti;
+       struct set_multicast *pstrMulticastFilterParam = 
&msg.body.strHostIfSetMulti;
 
 
        if (pstrWFIDrv == NULL) {
-- 
1.9.1

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to