1. 20 10月, 2014 1 次提交
  2. 30 7月, 2014 1 次提交
  3. 21 12月, 2013 1 次提交
  4. 31 7月, 2013 1 次提交
    • R
      ASoC: au1x: Fix build · d2ee88d0
      Ralf Baechle 提交于
      d8b51c11 [ASoC: ac97c: Use
      module_platform_driver()] broke the build:
      
       CC      sound/soc/au1x/ac97c.o
      /home/ralf/src/linux/upstream-sfr/sound/soc/au1x/ac97c.c:344:1: error: expected identifier or ‘(’ before ‘&’ token
      /home/ralf/src/linux/upstream-sfr/sound/soc/au1x/ac97c.c:344:1: error: pasting "__initcall_" and "&" does not give a valid preprocessing token
      /home/ralf/src/linux/upstream-sfr/sound/soc/au1x/ac97c.c:344:1: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘&’ token
      /home/ralf/src/linux/upstream-sfr/sound/soc/au1x/ac97c.c:344:1: error: expected identifier or ‘(’ before ‘&’ token
      /home/ralf/src/linux/upstream-sfr/sound/soc/au1x/ac97c.c:344:1: error: pasting "__exitcall_" and "&" does not give a valid preprocessing token
      /home/ralf/src/linux/upstream-sfr/sound/soc/au1x/ac97c.c:344:1: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘&’ token
      /home/ralf/src/linux/upstream-sfr/sound/soc/au1x/ac97c.c:334:31: warning: ‘au1xac97c_driver’ defined but not used [-Wunused-variable]
      make[5]: *** [sound/soc/au1x/ac97c.o] Error 1
      make[4]: *** [sound/soc/au1x] Error 2
      make[3]: *** [sound/soc] Error 2
      Signed-off-by: NRalf Baechle <ralf@linux-mips.org>
      Signed-off-by: NMark Brown <broonie@linaro.org>
      d2ee88d0
  5. 24 7月, 2013 1 次提交
  6. 15 7月, 2013 1 次提交
  7. 27 6月, 2013 4 次提交
  8. 27 3月, 2013 4 次提交
  9. 09 12月, 2012 1 次提交
  10. 02 1月, 2012 6 次提交
  11. 23 12月, 2011 1 次提交
  12. 13 12月, 2011 2 次提交
  13. 08 12月, 2011 3 次提交
  14. 25 11月, 2011 1 次提交
  15. 23 11月, 2011 2 次提交
  16. 25 10月, 2011 1 次提交
  17. 22 10月, 2011 1 次提交
    • J
      ASoC: keep pointer to resource so it can be freed · 226d0f22
      Julia Lawall 提交于
      Add a new variable for storing resources accessed subsequent to the one
      accessed using request_mem_region, so the one accessed using
      request_mem_region can be released if needed.
      
      The resource variable names are also changed to be more descriptive.
      
      This code is also missing some calls to iounmap.
      
      The semantic match that finds this problem is as follows:
      (http://coccinelle.lip6.fr/)
      
      // <smpl>
      @r@
      expression E, E1;
      identifier f;
      statement S1,S2,S3;
      @@
      
      if (E == NULL)
      {
        ... when != if (E == NULL || ...) S1 else S2
            when != E = E1
      *E->f
        ... when any
        return ...;
      }
      else S3
      // </smpl>
      Signed-off-by: NJulia Lawall <julia@diku.dk>
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      226d0f22
  18. 22 9月, 2011 1 次提交
  19. 17 8月, 2011 1 次提交
  20. 28 7月, 2011 4 次提交
  21. 26 7月, 2011 1 次提交
  22. 08 6月, 2011 1 次提交