linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] [wireless/iwlwifi/iwl-4965.c] add parentheses
@ 2008-02-02 19:48 Roel Kluin
  2008-02-02 20:40 ` Tomas Winkler
  0 siblings, 1 reply; 2+ messages in thread
From: Roel Kluin @ 2008-02-02 19:48 UTC (permalink / raw)
  To: yi.zhu, reinette.chatre; +Cc: linux-wireless, ipw3945-devel, lkml

'!' has a higher priority than '&': bitanding has no effect.

Signed-off-by: Roel Kluin <12o3l@tiscali.nl>
---
diff --git a/drivers/net/wireless/iwlwifi/iwl-4965.c b/drivers/net/wireless/iwlwifi/iwl-4965.c
index 569347f..2439868 100644
--- a/drivers/net/wireless/iwlwifi/iwl-4965.c
+++ b/drivers/net/wireless/iwlwifi/iwl-4965.c
@@ -4589,7 +4589,7 @@ static u8 iwl4965_is_fat_tx_allowed(struct iwl4965_priv *priv,
 
 	if (sta_ht_inf) {
 		if ((!sta_ht_inf->ht_supported) ||
-		   (!sta_ht_inf->cap & IEEE80211_HT_CAP_SUP_WIDTH))
+		   (!(sta_ht_inf->cap & IEEE80211_HT_CAP_SUP_WIDTH)))
 			return 0;
 	}
 

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] [wireless/iwlwifi/iwl-4965.c] add parentheses
  2008-02-02 19:48 [PATCH] [wireless/iwlwifi/iwl-4965.c] add parentheses Roel Kluin
@ 2008-02-02 20:40 ` Tomas Winkler
  0 siblings, 0 replies; 2+ messages in thread
From: Tomas Winkler @ 2008-02-02 20:40 UTC (permalink / raw)
  To: Roel Kluin
  Cc: yi.zhu, reinette.chatre, linux-wireless, ipw3945-devel, lkml,
	Ron Rindjunsky

On Feb 2, 2008 9:48 PM, Roel Kluin <12o3l@tiscali.nl> wrote:
> '!' has a higher priority than '&': bitanding has no effect.
>
> Signed-off-by: Roel Kluin <12o3l@tiscali.nl>
> ---
> diff --git a/drivers/net/wireless/iwlwifi/iwl-4965.c b/drivers/net/wireless/iwlwifi/iwl-4965.c
> index 569347f..2439868 100644
> --- a/drivers/net/wireless/iwlwifi/iwl-4965.c
> +++ b/drivers/net/wireless/iwlwifi/iwl-4965.c
> @@ -4589,7 +4589,7 @@ static u8 iwl4965_is_fat_tx_allowed(struct iwl4965_priv *priv,
>
>         if (sta_ht_inf) {
>                 if ((!sta_ht_inf->ht_supported) ||
> -                  (!sta_ht_inf->cap & IEEE80211_HT_CAP_SUP_WIDTH))
> +                  (!(sta_ht_inf->cap & IEEE80211_HT_CAP_SUP_WIDTH)))
>                         return 0;
>         }
>
> -
> To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>

ACK

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2008-02-02 20:40 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-02-02 19:48 [PATCH] [wireless/iwlwifi/iwl-4965.c] add parentheses Roel Kluin
2008-02-02 20:40 ` Tomas Winkler

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).