1. 17 9月, 2017 1 次提交
  2. 15 9月, 2017 1 次提交
    • G
      firmware: delete in-kernel firmware · 5620a0d1
      Greg Kroah-Hartman 提交于
      The last firmware change for the in-kernel firmware source code was back
      in 2013.  Everyone has been relying on the out-of-tree linux-firmware
      package for a long long time.
      
      So let's drop it, it's baggage we don't need to keep dragging around
      (and having to fix random kbuild issues over time...)
      
      Cc: Kyle McMartin <kyle@kernel.org>
      Cc: Andrew Morton <akpm@linux-foundation.org>
      Cc: Michal Marek <mmarek@suse.com>
      Cc: Masahiro Yamada <yamada.masahiro@socionext.com>
      Acked-by: NDavid Woodhouse <dwmw2@infradead.org>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      5620a0d1
  3. 09 5月, 2017 1 次提交
  4. 02 10月, 2014 1 次提交
  5. 09 7月, 2014 1 次提交
  6. 15 5月, 2014 2 次提交
  7. 06 4月, 2013 1 次提交
  8. 23 3月, 2013 1 次提交
  9. 22 11月, 2012 1 次提交
  10. 17 8月, 2012 1 次提交
  11. 02 8月, 2012 1 次提交
  12. 16 5月, 2012 1 次提交
    • P
      tokenring: delete all remaining driver support · ee446fd5
      Paul Gortmaker 提交于
      This represents the mass deletion of the of the tokenring support.
      
      It gets rid of:
        - the net/tr.c which the drivers depended on
        - the drivers/net component
        - the Kbuild infrastructure around it
        - any tokenring related CONFIG_ settings in any defconfigs
        - the tokenring headers in the include/linux dir
        - the firmware associated with the tokenring drivers.
        - any associated token ring documentation.
      Signed-off-by: NPaul Gortmaker <paul.gortmaker@windriver.com>
      ee446fd5
  13. 16 1月, 2012 1 次提交
  14. 03 7月, 2011 1 次提交
  15. 01 4月, 2011 1 次提交
  16. 15 3月, 2011 1 次提交
  17. 01 1月, 2011 1 次提交
  18. 17 12月, 2010 1 次提交
  19. 12 10月, 2010 1 次提交
  20. 07 10月, 2010 3 次提交
  21. 17 8月, 2010 1 次提交
  22. 09 7月, 2010 1 次提交
  23. 26 6月, 2010 1 次提交
  24. 18 5月, 2010 1 次提交
  25. 18 2月, 2010 1 次提交
  26. 17 2月, 2010 1 次提交
  27. 07 1月, 2010 1 次提交
  28. 30 10月, 2009 1 次提交
  29. 15 10月, 2009 1 次提交
    • E
      bnx2x: Allowing 0 as initial fairness value · b015e3d1
      Eilon Greenstein 提交于
      Value of zero was used to disable the fairness mechanism. Though the code
      (driver and FW) allowed changing the value at run time, it did not allow to do
      that if the mechanism was disabled to begin with.
      Fixed the FW to allow turning on and off the mechanism at run time. Fixed the
      code to read the value from the chip at the right sequence.
      Without this fix, if the initial value was set to zero, traffic could not run on
      the interface.
      Signed-off-by: NEilon Greenstein <eilong@broadcom.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      b015e3d1
  30. 05 10月, 2009 1 次提交
  31. 15 9月, 2009 1 次提交
  32. 31 8月, 2009 1 次提交
    • B
      radeon: Use request_firmware() · 70967ab9
      Ben Hutchings 提交于
      Loosely based on a patch by
      Jaswinder Singh Rajput <jaswinderlinux@gmail.com>.
      
      KMS support by Dave Airlie <airlied@redhat.com>.
      
      For Radeon 100- to 500-series, firmware blobs look like:
          struct {
              __be32 datah;
              __be32 datal;
          } cp_ucode[256];
      
      For Radeon 600-series, there are two separate firmware blobs:
          __be32 me_ucode[PM4_UCODE_SIZE * 3];
          __be32 pfp_ucode[PFP_UCODE_SIZE];
      
      For Radeon 700-series, likewise:
          __be32 me_ucode[R700_PM4_UCODE_SIZE];
          __be32 pfp_ucode[R700_PFP_UCODE_SIZE];
      Signed-off-by: NBen Hutchings <ben@decadent.org.uk>
      Signed-off-by: NDave Airlie <airlied@redhat.com>
      70967ab9
  33. 29 8月, 2009 1 次提交
  34. 27 8月, 2009 2 次提交
  35. 13 8月, 2009 1 次提交
    • E
      bnx2x: Using the new FW · ca00392c
      Eilon Greenstein 提交于
      The new FW improves the packets per second rate. It required a lot of change in
      the FW which implies many changes in the driver to support it. It is now also
      possible for the driver to use a separate MSI-X vector for Rx and Tx - this also
      add some to the complicity of this change.
      
      All things said - after this patch, practically all performance matrixes show
      improvement.
      Though Vladislav Zolotarov is not signed on this patch, he did most of the job
      and deserves credit for that.
      Signed-off-by: NEilon Greenstein <eilong@broadcom.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      ca00392c
  36. 09 7月, 2009 1 次提交