OSDN Git Service

staging: rtl8188eu: rename LedControl8188eu to avoid CamelCase
authorMichael Straube <straube.linux@gmail.com>
Wed, 21 Nov 2018 19:49:36 +0000 (20:49 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 22 Nov 2018 10:14:59 +0000 (11:14 +0100)
Rename the function LedControl8188eu to avoid CamelCase.
LedControl8188eu -> led_control_8188eu

Signed-off-by: Michael Straube <straube.linux@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8188eu/core/rtw_cmd.c
drivers/staging/rtl8188eu/core/rtw_led.c
drivers/staging/rtl8188eu/core/rtw_mlme.c
drivers/staging/rtl8188eu/core/rtw_pwrctrl.c
drivers/staging/rtl8188eu/core/rtw_recv.c
drivers/staging/rtl8188eu/core/rtw_xmit.c
drivers/staging/rtl8188eu/include/rtw_led.h
drivers/staging/rtl8188eu/os_dep/os_intfs.c

index 9b2a497..f6dbcf6 100644 (file)
@@ -294,7 +294,7 @@ u8 rtw_sitesurvey_cmd(struct adapter  *padapter, struct ndis_802_11_ssid *ssid,
                mod_timer(&pmlmepriv->scan_to_timer,
                          jiffies + msecs_to_jiffies(SCANNING_TIMEOUT));
 
-               LedControl8188eu(padapter, LED_CTL_SITE_SURVEY);
+               led_control_8188eu(padapter, LED_CTL_SITE_SURVEY);
 
                pmlmepriv->scan_interval = SCAN_INTERVAL;/*  30*2 sec = 60sec */
        } else {
@@ -318,7 +318,7 @@ u8 rtw_createbss_cmd(struct adapter  *padapter)
        struct wlan_bssid_ex *pdev_network = &padapter->registrypriv.dev_network;
        u8      res = _SUCCESS;
 
-       LedControl8188eu(padapter, LED_CTL_START_TO_LINK);
+       led_control_8188eu(padapter, LED_CTL_START_TO_LINK);
 
        if (pmlmepriv->assoc_ssid.SsidLength == 0)
                RT_TRACE(_module_rtl871x_cmd_c_, _drv_info_, (" createbss for Any SSid:%s\n", pmlmepriv->assoc_ssid.Ssid));
@@ -360,7 +360,7 @@ u8 rtw_joinbss_cmd(struct adapter  *padapter, struct wlan_network *pnetwork)
        struct mlme_ext_priv    *pmlmeext = &padapter->mlmeextpriv;
        struct mlme_ext_info    *pmlmeinfo = &pmlmeext->mlmext_info;
 
-       LedControl8188eu(padapter, LED_CTL_START_TO_LINK);
+       led_control_8188eu(padapter, LED_CTL_START_TO_LINK);
 
        if (pmlmepriv->assoc_ssid.SsidLength == 0)
                RT_TRACE(_module_rtl871x_cmd_c_, _drv_info_, ("+Join cmd: Any SSid\n"));
index 99ebaf5..ab68eb8 100644 (file)
@@ -465,7 +465,7 @@ void blink_handler(struct LED_871x *pLed)
        SwLedBlink1(pLed);
 }
 
-void LedControl8188eu(struct adapter *padapter, enum LED_CTL_MODE LedAction)
+void led_control_8188eu(struct adapter *padapter, enum LED_CTL_MODE LedAction)
 {
        if (padapter->bSurpriseRemoved || padapter->bDriverStopped ||
            !padapter->hw_init_completed)
index b9bd864..e5c8b02 100644 (file)
@@ -785,7 +785,7 @@ void rtw_indicate_connect(struct adapter *padapter)
        if (!check_fwstate(&padapter->mlmepriv, _FW_LINKED)) {
                set_fwstate(pmlmepriv, _FW_LINKED);
 
-               LedControl8188eu(padapter, LED_CTL_LINK);
+               led_control_8188eu(padapter, LED_CTL_LINK);
 
                rtw_os_indicate_connect(padapter);
        }
@@ -816,7 +816,7 @@ void rtw_indicate_disconnect(struct adapter *padapter)
                rtw_os_indicate_disconnect(padapter);
 
                _clr_fwstate_(pmlmepriv, _FW_LINKED);
-               LedControl8188eu(padapter, LED_CTL_NO_LINK);
+               led_control_8188eu(padapter, LED_CTL_NO_LINK);
                rtw_clear_scan_deny(padapter);
        }
 
index 9764e85..6a846d0 100644 (file)
@@ -47,7 +47,7 @@ static int rtw_hw_suspend(struct adapter *padapter)
                if (check_fwstate(pmlmepriv, _FW_LINKED)) {
                        _clr_fwstate_(pmlmepriv, _FW_LINKED);
 
-                       LedControl8188eu(padapter, LED_CTL_NO_LINK);
+                       led_control_8188eu(padapter, LED_CTL_NO_LINK);
 
                        rtw_os_indicate_disconnect(padapter);
 
index dc447cc..7c667a3 100644 (file)
@@ -1229,7 +1229,7 @@ static int validate_recv_frame(struct adapter *adapter,
                retval = _FAIL; /*  only data frame return _SUCCESS */
                break;
        case WIFI_DATA_TYPE: /* data */
-               LedControl8188eu(adapter, LED_CTL_RX);
+               led_control_8188eu(adapter, LED_CTL_RX);
                pattrib->qos = (subtype & BIT(7)) ? 1 : 0;
                retval = validate_recv_data_frame(adapter, precv_frame);
                if (retval == _FAIL) {
@@ -1912,7 +1912,7 @@ static int recv_func_posthandle(struct adapter *padapter,
        struct __queue *pfree_recv_queue = &padapter->recvpriv.free_recv_queue;
 
        /*  DATA FRAME */
-       LedControl8188eu(padapter, LED_CTL_RX);
+       led_control_8188eu(padapter, LED_CTL_RX);
 
        prframe = decryptor(padapter, prframe);
        if (!prframe) {
index b218b9d..6a2d044 100644 (file)
@@ -1606,7 +1606,7 @@ s32 rtw_xmit(struct adapter *padapter, struct sk_buff **ppkt)
        }
        pxmitframe->pkt = *ppkt;
 
-       LedControl8188eu(padapter, LED_CTL_TX);
+       led_control_8188eu(padapter, LED_CTL_TX);
 
        pxmitframe->attrib.qsel = pxmitframe->attrib.priority;
 
index 80f8dcc..e09ba8d 100644 (file)
@@ -76,7 +76,7 @@ struct LED_871x {
        ((struct LED_871x *)_LED_871x)->CurrLedState == LED_BLINK_WPS_STOP || \
        ((struct LED_871x *)_LED_871x)->bLedWPSBlinkInProgress)
 
-void LedControl8188eu(struct adapter *padapter, enum LED_CTL_MODE      LedAction);
+void led_control_8188eu(struct adapter *padapter, enum LED_CTL_MODE LedAction);
 
 struct led_priv {
        /* add for led control */
index dac9f98..fb213a9 100644 (file)
@@ -578,7 +578,7 @@ static int _netdev_open(struct net_device *pnetdev)
                }
                rtw_hal_inirp_init(padapter);
 
-               LedControl8188eu(padapter, LED_CTL_NO_LINK);
+               led_control_8188eu(padapter, LED_CTL_NO_LINK);
 
                padapter->bup = true;
        }
@@ -661,7 +661,7 @@ int rtw_ips_pwr_up(struct adapter *padapter)
 
        result = ips_netdrv_open(padapter);
 
-       LedControl8188eu(padapter, LED_CTL_NO_LINK);
+       led_control_8188eu(padapter, LED_CTL_NO_LINK);
 
        DBG_88E("<===  rtw_ips_pwr_up.............. in %dms\n",
                jiffies_to_msecs(jiffies - start_time));
@@ -676,7 +676,7 @@ void rtw_ips_pwr_down(struct adapter *padapter)
 
        padapter->net_closed = true;
 
-       LedControl8188eu(padapter, LED_CTL_POWER_OFF);
+       led_control_8188eu(padapter, LED_CTL_POWER_OFF);
 
        rtw_ips_dev_unload(padapter);
        DBG_88E("<=== rtw_ips_pwr_down..................... in %dms\n",
@@ -728,7 +728,7 @@ static int netdev_close(struct net_device *pnetdev)
                /* s2-4. */
                rtw_free_network_queue(padapter, true);
                /*  Close LED */
-               LedControl8188eu(padapter, LED_CTL_POWER_OFF);
+               led_control_8188eu(padapter, LED_CTL_POWER_OFF);
        }
 
        RT_TRACE(_module_os_intfs_c_, _drv_info_, ("-88eu_drv - drv_close\n"));