OSDN Git Service

staging: rtl8723bs: remove semaphore remnants
authorArnd Bergmann <arnd@arndb.de>
Mon, 10 Dec 2018 21:40:32 +0000 (22:40 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 12 Dec 2018 10:50:46 +0000 (11:50 +0100)
Nothing uses the semaphores any more in this driver, so remove
all references to that type.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723bs/core/rtw_pwrctrl.c
drivers/staging/rtl8723bs/include/osdep_service_linux.h
drivers/staging/rtl8723bs/include/rtw_io.h
drivers/staging/rtl8723bs/include/rtw_mp.h
drivers/staging/rtl8723bs/include/rtw_pwrctrl.h

index b7dd5fe..eb27522 100644 (file)
@@ -1126,7 +1126,6 @@ void rtw_init_pwrctrl_priv(struct adapter *padapter)
        struct pwrctrl_priv *pwrctrlpriv = adapter_to_pwrctl(padapter);
 
        mutex_init(&pwrctrlpriv->lock);
-       sema_init(&pwrctrlpriv->check_32k_lock, 1);
        pwrctrlpriv->rf_pwrstate = rf_on;
        pwrctrlpriv->ips_enter_cnts = 0;
        pwrctrlpriv->ips_leave_cnts = 0;
index 58d1e10..2f1b51e 100644 (file)
@@ -22,7 +22,6 @@
        #include <asm/byteorder.h>
        #include <linux/atomic.h>
        #include <linux/io.h>
-       #include <linux/semaphore.h>
        #include <linux/sem.h>
        #include <linux/sched.h>
        #include <linux/etherdevice.h>
@@ -41,7 +40,6 @@
         #include <net/ieee80211_radiotap.h>
        #include <net/cfg80211.h>
 
-       typedef struct  semaphore _sema;
        typedef spinlock_t      _lock;
        typedef struct mutex            _mutex;
        typedef struct timer_list _timer;
index 4f8be55..99d104b 100644 (file)
@@ -115,7 +115,6 @@ struct io_req {
        u32 command;
        u32 status;
        u8 *pbuf;
-       _sema   sema;
 
        void (*_async_io_callback)(struct adapter *padater, struct io_req *pio_req, u8 *cnxt);
        u8 *cnxt;
index 8390847..bb3970d 100644 (file)
@@ -62,7 +62,6 @@ typedef struct _MPT_CONTEXT
        /*  Indicate if the driver is unloading or unloaded. */
        bool                    bMptDrvUnload;
 
-       _sema                   MPh2c_Sema;
        _timer                  MPh2c_timeout_timer;
 /*  Event used to sync H2c for BT control */
 
index abf48ae..e2a4c68 100644 (file)
@@ -94,10 +94,6 @@ struct reportpwrstate_parm {
        unsigned short rsvd;
 };
 
-
-typedef _sema _pwrlock;
-
-
 #define LPS_DELAY_TIME 1*HZ /*  1 sec */
 
 #define EXE_PWR_NONE   0x01
@@ -209,7 +205,6 @@ typedef struct pno_scan_info
 struct pwrctrl_priv
 {
        struct mutex lock;
-       _pwrlock        check_32k_lock;
        volatile u8 rpwm; /*  requested power state for fw */
        volatile u8 cpwm; /*  fw current power state. updated when 1. read from HCPWM 2. driver lowers power level */
        volatile u8 tog; /*  toggling */