Skip to content

Commit

Permalink
rndis_wlan: remove unneeded variables
Browse files Browse the repository at this point in the history
We never use the "len" variable.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Acked-by: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
  • Loading branch information
Dan Carpenter authored and John W. Linville committed Mar 5, 2012
1 parent 41eedf3 commit b26e395
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions drivers/net/wireless/rndis_wlan.c
Original file line number Diff line number Diff line change
Expand Up @@ -1790,9 +1790,8 @@ static struct ndis_80211_pmkid *remove_pmkid(struct usbnet *usbdev,
struct cfg80211_pmksa *pmksa,
int max_pmkids)
{
int i, len, count, newlen, err;
int i, count, newlen, err;

len = le32_to_cpu(pmkids->length);
count = le32_to_cpu(pmkids->bssid_info_count);

if (count > max_pmkids)
Expand Down Expand Up @@ -1831,9 +1830,8 @@ static struct ndis_80211_pmkid *update_pmkid(struct usbnet *usbdev,
struct cfg80211_pmksa *pmksa,
int max_pmkids)
{
int i, err, len, count, newlen;
int i, err, count, newlen;

len = le32_to_cpu(pmkids->length);
count = le32_to_cpu(pmkids->bssid_info_count);

if (count > max_pmkids)
Expand Down

0 comments on commit b26e395

Please sign in to comment.