Advertisement
Guest User

Untitled

a guest
Jul 26th, 2013
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. /* Will need to get rid of this Compiler Directive to fix inDtube again
  2. #if 0
  3. /*
  4. * Still need tests for XC3028L (firmware 3.2 or upper)
  5. * So, for now, let's just comment the per-firmware
  6. * version of this change. Reports with xc3028l working
  7. * with and without the lines bellow are welcome
  8. */
  9.  
  10. if (priv->firm_version < 0x0302) {
  11. if (priv->cur_fw.type & DTV7)
  12. offset += 500000;
  13. } else {
  14. if (priv->cur_fw.type & DTV7)
  15. offset -= 300000;
  16. else if (type != ATSC) /* DVB @6MHz, DTV 8 and DTV 7/8 */
  17. offset += 200000;
  18. }
  19. #endif
  20.  
  21. /* To: */
  22.  
  23. /*
  24. * Still need tests for XC3028L (firmware 3.2 or upper)
  25. * So, for now, let's just comment the per-firmware
  26. * version of this change. Reports with xc3028l working
  27. * with and without the lines bellow are welcome
  28. */
  29.  
  30. if (priv->firm_version < 0x0302) {
  31. if (priv->cur_fw.type & DTV7)
  32. offset += 500000;
  33. } else {
  34. if (priv->cur_fw.type & DTV7)
  35. offset -= 300000;
  36. else if (type != ATSC) /* DVB @6MHz, DTV 8 and DTV 7/8 */
  37. offset += 200000;
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement