staging: rtl8712: Fixed CamelCase lockRxFF0Filter renamed to lock_rx_ff0_filter

In process of cleaning up struct _adapter in drv_types.h, lockRxFF0Filter
 is renamed to to lock_rx_ff0_filter to fix a checkpatch reported issue.

Signed-off-by: Deepak Mishra <linux.dkm@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Deepak Mishra 2019-06-12 10:21:30 +05:30 committed by Greg Kroah-Hartman
parent 12efdd8dc6
commit 6cc6677aee
3 changed files with 4 additions and 4 deletions

View File

@ -160,7 +160,7 @@ struct _adapter {
int pid; /*process id from UI*/
struct work_struct wkFilterRxFF0;
u8 blnEnableRxFF0Filter;
spinlock_t lockRxFF0Filter;
spinlock_t lock_rx_ff0_filter;
const struct firmware *fw;
struct usb_interface *pusb_intf;
struct mutex mutex_start;

View File

@ -571,7 +571,7 @@ static int r871xu_drv_init(struct usb_interface *pusb_intf,
/* step 6. Load the firmware asynchronously */
if (rtl871x_load_fw(padapter))
goto error;
spin_lock_init(&padapter->lockRxFF0Filter);
spin_lock_init(&padapter->lock_rx_ff0_filter);
mutex_init(&padapter->mutex_start);
return 0;
error:

View File

@ -102,9 +102,9 @@ void r8712_SetFilter(struct work_struct *work)
newvalue = oldvalue & 0xfe;
r8712_write8(adapter, 0x117, newvalue);
spin_lock_irqsave(&adapter->lockRxFF0Filter, irqL);
spin_lock_irqsave(&adapter->lock_rx_ff0_filter, irqL);
adapter->blnEnableRxFF0Filter = 1;
spin_unlock_irqrestore(&adapter->lockRxFF0Filter, irqL);
spin_unlock_irqrestore(&adapter->lock_rx_ff0_filter, irqL);
do {
msleep(100);
} while (adapter->blnEnableRxFF0Filter == 1);