This patch changes pu8MacAddr to mac_addr that is second argument of
this function to avoid camelcase.
Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
        return result;
 }
 
-int host_int_del_station(struct host_if_drv *hif_drv, const u8 *pu8MacAddr)
+int host_int_del_station(struct host_if_drv *hif_drv, const u8 *mac_addr)
 {
        int result = 0;
        struct host_if_msg msg;
        msg.id = HOST_IF_MSG_DEL_STATION;
        msg.drv = hif_drv;
 
-       if (!pu8MacAddr)
+       if (!mac_addr)
                eth_broadcast_addr(pstrDelStationMsg->mac_addr);
        else
-               memcpy(pstrDelStationMsg->mac_addr, pu8MacAddr, ETH_ALEN);
+               memcpy(pstrDelStationMsg->mac_addr, mac_addr, ETH_ALEN);
 
        result = wilc_mq_send(&hif_msg_q, &msg, sizeof(struct host_if_msg));
        if (result)
 
                         struct add_sta_param *pstrStaParams);
 s32 host_int_del_allstation(struct host_if_drv *hWFIDrv,
                            u8 pu8MacAddr[][ETH_ALEN]);
-int host_int_del_station(struct host_if_drv *hif_drv, const u8 *pu8MacAddr);
+int host_int_del_station(struct host_if_drv *hif_drv, const u8 *mac_addr);
 s32 host_int_edit_station(struct host_if_drv *hWFIDrv,
                          struct add_sta_param *pstrStaParams);
 s32 host_int_set_power_mgmt(struct host_if_drv *hWFIDrv,