Commit eb986df1 authored by Peter Huewe's avatar Peter Huewe Committed by Greg Kroah-Hartman

staging/gdm72xx: Remove unused variable in gdm_qos.c

len is never read after assignment, thus can be removed.
Signed-off-by: default avatarPeter Huewe <peterhuewe@gmx.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent a6000538
...@@ -337,7 +337,6 @@ void gdm_recv_qos_hci_packet(void *nic_ptr, u8 *buf, int size) ...@@ -337,7 +337,6 @@ void gdm_recv_qos_hci_packet(void *nic_ptr, u8 *buf, int size)
struct nic *nic = nic_ptr; struct nic *nic = nic_ptr;
u32 i, SFID, index, pos; u32 i, SFID, index, pos;
u8 subCmdEvt; u8 subCmdEvt;
u8 len;
struct qos_cb_s *qcb = &nic->qos; struct qos_cb_s *qcb = &nic->qos;
struct qos_entry_s *entry, *n; struct qos_entry_s *entry, *n;
struct list_head send_list; struct list_head send_list;
...@@ -347,8 +346,6 @@ void gdm_recv_qos_hci_packet(void *nic_ptr, u8 *buf, int size) ...@@ -347,8 +346,6 @@ void gdm_recv_qos_hci_packet(void *nic_ptr, u8 *buf, int size)
subCmdEvt = (u8)buf[4]; subCmdEvt = (u8)buf[4];
if (subCmdEvt == QOS_REPORT) { if (subCmdEvt == QOS_REPORT) {
len = (u8)buf[5];
spin_lock_irqsave(&qcb->qos_lock, flags); spin_lock_irqsave(&qcb->qos_lock, flags);
for (i = 0; i < qcb->qos_list_cnt; i++) { for (i = 0; i < qcb->qos_list_cnt; i++) {
SFID = ((buf[(i*5)+6]<<24)&0xff000000); SFID = ((buf[(i*5)+6]<<24)&0xff000000);
...@@ -369,8 +366,7 @@ void gdm_recv_qos_hci_packet(void *nic_ptr, u8 *buf, int size) ...@@ -369,8 +366,7 @@ void gdm_recv_qos_hci_packet(void *nic_ptr, u8 *buf, int size)
send_qos_list(nic, &send_list); send_qos_list(nic, &send_list);
return; return;
} else if (subCmdEvt == QOS_ADD) { } else if (subCmdEvt == QOS_ADD) {
pos = 5; pos = 6;
len = (u8)buf[pos++];
SFID = ((buf[pos++]<<24)&0xff000000); SFID = ((buf[pos++]<<24)&0xff000000);
SFID += ((buf[pos++]<<16)&0xff0000); SFID += ((buf[pos++]<<16)&0xff0000);
...@@ -424,8 +420,7 @@ void gdm_recv_qos_hci_packet(void *nic_ptr, u8 *buf, int size) ...@@ -424,8 +420,7 @@ void gdm_recv_qos_hci_packet(void *nic_ptr, u8 *buf, int size)
qcb->qos_limit_size = 254/qcb->qos_list_cnt; qcb->qos_limit_size = 254/qcb->qos_list_cnt;
spin_unlock_irqrestore(&qcb->qos_lock, flags); spin_unlock_irqrestore(&qcb->qos_lock, flags);
} else if (subCmdEvt == QOS_CHANGE_DEL) { } else if (subCmdEvt == QOS_CHANGE_DEL) {
pos = 5; pos = 6;
len = (u8)buf[pos++];
SFID = ((buf[pos++]<<24)&0xff000000); SFID = ((buf[pos++]<<24)&0xff000000);
SFID += ((buf[pos++]<<16)&0xff0000); SFID += ((buf[pos++]<<16)&0xff0000);
SFID += ((buf[pos++]<<8)&0xff00); SFID += ((buf[pos++]<<8)&0xff00);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment