1. 23 9月, 2015 15 次提交
  2. 23 6月, 2015 1 次提交
    • P
      drivers/net: remove all references to obsolete Ethernet-HOWTO · 138b15ed
      Paul Gortmaker 提交于
      This howto made sense in the 1990s when users had to manually configure
      ISA cards with jumpers or vendor utilities, but with the implementation
      of PCI it became increasingly less and less relevant, to the point where
      it has been well over a decade since I last updated it.  And there is
      no value in anyone else taking over updating it either.
      
      However the references to it continue to spread as boiler plate text
      from one Kconfig file into the next.  We are not doing end users any
      favours by pointing them at this old document, so lets kill it with
      fire, once and for all, to hopefully stop any further spread.
      
      No code is changed in this commit, just Kconfig help text.
      Signed-off-by: NPaul Gortmaker <paul.gortmaker@windriver.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      138b15ed
  3. 03 3月, 2015 1 次提交
  4. 16 2月, 2015 1 次提交
  5. 06 2月, 2015 1 次提交
  6. 30 9月, 2014 5 次提交
  7. 13 8月, 2014 1 次提交
  8. 12 8月, 2014 1 次提交
  9. 16 7月, 2014 1 次提交
    • T
      net: set name_assign_type in alloc_netdev() · c835a677
      Tom Gundersen 提交于
      Extend alloc_netdev{,_mq{,s}}() to take name_assign_type as argument, and convert
      all users to pass NET_NAME_UNKNOWN.
      
      Coccinelle patch:
      
      @@
      expression sizeof_priv, name, setup, txqs, rxqs, count;
      @@
      
      (
      -alloc_netdev_mqs(sizeof_priv, name, setup, txqs, rxqs)
      +alloc_netdev_mqs(sizeof_priv, name, NET_NAME_UNKNOWN, setup, txqs, rxqs)
      |
      -alloc_netdev_mq(sizeof_priv, name, setup, count)
      +alloc_netdev_mq(sizeof_priv, name, NET_NAME_UNKNOWN, setup, count)
      |
      -alloc_netdev(sizeof_priv, name, setup)
      +alloc_netdev(sizeof_priv, name, NET_NAME_UNKNOWN, setup)
      )
      
      v9: move comments here from the wrong commit
      Signed-off-by: NTom Gundersen <teg@jklm.no>
      Reviewed-by: NDavid Herrmann <dh.herrmann@gmail.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      c835a677
  10. 17 1月, 2014 1 次提交
  11. 20 7月, 2013 1 次提交
  12. 16 3月, 2013 1 次提交
  13. 04 12月, 2012 1 次提交
  14. 18 4月, 2012 1 次提交
  15. 29 3月, 2012 1 次提交
  16. 27 11月, 2011 1 次提交
  17. 27 8月, 2011 2 次提交
    • J
      drivers/net: Kconfig & Makefile cleanup · 88491d81
      Jeff Kirsher 提交于
      The is does a general cleanup of the drivers/net/ Kconfig and
      Makefile.  This patch create a "core" option and places all
      the networking core drivers into this option (default is yes
      for this option).  In addition, it alphabitizes the Kconfig
      driver options.
      
      As a side cleanup, found that the arcnet, token ring, and PHY
      Kconfig options were a tri-state option and should have been
      a bool option.
      Signed-off-by: NJeff Kirsher <jeffrey.t.kirsher@intel.com>
      88491d81
    • J
      com20020_cs: Move the PCMCIA Arcnet driver · 330278cd
      Jeff Kirsher 提交于
      Move the COM20020 PCMICA Arcnet driver into drivers/net/arcnet/ with
      the other Arcnet drivers.  Made the necessary Kconfig and Makefile
      changes as well.
      
      Since this was the "last" PCMCIA driver in drivers/net/pcmcia/, this patch
      also cleans up the references to drivers/net/pcmcia.
      
      CC: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
      Signed-off-by: NJeff Kirsher <jeffrey.t.kirsher@intel.com>
      330278cd
  18. 18 8月, 2011 1 次提交
  19. 07 6月, 2011 1 次提交
  20. 19 7月, 2010 1 次提交
  21. 31 5月, 2010 1 次提交