1. 17 11月, 2015 1 次提交
  2. 03 9月, 2014 1 次提交
  3. 07 2月, 2014 1 次提交
  4. 10 12月, 2013 1 次提交
  5. 30 11月, 2013 1 次提交
  6. 06 10月, 2012 2 次提交
    • M
      [media] mt2063: properly handle return error codes · 20eb13a7
      Mauro Carvalho Chehab 提交于
      Fix a series of warnings when compiled with W=1:
      
      drivers/media/tuners/mt2063.c: In function 'mt2063_setreg':
      drivers/media/tuners/mt2063.c:290:2: warning: comparison of unsigned expression < 0 is always false [-Wtype-limits]
      ...
      drivers/media/tuners/mt2063.c:2013:2: warning: comparison of unsigned expression < 0 is always false [-Wtype-limits]
      
      drivers/media/tuners/mt2063.c:2271:14: warning: no previous prototype for 'tuner_MT2063_SoftwareShutdown' [-Wmissing-prototypes]
      drivers/media/tuners/mt2063.c:2286:14: warning: no previous prototype for 'tuner_MT2063_ClearPowerMaskBits' [-Wmissing-prototypes]
      
      Several of those warnings are real bugs: the error status code
      used to be unsigned, but they're assigned to negative error
      codes.
      
      Fix it by using unsigned int.
      
      While here, comment the two power management functions, while we
      don't add a code there to properly handle tuner suspend/resume.
      Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
      20eb13a7
    • P
      [media] drivers/media/tuners/mt2063.c: Removes useless kfree() · 6f0fdc49
      Peter Senna Tschudin 提交于
      Remove useless kfree() and clean up code related to the removal.
      The semantic patch that finds this problem is as follows:
      (http://coccinelle.lip6.fr/)
      // <smpl>
      @r exists@
      position p1,p2;
      expression x;
      @@
      if (x@p1 == NULL) { ... kfree@p2(x); ... return ...; }
      @unchanged exists@
      position r.p1,r.p2;
      expression e <= r.x,x,e1;
      iterator I;
      statement S;
      @@
      if (x@p1 == NULL) { ... when != I(x,...) S
                              when != e = e1
                              when != e += e1
                              when != e -= e1
                              when != ++e
                              when != --e
                              when != e++
                              when != e--
                              when != &e
         kfree@p2(x); ... return ...; }
      @ok depends on unchanged exists@
      position any r.p1;
      position r.p2;
      expression x;
      @@
      ... when != true x@p1 == NULL
      kfree@p2(x);
      @depends on !ok && unchanged@
      position r.p2;
      expression x;
      @@
      *kfree@p2(x);
      // </smpl>
      Signed-off-by: NPeter Senna Tschudin <peter.senna@gmail.com>
      Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
      6f0fdc49
  7. 14 8月, 2012 1 次提交
  8. 08 2月, 2012 1 次提交
  9. 21 1月, 2012 1 次提交
  10. 05 1月, 2012 30 次提交