1. 14 5月, 2015 1 次提交
  2. 11 3月, 2015 1 次提交
  3. 15 1月, 2015 3 次提交
  4. 23 12月, 2014 1 次提交
  5. 04 11月, 2014 2 次提交
  6. 21 10月, 2014 1 次提交
  7. 21 8月, 2014 1 次提交
  8. 15 5月, 2014 2 次提交
  9. 22 4月, 2014 2 次提交
  10. 19 12月, 2013 1 次提交
  11. 07 12月, 2013 1 次提交
  12. 05 12月, 2013 1 次提交
  13. 01 10月, 2013 1 次提交
  14. 27 9月, 2013 1 次提交
  15. 26 9月, 2013 1 次提交
  16. 17 9月, 2013 1 次提交
  17. 09 8月, 2013 1 次提交
  18. 02 8月, 2013 1 次提交
    • J
      usb: dwc3: pci: add CONFIG_PM_SLEEP to suspend/resume functions · fb74d282
      Jingoo Han 提交于
      Add CONFIG_PM_SLEEP to suspend/resume functions to fix the following
      build warning when CONFIG_PM_SLEEP is not selected. This is because
      sleep PM callbacks defined by SET_SYSTEM_SLEEP_PM_OPS are only used
      when the CONFIG_PM_SLEEP is enabled. Unnecessary CONFIG_PM ifdefs
      are removed.
      
      drivers/usb/dwc3/dwc3-pci.c:215:12: warning: 'dwc3_pci_suspend' defined but not used [-Wunused-function]
      drivers/usb/dwc3/dwc3-pci.c:224:12: warning: 'dwc3_pci_resume' defined but not used [-Wunused-function]
      Signed-off-by: NJingoo Han <jg1.han@samsung.com>
      Signed-off-by: NFelipe Balbi <balbi@ti.com>
      fb74d282
  19. 29 7月, 2013 1 次提交
    • F
      usb: dwc3: switch to GPL v2 only · 5945f789
      Felipe Balbi 提交于
      This is a Linux-only driver which makes use
      of GPL-only symbols. It makes no sense to
      maintain Dual BSD/GPL licensing for this driver.
      
      Considering that the amount of work to use this
      driver in any different operating system would likely
      be as large as developing the driver from scratch and
      considering that we depend on GPL-only symbols, we
      will switch over to a GPL v2-only license.
      
      Cc: Anton Tikhomirov <av.tikhomirov@samsung.com>
      Acked-by: NSebastian Andrzej Siewior <bigeasy@linutronix.de>
      Signed-off-by: NFelipe Balbi <balbi@ti.com>
      5945f789
  20. 01 6月, 2013 1 次提交
  21. 29 5月, 2013 1 次提交
  22. 18 3月, 2013 1 次提交
  23. 04 3月, 2013 1 次提交
  24. 22 11月, 2012 3 次提交
  25. 31 10月, 2012 1 次提交
  26. 11 9月, 2012 1 次提交
  27. 14 3月, 2012 1 次提交
  28. 02 3月, 2012 3 次提交
  29. 10 2月, 2012 1 次提交
  30. 05 1月, 2012 1 次提交
    • J
      drivers/usb/dwc3/dwc3-pci.c: introduce missing kfree · 5632c827
      Julia Lawall 提交于
      Glue needs to be freed on exiting the function in an error case.
      Furthermore, pci, which is the first argument to the probe function should
      not be freed before leaveing the function, as it is reused at the call
      site.  So the free of pci is changed to free glue instead.
      
      A simplified version of the semantic match that finds the problem is as
      follows: (http://coccinelle.lip6.fr)
      
      // <smpl>
      @r exists@
      local idexpression x;
      statement S;
      identifier f1;
      position p1,p2;
      expression *ptr != NULL;
      @@
      
      x@p1 = \(kmalloc\|kzalloc\|kcalloc\)(...);
      ...
      if (x == NULL) S
      <... when != x
           when != if (...) { <+...x...+> }
      x->f1
      ...>
      (
       return \(0\|<+...x...+>\|ptr\);
      |
       return@p2 ...;
      )
      
      @script:python@
      p1 << r.p1;
      p2 << r.p2;
      @@
      
      print "* file: %s kmalloc %s return %s" % (p1[0].file,p1[0].line,p2[0].line)
      // </smpl>
      Signed-off-by: NJulia Lawall <julia@diku.dk>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
      5632c827
  31. 12 12月, 2011 1 次提交
    • F
      usb: dwc3: move dwc3 device ID bitmap to core.c · 8300dd23
      Felipe Balbi 提交于
      if we want to support situations where we have
      both SoC and PCIe versions of the IP on the same
      platform, we need to have sequential numbers between
      them, otherwise we will still have name collisions.
      
      Because of that, we need to move dwc3_get/put_device_id()
      to core.c and export that symbol to be used by glue
      layers.
      Signed-off-by: NFelipe Balbi <balbi@ti.com>
      8300dd23