diff options
| author | Mateusz Kulikowski <mateusz.kulikowski@gmail.com> | 2015-09-20 11:13:35 +0300 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-09-29 04:33:47 +0300 |
| commit | f2f08fc58f18978c88a064089e0f2aba72da06c4 (patch) | |
| tree | 5b40b7d9047b3d6ea049f51c5dc278199bf922de | |
| parent | dba0e06f823033f8e67d32d945df0e81a8590019 (diff) | |
| download | linux-f2f08fc58f18978c88a064089e0f2aba72da06c4.tar.xz | |
staging: rtl8192e: Rename rtl8192_stop_beacon
Use naming schema found in other rtlwifi devices.
Rename rtl8192_stop_beacon to _rtl92e_stop_beacon.
Signed-off-by: Mateusz Kulikowski <mateusz.kulikowski@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
| -rw-r--r-- | drivers/staging/rtl8192e/rtl8192e/rtl_core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/rtl8192e/rtl8192e/rtl_core.c b/drivers/staging/rtl8192e/rtl8192e/rtl_core.c index 1aff44d778a4..225118f115a8 100644 --- a/drivers/staging/rtl8192e/rtl8192e/rtl_core.c +++ b/drivers/staging/rtl8192e/rtl8192e/rtl_core.c @@ -561,7 +561,7 @@ static void _rtl92e_prepare_beacon(struct r8192_priv *priv) pdesc->OWN = 1; } -static void rtl8192_stop_beacon(struct net_device *dev) +static void _rtl92e_stop_beacon(struct net_device *dev) { } @@ -865,7 +865,7 @@ static void _rtl92e_init_priv_handler(struct net_device *dev) priv->rf_set_chan = rtl92e_set_channel; priv->rtllib->start_send_beacons = rtl92e_start_beacon; - priv->rtllib->stop_send_beacons = rtl8192_stop_beacon; + priv->rtllib->stop_send_beacons = _rtl92e_stop_beacon; priv->rtllib->sta_wake_up = rtl92e_hw_wakeup; priv->rtllib->enter_sleep_state = rtl92e_enter_sleep; |
