staging: rtl8192e: Rename rtl8192e_start_beacon
authorMateusz Kulikowski <mateusz.kulikowski@gmail.com>
Sun, 19 Jul 2015 17:27:27 +0000 (19:27 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 23 Jul 2015 04:24:11 +0000 (21:24 -0700)
Use naming schema found in other rtlwifi devices.
Rename rtl8192e_start_beacon to rtl92e_start_beacon.

Signed-off-by: Mateusz Kulikowski <mateusz.kulikowski@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8192e/rtl8192e/r8192E_dev.c
drivers/staging/rtl8192e/rtl8192e/r8192E_dev.h
drivers/staging/rtl8192e/rtl8192e/rtl_core.c

index 95e7b28e89290ec7c4f5776130de7ef3303e345b..f96923ca278bd4d415b002895a975b23817a82f7 100644 (file)
@@ -33,7 +33,7 @@
 static int WDCAPARA_ADD[] = {EDCAPARA_BE, EDCAPARA_BK, EDCAPARA_VI,
                             EDCAPARA_VO};
 
-void rtl8192e_start_beacon(struct net_device *dev)
+void rtl92e_start_beacon(struct net_device *dev)
 {
        struct r8192_priv *priv = (struct r8192_priv *)rtllib_priv(dev);
        struct rtllib_network *net = &priv->rtllib->current_network;
index 436d9d7d50ffb640587a8ffa9d333e79379cbd6b..5b9b4dfa55ceeabac0eb7a0411252e066002d98e 100644 (file)
@@ -39,7 +39,7 @@ void rtl92e_enable_irq(struct net_device *dev);
 void rtl92e_disable_irq(struct net_device *dev);
 void rtl92e_clear_irq(struct net_device *dev);
 void rtl8192_InitializeVariables(struct net_device  *dev);
-void rtl8192e_start_beacon(struct net_device *dev);
+void rtl92e_start_beacon(struct net_device *dev);
 void rtl92e_set_reg(struct net_device *dev, u8 variable, u8 *val);
 void rtl8192_get_eeprom_size(struct net_device *dev);
 bool rtl92e_start_adapter(struct net_device *dev);
index 83b0cea26f251aa926b2725b75fb349a08e81fbd..3a824b4d23e8edea32fb0b17d20f0c8c8fcc1aa7 100644 (file)
@@ -879,7 +879,7 @@ static void rtl8192_init_priv_handler(struct net_device *dev)
        priv->rtllib->SetBWModeHandler          = rtl8192_SetBWMode;
        priv->rf_set_chan                       = rtl8192_phy_SwChnl;
 
-       priv->rtllib->start_send_beacons = rtl8192e_start_beacon;
+       priv->rtllib->start_send_beacons = rtl92e_start_beacon;
        priv->rtllib->stop_send_beacons = rtl8192_stop_beacon;
 
        priv->rtllib->sta_wake_up = rtl8192_hw_wakeup;
This page took 0.028341 seconds and 5 git commands to generate.