1. 23 2月, 2010 1 次提交
  2. 13 2月, 2010 1 次提交
    • J
      drivers/net/atl1e: Use netdev_printk helpers · ba211e3e
      Joe Perches 提交于
      Logging messages sometimes had duplicated "ATL1E" output.
      
      For instance:
      ATL1E 0000:03:00.0: ATL1E: eth0 NIC Link is Up<100 Mbps Full Duplex>
      is now:
      ATL1E 0000:03:00.0: eth0: NIC Link is Up <100 Mbps Full Duplex>
      
      Add some consistency to logging messages
      Add some missing \n's to logging messages
      Miscellaneous typo spelling corrections
      Change atl1e_validate_option argument from pdev to adapter
      Signed-off-by: NJoe Perches <joe@perches.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      ba211e3e
  3. 08 1月, 2010 1 次提交
  4. 07 1月, 2010 1 次提交
  5. 03 12月, 2009 3 次提交
  6. 02 12月, 2009 1 次提交
  7. 19 11月, 2009 1 次提交
  8. 14 10月, 2009 1 次提交
  9. 18 9月, 2009 1 次提交
  10. 04 9月, 2009 1 次提交
  11. 02 9月, 2009 1 次提交
  12. 01 9月, 2009 1 次提交
  13. 02 8月, 2009 1 次提交
  14. 25 6月, 2009 1 次提交
  15. 12 6月, 2009 1 次提交
  16. 30 5月, 2009 1 次提交
  17. 29 5月, 2009 1 次提交
  18. 26 5月, 2009 1 次提交
  19. 14 4月, 2009 1 次提交
  20. 07 4月, 2009 1 次提交
  21. 18 2月, 2009 1 次提交
    • H
      drivers/net/atl1e: fix sparse warnings: fix signedness · fd8ef49e
      Hannes Eder 提交于
      Fix this sparse warnings:
        drivers/net/atl1e/atl1e_main.c:716:39: warning: incorrect type in argument 2 (different signedness)
        drivers/net/atl1e/atl1e_param.c:57:1: warning: incorrect type in initializer (different signedness)
        drivers/net/atl1e/atl1e_param.c:68:1: warning: incorrect type in initializer (different signedness)
        drivers/net/atl1e/atl1e_param.c:81:1: warning: incorrect type in initializer (different signedness)
        drivers/net/atl1e/atl1e_param.c:92:1: warning: incorrect type in initializer (different signedness)
      Signed-off-by: NHannes Eder <hannes@hanneseder.net>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      fd8ef49e
  22. 22 1月, 2009 1 次提交
  23. 27 12月, 2008 1 次提交
  24. 23 12月, 2008 1 次提交
  25. 21 11月, 2008 1 次提交
  26. 20 11月, 2008 1 次提交
  27. 15 11月, 2008 1 次提交
  28. 13 11月, 2008 1 次提交
    • W
      netdevice: safe convert to netdev_priv() #part-1 · 454d7c9b
      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>
      454d7c9b
  29. 05 11月, 2008 1 次提交
  30. 04 11月, 2008 1 次提交
  31. 25 9月, 2008 2 次提交
  32. 27 8月, 2008 1 次提交
  33. 14 8月, 2008 2 次提交
  34. 10 8月, 2008 1 次提交
    • A
      uninline atl1e_setup_mac_ctrl() · e6ca2328
      Adrian Bunk 提交于
      There doesn't seem to be a compelling reason why atl1e_setup_mac_ctrl()
      is marked as "inline":
      
      It's not used in any place where speed would matter much, and as long as
      it has only one caller non-ancient gcc versions anyway inline it
      automatically.
      
      This patch fixes the following compile error with gcc 3.4:
      
          CC      drivers/net/atl1e/atl1e_main.o
        atl1e_main.c: In function `atl1e_check_link':
        atl1e_main.c:50: sorry, unimplemented: inlining failed in call to
        atl1e_main.c:196: sorry, unimplemented: called from here
      Reported-by: NAdrian Bunk <bunk@kernel.org>
      Signed-off-by: NAdrian Bunk <bunk@kernel.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      e6ca2328
  35. 23 7月, 2008 2 次提交