1. 05 3月, 2013 1 次提交
  2. 26 9月, 2012 1 次提交
  3. 16 8月, 2012 1 次提交
  4. 28 7月, 2011 1 次提交
    • M
      [media] Stop using linux/version.h on most video drivers · 1990d50b
      Mauro Carvalho Chehab 提交于
      All the modified drivers didn't have any version increment since
      Jan, 1 2011. Several of them didn't have any version increment
      for a long time, even having new features and important bug fixes
      happening.
      
      As we're now filling the QUERYCAP version with the current Kernel
      Release, we don't need to maintain a per-driver version control
      anymore. So, let's just use the default.
      
      In order to preserve the Kernel module version history, a
      KERNEL_VERSION() macro were added to all modified drivers, and
      the extraver number were incremented.
      
      I opted to preserve the per-driver version control to a few
      pwc, pvrusb2, s2255, s5p-fimc and sh_vou.
      
      A few drivers are still using the legacy way to handle ioctl's.
      So, we can't do such change on them, otherwise, they'll break.
      Those are: uvc, et61x251 and sn9c102.
      
      The rationale is that the per-driver version control seems to be
      actively maintained on those.
      
      Yet, I think that the better for them would be to just use the
      default version numbering, instead of doing that by themselves.
      
      While here, removed a few uneeded include linux/version.h
      Acked-by: NHans Verkuil <hans.verkuil@cisco.com>
      Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
      1990d50b
  5. 18 5月, 2010 1 次提交
    • M
      V4L/DVB: tlg2300: make local variables and functions static · 278a58cf
      Márton Németh 提交于
      Make the local variables and functions static. Some of them are not exported by their
      symbol name but used trough other means. For example a pointer of the operation
      structure is passed through a function call.
      
      This will remove the following sparse warnings (see "make C=1"):
       * pd-video.c:20:5: warning: symbol 'usb_transfer_mode' was not declared. Should it be static?
       * pd-video.c:621:5: warning: symbol 'fire_all_urb' was not declared. Should it be static?
       * pd-video.c:881:5: warning: symbol 'vidioc_s_std' was not declared. Should it be static?
       * pd-video.c:1024:5: warning: symbol 'vidioc_g_audio' was not declared. Should it be static?
       * pd-video.c:1033:5: warning: symbol 'vidioc_s_audio' was not declared. Should it be static?
       * pd-video.c:1193:5: warning: symbol 'usb_transfer_stop' was not declared. Should it be static?
       * pd-video.c:1522:14: warning: symbol 'pd_video_poll' was not declared. Should it be static?
       * pd-video.c:1528:9: warning: symbol 'pd_video_read' was not declared. Should it be static?
       * pd-radio.c:164:5: warning: symbol 'tlg_fm_vidioc_g_tuner' was not declared. Should it be static?
       * pd-radio.c:206:5: warning: symbol 'fm_get_freq' was not declared. Should it be static?
       * pd-radio.c:249:5: warning: symbol 'fm_set_freq' was not declared. Should it be static?
       * pd-radio.c:261:5: warning: symbol 'tlg_fm_vidioc_g_ctrl' was not declared. Should it be static?
       * pd-radio.c:267:5: warning: symbol 'tlg_fm_vidioc_g_exts_ctrl' was not declared. Should it be static?
       * pd-radio.c:288:5: warning: symbol 'tlg_fm_vidioc_s_exts_ctrl' was not declared. Should it be static?
       * pd-radio.c:315:5: warning: symbol 'tlg_fm_vidioc_s_ctrl' was not declared. Should it be static?
       * pd-radio.c:321:5: warning: symbol 'tlg_fm_vidioc_queryctrl' was not declared. Should it be static?
       * pd-radio.c:340:5: warning: symbol 'tlg_fm_vidioc_querymenu' was not declared. Should it be static?
       * pd-main.c:58:12: warning: symbol 'firmware_name' was not declared. Should it be static?
       * pd-main.c:59:19: warning: symbol 'poseidon_driver' was not declared. Should it be static?
      Signed-off-by: NMárton Németh <nm127@freemail.hu>
      Acked-by: NHuang Shijie <shijie8@gmail.com>
      Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
      278a58cf
  6. 27 2月, 2010 2 次提交