1. 19 8月, 2020 3 次提交
  2. 15 7月, 2020 1 次提交
  3. 07 7月, 2020 1 次提交
  4. 06 7月, 2020 1 次提交
  5. 04 7月, 2020 1 次提交
  6. 02 7月, 2020 2 次提交
  7. 17 6月, 2020 1 次提交
  8. 16 6月, 2020 1 次提交
  9. 09 5月, 2020 1 次提交
  10. 15 4月, 2020 1 次提交
  11. 17 3月, 2020 1 次提交
  12. 02 3月, 2020 1 次提交
  13. 11 2月, 2020 1 次提交
  14. 24 1月, 2020 1 次提交
  15. 13 1月, 2020 1 次提交
  16. 10 1月, 2020 1 次提交
  17. 08 1月, 2020 1 次提交
  18. 17 12月, 2019 1 次提交
  19. 21 11月, 2019 1 次提交
  20. 30 8月, 2019 1 次提交
  21. 28 8月, 2019 3 次提交
  22. 09 8月, 2019 1 次提交
  23. 02 7月, 2019 1 次提交
  24. 27 6月, 2019 1 次提交
  25. 07 6月, 2019 1 次提交
  26. 22 5月, 2019 2 次提交
  27. 21 5月, 2019 1 次提交
  28. 20 5月, 2019 1 次提交
  29. 13 5月, 2019 1 次提交
  30. 15 4月, 2019 1 次提交
  31. 25 3月, 2019 1 次提交
  32. 13 3月, 2019 1 次提交
    • A
      regulator: da903x: don't build with clang · 0077aaae
      Arnd Bergmann 提交于
      The da903x driver produces an annoying false-positive warning
      when built with clang:
      
      drivers/regulator/da903x.c:395:2: error: division by zero is undefined [-Werror,-Wdivision-by-zero]
              DA9030_LDO(13, 2100, 2100, 0, INVAL, 0, 0, RCTL11, 3), /* fixed @2.1V */
              ^                          ~
      drivers/regulator/da903x.c:359:2: note: expanded from macro 'DA9030_LDO'
              DA903x_LDO(DA9030, _id, min, max, step, vreg, shift, nbits, ereg, ebit)
              ^                                 ~~~~
      drivers/regulator/da903x.c:320:39: note: expanded from macro 'DA903x_LDO'
                      .n_voltages = (step) ? ((max - min) / step + 1) : 1,    \
                                                          ^ ~~~~
      drivers/regulator/da903x.c:415:2: error: division by zero is undefined [-Werror,-Wdivision-by-zero]
              DA9034_LDO(5, 3100, 3100, 0, INVAL, 0, 0, OVER3, 7), /* fixed @3.1V */
              ^                         ~
      drivers/regulator/da903x.c:356:2: note: expanded from macro 'DA9034_LDO'
              DA903x_LDO(DA9034, _id, min, max, step, vreg, shift, nbits, ereg, ebit)
              ^                                 ~~~~
      drivers/regulator/da903x.c:320:39: note: expanded from macro 'DA903x_LDO'
                      .n_voltages = (step) ? ((max - min) / step + 1) : 1,    \
                                                          ^ ~~~~
      
      I already reported this as a bug in clang, but it may take a
      while to fix it. As I have not been able to come up with any
      reasonable workaround, I would just disable compilation here.
      
      Link: https://bugs.llvm.org/show_bug.cgi?id=38789Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      Reviewed-by: NNick Desaulniers <ndesaulniers@google.com>
      Signed-off-by: NMark Brown <broonie@kernel.org>
      0077aaae
  33. 29 1月, 2019 1 次提交
  34. 23 1月, 2019 1 次提交