1. 06 8月, 2009 1 次提交
  2. 28 7月, 2009 3 次提交
  3. 20 7月, 2009 1 次提交
  4. 18 6月, 2009 2 次提交
  5. 10 5月, 2009 1 次提交
  6. 07 5月, 2009 3 次提交
  7. 29 4月, 2009 2 次提交
  8. 09 4月, 2009 6 次提交
  9. 18 3月, 2009 1 次提交
    • D
      netxen: fix firmware download warnings · bd257ed9
      Dhananjay Phadke 提交于
      Fix following warnings, by using integer firmware types.
      
      drivers/net/netxen/netxen_nic_hw.c: In function 'netxen_load_firmware':
      drivers/net/netxen/netxen_nic_hw.c:1146: warning: comparison with string literal results in unspecified behavior
      drivers/net/netxen/netxen_nic_hw.c:1146: warning: comparison with string literal results in unspecified behavior
      drivers/net/netxen/netxen_nic_hw.c:1146: warning: comparison with string literal results in unspecified behavior
      drivers/net/netxen/netxen_nic_hw.c:1159: warning: comparison with string literal results in unspecified behavior
      drivers/net/netxen/netxen_nic_hw.c:1159: warning: comparison with string literal results in unspecified behavior
      drivers/net/netxen/netxen_nic_hw.c:1159: warning: comparison with string literal results in unspecified behavior
      Reported-by: NStephen Rothwell <sfr@canb.auug.org.au>
      Signed-off-by: NDhananjay Phadke <dhananjay@netxen.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      bd257ed9
  10. 15 3月, 2009 5 次提交
  11. 10 3月, 2009 1 次提交
  12. 03 3月, 2009 1 次提交
  13. 27 2月, 2009 1 次提交
  14. 25 2月, 2009 2 次提交
  15. 18 2月, 2009 2 次提交
  16. 15 1月, 2009 6 次提交
  17. 26 12月, 2008 1 次提交
  18. 13 11月, 2008 1 次提交
    • W
      netdevice: safe convert to netdev_priv() #part-2 · 4cf1653a
      Wang Chen 提交于
      We have some reasons to kill netdev->priv:
      1. netdev->priv is equal to netdev_priv().
      2. netdev_priv() wraps the calculation of netdev->priv's offset, obviously
         netdev_priv() is more flexible than netdev->priv.
      But we cann't kill netdev->priv, because so many drivers reference to it
      directly.
      
      This patch is a safe convert for netdev->priv to netdev_priv(netdev).
      Since all of the netdev->priv is only for read.
      But it is too big to be sent in one mail.
      I split it to 4 parts and make every part smaller than 100,000 bytes,
      which is max size allowed by vger.
      Signed-off-by: NWang Chen <wangchen@cn.fujitsu.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      4cf1653a