1. 01 9月, 2017 1 次提交
  2. 23 8月, 2016 1 次提交
  3. 24 6月, 2016 1 次提交
  4. 26 10月, 2015 2 次提交
  5. 20 10月, 2014 1 次提交
  6. 12 12月, 2013 1 次提交
  7. 06 10月, 2013 1 次提交
  8. 15 8月, 2013 1 次提交
    • J
      Input: tegra-kbc - simplify use of devm_ioremap_resource · eacd0c47
      Julia Lawall 提交于
      Remove unneeded error handling on the result of a call to
      platform_get_resource when the value is passed to devm_ioremap_resource.
      
      Move the call to platform_get_resource adjacent to the call to
      devm_ioremap_resource to make the connection between them more clear.
      
      A simplified version of the semantic patch that makes this change is as
      follows: (http://coccinelle.lip6.fr/)
      
      // <smpl>
      @@
      expression pdev,res,n,e,e1;
      expression ret != 0;
      identifier l;
      @@
      
      - res = platform_get_resource(pdev, IORESOURCE_MEM, n);
        ... when != res
      - if (res == NULL) { ... \(goto l;\|return ret;\) }
        ... when != res
      + res = platform_get_resource(pdev, IORESOURCE_MEM, n);
        e = devm_ioremap_resource(e1, res);
      // </smpl>
      Signed-off-by: NJulia Lawall <Julia.Lawall@lip6.fr>
      Signed-off-by: NDmitry Torokhov <dmitry.torokhov@gmail.com>
      eacd0c47
  9. 31 3月, 2013 1 次提交
  10. 18 3月, 2013 1 次提交
  11. 16 2月, 2013 1 次提交
  12. 29 1月, 2013 1 次提交
  13. 17 1月, 2013 4 次提交
  14. 24 11月, 2012 4 次提交
  15. 05 9月, 2012 1 次提交
  16. 13 6月, 2012 1 次提交
  17. 11 5月, 2012 2 次提交
  18. 27 3月, 2012 1 次提交
  19. 14 3月, 2012 1 次提交
  20. 03 2月, 2012 1 次提交
  21. 23 1月, 2012 1 次提交
  22. 30 12月, 2011 2 次提交
  23. 01 12月, 2011 1 次提交
  24. 10 9月, 2011 2 次提交
  25. 12 8月, 2011 1 次提交
  26. 31 7月, 2011 1 次提交
  27. 25 7月, 2011 1 次提交
  28. 12 5月, 2011 1 次提交
  29. 28 4月, 2011 1 次提交
  30. 19 2月, 2011 1 次提交