1. 05 4月, 2011 1 次提交
  2. 31 3月, 2011 1 次提交
  3. 21 10月, 2010 1 次提交
  4. 12 9月, 2009 4 次提交
  5. 25 7月, 2009 1 次提交
  6. 17 6月, 2009 4 次提交
  7. 30 3月, 2009 6 次提交
  8. 27 2月, 2009 1 次提交
  9. 30 12月, 2008 1 次提交
  10. 17 12月, 2008 2 次提交
    • M
      V4L/DVB (9885): drivers/media Kconfig's: fix bugzilla #12204 · 8b21c1e9
      Mauro Carvalho Chehab 提交于
      When the tuner modules were moved to common/tuners, a separate customize
      option were added for tuners. However, the automatic selection of the
      tuners were still using the older option.
      
      This causes that the automatic selection to fail, if DVB_FE_CUSTOMISE is
      selected. Also, since those tuners are now under MEDIA_TUNER_CUSTOMIZE
      menu, if you unset MEDIA_TUNER_CUSTOMIZE, you can't manually select the
      tuners.
      
      This patch fixes this error by replacing DVB_FE_CUSTOMISE by
      MEDIA_TUNER_CUSTOMIZE on all places were a tuner is selected.
      
      The patch were generated by this small script:
      
      for i in `find drivers/media -name Kconfig`; do
        cat $i|perl -ne 's/(MEDIA_TUNER.*)DVB_FE_CUSTOMISE/\1MEDIA_TUNER_CUSTOMIZE/; print $_' >a
        mv a $i
      done
      
      Also, manually reordered the tuner entries.
      Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
      8b21c1e9
    • A
      V4L/DVB (9781): [PATCH] Cablestar 2 I2C retries (fix CableStar2 support) · 11c6c7fb
      Antti Seppälä 提交于
      At some point the Flexcop driver was changed to support newer Flexcop cards.
      These modifications however broke the detection of Cablestar 2 DVB-C cards.
      
      The reason is that the earlier version of the driver used to retry
      unsuccessful i2c operations. The demodulator of Cablestar 2 cards (stv0297)
      seems to be very dependent on these retries and adding them back fixes
      Cablestar detection.
      
      This patch restores this behaviour for the CableStar2.
      Signed-off-by: NAntti Seppälä <a.seppala@gmail.com>
      Signed-off-by: NPatrick Boettcher <pb@linuxtv.org>
      Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
      11c6c7fb
  11. 28 10月, 2008 1 次提交
  12. 12 10月, 2008 1 次提交
  13. 05 10月, 2008 1 次提交
  14. 05 9月, 2008 1 次提交
    • T
      V4L/DVB (8877): b2c2 and bt8xx: udelay to mdelay · c4e3fd94
      Thierry MERLE 提交于
      b2c2-flexcop, dvb/bt8xx and video/bt8xx fails to build on ARM with:
      
      __bad_udelay is specifically designed on ARM to fail when udelay is
      called in a bad way.  arch/arm/include/asm/delay.h has this to say
      about __bad_udelay:
      
      /*
       * This function intentionally does not exist; if you see references to
       * it, it means that you're calling udelay() with an out of range value.
       *
       * With currently imposed limits, this means that we support a max delay
       * of 2000us. Further limits: HZ<=1000 and bogomips<=3355
       */
      extern void __bad_udelay(void);
      
      Solution is to replace udelay by a mdelay and udelay with value less than 2000
      Signed-off-by: NThierry MERLE <thierry.merle@free.fr>
      Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
      c4e3fd94
  15. 04 9月, 2008 1 次提交
  16. 05 6月, 2008 1 次提交
  17. 14 5月, 2008 1 次提交
  18. 30 4月, 2008 2 次提交
  19. 25 4月, 2008 9 次提交