1. 22 8月, 2014 8 次提交
  2. 15 1月, 2014 2 次提交
  3. 11 12月, 2013 1 次提交
  4. 20 5月, 2012 1 次提交
  5. 19 4月, 2012 1 次提交
  6. 20 3月, 2012 2 次提交
  7. 05 1月, 2012 1 次提交
    • M
      [media] Don't test for ops->info.type inside drivers · 6225f18b
      Mauro Carvalho Chehab 提交于
      Now, ops->info.type is handled inside the dvb_frontend
      core, only for DVBv3 calls, and according with the
      delivery system. So, drivers should not care or use it,
      otherwise, it may have issues with DVBv5 calls.
      
      The drivers that were still using it were detected via
      this small temporary hack:
      
      --- a/include/linux/dvb/frontend.h
      +++ b/include/linux/dvb/frontend.h
      @@ -29,13 +29,16 @@
       #include <linux/types.h>
      
       typedef enum fe_type {
      +#if defined(__DVB_CORE__) || !defined (__KERNEL__)
              FE_QPSK,
              FE_QAM,
              FE_OFDM,
              FE_ATSC
      +#else
      +FE_FOOO
      +#endif
       } fe_type_t;
      
      -
       typedef enum fe_caps {
              FE_IS_STUPID                    = 0,
              FE_CAN_INVERSION_AUTO           = 0x1,
      Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
      6225f18b
  8. 31 12月, 2011 4 次提交
  9. 08 11月, 2011 2 次提交
  10. 03 11月, 2011 5 次提交