staging: wilc1000: rename wilc_frmw_to_linux()
authorAjay Singh <ajay.kathat@microchip.com>
Thu, 7 Feb 2019 11:29:13 +0000 (11:29 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 7 Feb 2019 12:34:45 +0000 (13:34 +0100)
Rename wilc_frmw_to_linux() to wilc_frmw_to_host() to be remove the _linux
suffix.

Signed-off-by: Ajay Singh <ajay.kathat@microchip.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/linux_wlan.c
drivers/staging/wilc1000/wilc_wfi_netdevice.h
drivers/staging/wilc1000/wilc_wlan.c

index 1ebf2b86606aaeee3ffb2400358960ed6a66f17a..1e2f6f4b2076a4171be2bc9fb4d5cd1849c0d58f 100644 (file)
@@ -803,7 +803,8 @@ static int wilc_mac_close(struct net_device *ndev)
        return 0;
 }
 
-void wilc_frmw_to_linux(struct wilc *wilc, u8 *buff, u32 size, u32 pkt_offset)
+void wilc_frmw_to_host(struct wilc *wilc, u8 *buff, u32 size,
+                      u32 pkt_offset)
 {
        unsigned int frame_len = 0;
        int stats;
index 2b9b8b5ba3888edbfdd0f658bd1283208f21b75e..df00762487c057e47bc43f8b85198e447a2461ae 100644 (file)
@@ -281,7 +281,7 @@ struct wilc_wfi_mon_priv {
        struct net_device *real_ndev;
 };
 
-void wilc_frmw_to_linux(struct wilc *wilc, u8 *buff, u32 size, u32 pkt_offset);
+void wilc_frmw_to_host(struct wilc *wilc, u8 *buff, u32 size, u32 pkt_offset);
 void wilc_mac_indicate(struct wilc *wilc);
 void wilc_netdev_cleanup(struct wilc *wilc);
 int wilc_netdev_init(struct wilc **wilc, struct device *dev, int io_type,
index af1c4d869547daa4d8a4dcc0489e235538d3f16c..c2389695fe20403aab08939a338dc1c7b5f4dc80 100644 (file)
@@ -717,9 +717,8 @@ static void wilc_wlan_handle_rx_buff(struct wilc *wilc, u8 *buffer, int size)
                } else {
                        if (!is_cfg_packet) {
                                if (pkt_len > 0) {
-                                       wilc_frmw_to_linux(wilc, buff_ptr,
-                                                          pkt_len,
-                                                          pkt_offset);
+                                       wilc_frmw_to_host(wilc, buff_ptr,
+                                                         pkt_len, pkt_offset);
                                }
                        } else {
                                struct wilc_cfg_rsp rsp;