staging: vt6656: Correct a few assignments to be compares in iwctl_siwencodeext()
authorJesper Juhl <jj@chaosbits.net>
Fri, 22 Jun 2012 00:28:12 +0000 (02:28 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 23 Jun 2012 04:04:05 +0000 (21:04 -0700)
commit70b3fd34a9b2e06b2702d691d406ef2ec1d2f0df
tree5718ee2766567c93698e1649d38f7b7071dc4644
parentb15297e912afb6a2a5bf592bb006fd705c12ab1c
staging: vt6656: Correct a few assignments to be compares in iwctl_siwencodeext()

The result of "foo = bar" is true, so in statements such as
  ...
  if((pDevice->bwextstep0 = TRUE)&&(param->u.wpa_key.key_index ==1))
  ...
an assignment  is most likely not what was intended - a comparison was. As in:
  ...
  if ((pDevice->bwextstep0 == TRUE) && (param->u.wpa_key.key_index == 1))
  ...

There are a 3 such mistakes in the iwctl_siwencodeext() function.
This patch fixes them all.

Signed-off-by: Jesper Juhl <jj@chaosbits.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vt6656/iwctl.c