An error occurred fetching the project authors.
  1. 03 Nov, 2014 3 commits
  2. 30 Oct, 2014 5 commits
  3. 23 Sep, 2014 2 commits
  4. 27 Jul, 2014 10 commits
  5. 07 Jan, 2014 1 commit
  6. 29 Nov, 2013 1 commit
  7. 17 Oct, 2013 1 commit
  8. 23 Aug, 2013 1 commit
  9. 17 Jun, 2013 1 commit
  10. 18 Mar, 2013 1 commit
  11. 05 Mar, 2013 4 commits
  12. 27 Dec, 2012 2 commits
  13. 27 Oct, 2012 1 commit
    • Mauro Carvalho Chehab's avatar
      [media] cx231xx: get rid of warning: no previous prototype · d4c06133
      Mauro Carvalho Chehab authored
      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: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
      d4c06133
  14. 15 Aug, 2012 1 commit
  15. 21 Jun, 2012 1 commit
  16. 19 Mar, 2012 1 commit
    • Jesper Juhl's avatar
      [media] media, cx231xx: Fix double free on close · 266e8ae3
      Jesper Juhl authored
      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: default avatarJesper Juhl <jj@chaosbits.net>
      Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
      266e8ae3
  17. 16 Jan, 2012 1 commit
  18. 11 Jan, 2012 3 commits