1. 26 1月, 2008 4 次提交
  2. 14 12月, 2007 1 次提交
  3. 12 12月, 2007 2 次提交
  4. 05 11月, 2007 6 次提交
  5. 10 10月, 2007 24 次提交
  6. 20 8月, 2007 1 次提交
  7. 31 7月, 2007 1 次提交
  8. 19 7月, 2007 1 次提交
    • M
      V4L/DVB (5840): fix dst and cx24123: tune() callback changed signess for delay · 3ea96615
      Mauro Carvalho Chehab 提交于
      tune() dvb_frontend callback changed delay signess:
              int (*tune)(struct dvb_frontend* fe,
                          struct dvb_frontend_parameters* params,
                          unsigned int mode_flags,
      -                   int *delay,
      +                   unsigned int *delay,
      
      This change caused warnings on cx24123 and dst modules:
      
      /home/v4l/master/v4l/cx24123.c:1034: warning: initialization from incompatible pointer type
      /home/v4l/master/v4l/dst.c:1782: warning: initialization from incompatible pointer type
      /home/v4l/master/v4l/dst.c:1808: warning: initialization from incompatible pointer type
      /home/v4l/master/v4l/dst.c:1837: warning: initialization from incompatible pointer type
      /home/v4l/master/v4l/dst.c:1860: warning: initialization from incompatible pointer type
      
      This patch corrects the function prototype on both modules to follow the
      core change.
      Signed-off-by: NMauro Carvalho Chehab <mchehab@infradead.org>
      3ea96615