1. 03 10月, 2013 1 次提交
  2. 02 10月, 2013 6 次提交
  3. 22 8月, 2013 1 次提交
  4. 05 7月, 2013 1 次提交
  5. 28 6月, 2013 1 次提交
  6. 17 6月, 2013 1 次提交
  7. 09 6月, 2013 19 次提交
  8. 27 5月, 2013 1 次提交
  9. 26 4月, 2013 3 次提交
    • M
      [media] dib0090: Fix a warning at dib0090_set_EFUSE · 751dc8c7
      Mauro Carvalho Chehab 提交于
      The check if the values for c, h and n are within the range is
      always true, as, if one of this values is out of range, the
      previous "if" clauses will default to a value within the
      range.
      
      That fixes the following warning:
      
      	drivers/media/dvb-frontends/dib0090.c: In function 'dib0090_set_EFUSE':
      	drivers/media/dvb-frontends/dib0090.c:1545:5: warning: comparison is always true due to limited range of data type [-Wtype-limits]
      
      and makes the code easier to read.
      Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
      751dc8c7
    • M
      [media] dib8000: fix a warning · 13122f98
      Mauro Carvalho Chehab 提交于
      drivers/media/dvb-frontends/dib8000.c: In function 'dib8000_wait_lock':
      drivers/media/dvb-frontends/dib8000.c:3972:1: warning: 'value' may be used uninitialized in this function [-Wmaybe-uninitialized]
      drivers/media/dvb-frontends/dib8000.c:2419:6: note: 'value' was declared here
      Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
      13122f98
    • M
      [media] dib8000: Fix sub-channel range · 746f7ae0
      Mauro Carvalho Chehab 提交于
      isdbt_sb_subchannel is unsigned with 8 bits. So, it will
      never be -1. Instead, any value bigger than 13 is invalid.
      
      As is, the current code generates the following warnings:
      
      drivers/media/dvb-frontends/dib8000.c: In function 'dib8000_set_isdbt_common_channel':
      drivers/media/dvb-frontends/dib8000.c:2358:3: warning: comparison is always true due to limited range of data type [-Wtype-limits]
      drivers/media/dvb-frontends/dib8000.c: In function 'dib8000_tune':
      drivers/media/dvb-frontends/dib8000.c:3107:8: warning: comparison is always false due to limited range of data type [-Wtype-limits]
      drivers/media/dvb-frontends/dib8000.c:3153:9: warning: comparison is always false due to limited range of data type [-Wtype-limits]
      drivers/media/dvb-frontends/dib8000.c:3160:5: warning: comparison is always false
      
      It should also be noticed that ARIB STD-B31, item
      "3.15.6.8 Number of segments" at TMCC table defines the
      value 15 for unused segment, and 14 as reserved.
      
      So, better to change the check to consider any value
      bigger than 13 to mean that sub-channels should be
      disabled, fixing the warning and doing the right thing
      even if an invalid value is filled by userspace.
      Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
      746f7ae0
  10. 25 4月, 2013 2 次提交
  11. 23 4月, 2013 3 次提交
  12. 22 4月, 2013 1 次提交