1. 29 4月, 2008 1 次提交
    • H
      media: fix integer as NULL pointer warnings · a6a3a17b
      Harvey Harrison 提交于
      drivers/media/video/v4l2-common.c:719:16: warning: Using plain integer as NULL pointer
      drivers/media/video/au0828/au0828-dvb.c:122:19: warning: Using plain integer as NULL pointer
      drivers/media/video/ivtv/ivtv-yuv.c:1101:22: warning: Using plain integer as NULL pointer
      drivers/media/video/ivtv/ivtv-yuv.c:1102:23: warning: Using plain integer as NULL pointer
      drivers/media/video/pvrusb2/pvrusb2-audio.c:78:39: warning: Using plain integer as NULL pointer
      drivers/media/video/pvrusb2/pvrusb2-video-v4l.c:84:39: warning: Using plain integer as NULL pointer
      drivers/media/video/pvrusb2/pvrusb2-v4l2.c:1264:9: warning: Using plain integer as NULL pointer
      drivers/media/video/pvrusb2/pvrusb2-context.c:197:28: warning: Using plain integer as NULL pointer
      drivers/media/video/pvrusb2/pvrusb2-cx2584x-v4l.c:126:39: warning: Using plain integer as NULL pointer
      drivers/media/video/pvrusb2/pvrusb2-dvb.c:133:32: warning: Using plain integer as NULL pointer
      drivers/media/video/pvrusb2/pvrusb2-dvb.c:145:31: warning: Using plain integer as NULL pointer
      drivers/media/video/pvrusb2/pvrusb2-dvb.c:177:55: warning: Using plain integer as NULL pointer
      drivers/media/video/videobuf-core.c:100:9: warning: Using plain integer as NULL pointer
      Signed-off-by: NHarvey Harrison <harvey.harrison@gmail.com>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      a6a3a17b
  2. 25 4月, 2008 11 次提交
  3. 18 2月, 2008 1 次提交
  4. 26 1月, 2008 5 次提交
  5. 13 12月, 2007 1 次提交
  6. 12 12月, 2007 2 次提交
  7. 22 10月, 2007 1 次提交
  8. 14 10月, 2007 1 次提交
  9. 11 10月, 2007 1 次提交
  10. 10 10月, 2007 10 次提交
  11. 09 5月, 2007 1 次提交
  12. 21 2月, 2007 1 次提交
    • M
      V4L/DVB (5147): Make vivi driver to use vmalloced pointers · b50e7fe9
      Mauro Carvalho Chehab 提交于
      Before this patch, vivi were simulating a scatter gather DMA transfer.
      While this is academic, showing how stuff really works on a real PCI 
      device, this means a non-optimized code. 
      There are only two memory models that vivi implements:
      	1) kernel alloced memory. This is also used by read() method.
      	   On this case, a vmalloc32 buffer is allocated at kernel;
      	2) userspace allocated memory. This is used by most userspace apps.
      	   video-buf will store this pointer.
      	   a simple copy_to_user is enough to transfer data.
      The third memory model scenario supported by video-buf is overlay mode. 
      This model is not implemented on vivi and unlikely to be implemented on 
      newer drivers, since now, most userspace apps do some post-processing 
      (like de-interlacing).
      After this patch, some cleanups may be done at video-buf.c to avoid 
      allocating pages, when the driver doesn't need a PCI buffer. This is the 
      case of vivi and usb drivers.
      Signed-off-by: NMauro Carvalho Chehab <mchehab@infradead.org>
      b50e7fe9
  13. 24 1月, 2007 1 次提交
  14. 16 1月, 2007 1 次提交
  15. 04 10月, 2006 1 次提交
  16. 02 4月, 2006 1 次提交