1. 15 5月, 2008 18 次提交
  2. 13 5月, 2008 17 次提交
  3. 10 5月, 2008 3 次提交
  4. 08 5月, 2008 2 次提交
    • J
      mac80211: fix wme code · 5c5e1289
      Johannes Berg 提交于
      In commit e100bb64 (mac80211:
      QoS related cleanups) I accidentally changed a variable from
      int to u16 causing a warning that a comparison for < 0 was always
      false. John thought this was a missing deletion of code and removed
      the warning by deleting the never executed branch of code in commit
      3df5ee60 (wireless: fix warning
      introduced by "mac80211: QoS related cleanups") but the problem really
      was my mistake of using a u16 variable for the queue variable when
      that variable can also contain an error code. This patch restores
      the original code and variable type.
      Signed-off-by: NJohannes Berg <johannes@sipsolutions.net>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      5c5e1289
    • J
      wireless: fix warning introduced by "mac80211: QoS related cleanups" · 3df5ee60
      John W. Linville 提交于
      net/mac80211/wme.c: In function ‘wme_qdiscop_enqueue’:
      net/mac80211/wme.c:219: warning: comparison is always false due to limited range of data type
      
      drivers/net/wireless/p54/p54common.c: In function ‘p54_conf_tx’:
      drivers/net/wireless/p54/p54common.c:947: warning: comparison is always false due to limited range of data type
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      3df5ee60