1. 02 1月, 2012 1 次提交
  2. 25 11月, 2011 1 次提交
  3. 23 11月, 2011 2 次提交
  4. 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
  5. 17 8月, 2011 1 次提交
  6. 26 7月, 2011 1 次提交