1. 08 5月, 2015 1 次提交
  2. 19 3月, 2015 2 次提交
  3. 17 3月, 2015 1 次提交
  4. 22 12月, 2014 1 次提交
  5. 06 11月, 2014 1 次提交
  6. 04 8月, 2014 2 次提交
  7. 28 1月, 2014 1 次提交
  8. 19 12月, 2013 1 次提交
  9. 04 12月, 2013 1 次提交
  10. 15 11月, 2013 1 次提交
  11. 14 11月, 2013 1 次提交
  12. 31 10月, 2013 1 次提交
  13. 25 10月, 2013 1 次提交
  14. 13 10月, 2013 1 次提交
  15. 02 9月, 2013 8 次提交
  16. 23 8月, 2013 2 次提交
  17. 05 7月, 2013 1 次提交
  18. 13 1月, 2013 1 次提交
  19. 08 1月, 2013 1 次提交
  20. 22 8月, 2012 1 次提交
    • J
      drivers/dma/amba-pl08x.c: fix error return code · 983d7beb
      Julia Lawall 提交于
      Convert a 0 error return code to a negative one, as returned elsewhere in the
      function.
      
      A simplified version of the semantic match that finds this problem is as
      follows: (http://coccinelle.lip6.fr/)
      
      // <smpl>
      @@
      identifier ret;
      expression e,e1,e2,e3,e4,x;
      @@
      
      (
      if (\(ret != 0\|ret < 0\) || ...) { ... return ...; }
      |
      ret = 0
      )
      ... when != ret = e1
      *x = \(kmalloc\|kzalloc\|kcalloc\|devm_kzalloc\|ioremap\|ioremap_nocache\|devm_ioremap\|devm_ioremap_nocache\)(...);
      ... when != x = e2
          when != ret = e3
      *if (x == NULL || ...)
      {
        ... when != ret = e4
      *  return ret;
      }
      // </smpl>
      Signed-off-by: NJulia Lawall <Julia.Lawall@lip6.fr>
      Signed-off-by: NVinod Koul <vinod.koul@linux.intel.com>
      983d7beb
  21. 01 7月, 2012 10 次提交