1. 04 11月, 2014 1 次提交
  2. 31 10月, 2014 5 次提交
  3. 24 9月, 2014 2 次提交
  4. 28 7月, 2014 10 次提交
  5. 07 1月, 2014 1 次提交
  6. 30 11月, 2013 1 次提交
  7. 17 10月, 2013 1 次提交
  8. 23 8月, 2013 1 次提交
  9. 17 6月, 2013 1 次提交
  10. 19 3月, 2013 1 次提交
  11. 06 3月, 2013 4 次提交
  12. 28 12月, 2012 2 次提交
  13. 28 10月, 2012 1 次提交
    • M
      [media] cx231xx: get rid of warning: no previous prototype · d4c06133
      Mauro Carvalho Chehab 提交于
      drivers/media/usb/cx231xx/cx231xx-avcore.c:1071:5: warning: no previous prototype for 'stopAudioFirmware' [-Wmissing-prototypes]
      drivers/media/usb/cx231xx/cx231xx-avcore.c:1076:5: warning: no previous prototype for 'restartAudioFirmware' [-Wmissing-prototypes]
      drivers/media/usb/cx231xx/cx231xx-cards.c:689:6: warning: no previous prototype for 'cx231xx_reset_out' [-Wmissing-prototypes]
      drivers/media/usb/cx231xx/cx231xx-cards.c:697:6: warning: no previous prototype for 'cx231xx_enable_OSC' [-Wmissing-prototypes]
      drivers/media/usb/cx231xx/cx231xx-cards.c:701:6: warning: no previous prototype for 'cx231xx_sleep_s5h1432' [-Wmissing-prototypes]
      drivers/media/usb/cx231xx/cx231xx-i2c.c:75:5: warning: no previous prototype for 'cx231xx_i2c_send_bytes' [-Wmissing-prototypes]
      Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
      d4c06133
  14. 16 8月, 2012 1 次提交
  15. 22 6月, 2012 1 次提交
  16. 20 3月, 2012 1 次提交
    • J
      [media] media, cx231xx: Fix double free on close · 266e8ae3
      Jesper Juhl 提交于
      In cx231xx_v4l2_close() there are two calls to
      cx231xx_release_resources(dev) followed by kfree(dev). That is a
      problem since cx231xx_release_resources() already kfree()'s its
      argument, so we end up doing a double free.
      
      Easily resolved by just removing the redundant kfree() calls after the
      calls to cx231xx_release_resources().
      
      I also changed the 'dev = NULL' assignments (which are rather
      pointless since 'dev' is about to go out of scope), to 'fh->dev = NULL'
      since it looks to me that that is what was actually intended.
      And I removed the 'dev = NULL' assignment at the end of
      cx231xx_release_resources() since it is pointless.
      Signed-off-by: NJesper Juhl <jj@chaosbits.net>
      Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
      266e8ae3
  17. 16 1月, 2012 1 次提交
  18. 11 1月, 2012 5 次提交