1. 09 4月, 2015 1 次提交
  2. 01 11月, 2014 1 次提交
  3. 20 10月, 2014 1 次提交
  4. 13 8月, 2014 1 次提交
  5. 22 10月, 2013 1 次提交
  6. 03 10月, 2013 1 次提交
  7. 04 9月, 2013 2 次提交
  8. 22 8月, 2013 1 次提交
  9. 21 8月, 2013 1 次提交
  10. 26 5月, 2013 1 次提交
  11. 15 3月, 2013 1 次提交
  12. 08 12月, 2012 1 次提交
  13. 04 12月, 2012 1 次提交
  14. 11 7月, 2012 1 次提交
  15. 07 4月, 2012 1 次提交
  16. 29 3月, 2012 1 次提交
  17. 09 2月, 2012 1 次提交
  18. 20 12月, 2011 1 次提交
  19. 14 11月, 2011 1 次提交
  20. 09 11月, 2011 1 次提交
  21. 19 10月, 2011 1 次提交
  22. 23 9月, 2011 1 次提交
  23. 18 8月, 2011 1 次提交
  24. 11 8月, 2011 1 次提交
    • J
      cassini/niu/sun*: Move the Sun drivers · e689cf4a
      Jeff Kirsher 提交于
      Moves the Sun drivers into drivers/net/ethernet/sun/ and make
      the necessary Kconfig and Makefile changes.
      
      Oliver Hartkopp <socketcan@hartkopp.net> suggested removing the
      sun* prefix on the driver names.  This type of change I will
      leave up to the driver maintainers.
      
      CC: Sam Creasey <sammy@sammy.net>
      CC: Adrian Sun <asun@darksunrising.com>
      CC: Benjamin Herrenscmidt <benh@kernel.crashing.org>
      Signed-off-by: NJeff Kirsher <jeffrey.t.kirsher@intel.com>
      e689cf4a
  25. 09 7月, 2011 1 次提交
  26. 19 5月, 2011 1 次提交
    • G
      drivercore: revert addition of of_match to struct device · b1608d69
      Grant Likely 提交于
      Commit b826291c, "drivercore/dt: add a match table pointer to struct
      device" added an of_match pointer to struct device to cache the
      of_match_table entry discovered at driver match time.  This was unsafe
      because matching is not an atomic operation with probing a driver.  If
      two or more drivers are attempted to be matched to a driver at the
      same time, then the cached matching entry pointer could get
      overwritten.
      
      This patch reverts the of_match cache pointer and reworks all users to
      call of_match_device() directly instead.
      Signed-off-by: NGrant Likely <grant.likely@secretlab.ca>
      b1608d69
  27. 30 4月, 2011 2 次提交
  28. 02 4月, 2011 1 次提交
  29. 01 3月, 2011 1 次提交
  30. 17 12月, 2010 1 次提交
  31. 27 9月, 2010 1 次提交
  32. 26 8月, 2010 1 次提交
  33. 19 8月, 2010 1 次提交
  34. 06 8月, 2010 1 次提交
  35. 24 7月, 2010 1 次提交
  36. 29 6月, 2010 1 次提交
    • G
      sparc/of: Move of_device fields into struct pdev_archdata · 1636f8ac
      Grant Likely 提交于
      This patch moves SPARC architecture specific data members out of
      struct of_device and into the pdev_archdata structure.  The reason
      for this change is to unify the struct of_device definition amongst
      all the architectures.  It also remvoes the .sysdata, .slot, .portid
      and .clock_freq properties because they aren't actually used by
      anything.
      
      A subsequent patch will replace struct of_device entirely with struct
      platform_device and the of_platform support code will share common
      routines with the platform bus (but the bus instances themselves can
      remain separate).
      
      This patch also adds 'struct resources *resource' and num_resources
      to match the fields defined in struct platform_device.  After this
      change, 'struct platform_device' can be used as a drop-in replacement
      for 'struct of_platform'.
      
      This change is in preparation for merging the of_platform_bus_type
      with the platform_bus_type.
      Signed-off-by: NGrant Likely <grant.likely@secretlab.ca>
      Acked-by: NDavid S. Miller <davem@davemloft.net>
      Cc: Stephen Rothwell <sfr@canb.auug.org.au>
      1636f8ac
  37. 22 5月, 2010 1 次提交
    • G
      of: Remove duplicate fields from of_platform_driver · 4018294b
      Grant Likely 提交于
      .name, .match_table and .owner are duplicated in both of_platform_driver
      and device_driver.  This patch is a removes the extra copies from struct
      of_platform_driver and converts all users to the device_driver members.
      
      This patch is a pretty mechanical change.  The usage model doesn't change
      and if any drivers have been missed, or if anything has been fixed up
      incorrectly, then it will fail with a compile time error, and the fixup
      will be trivial.  This patch looks big and scary because it touches so
      many files, but it should be pretty safe.
      Signed-off-by: NGrant Likely <grant.likely@secretlab.ca>
      Acked-by: NSean MacLennan <smaclennan@pikatech.com>
      4018294b
  38. 19 5月, 2010 1 次提交