Advertisement
Guest User

Untitled

a guest
May 15th, 2013
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. # hack to tuner-xc2028.c to get the inDtube ATSC tuner's center freq straightened out
  2.  
  3. 1077 /* #if 0 */
  4. 1078 /*
  5. 1079 * Still need tests for XC3028L (firmware 3.2 or upper)
  6. 1080 * So, for now, let's just comment the per-firmware
  7. 1081 * version of this change. Reports with xc3028l working
  8. 1082 * with and without the lines bellow are welcome
  9. 1083 */
  10. 1084
  11. 1085 if (priv->firm_version < 0x0302) {
  12. 1086 if (priv->cur_fw.type & DTV7)
  13. 1087 offset += 500000;
  14. 1088 } else {
  15. 1089 if (priv->cur_fw.type & DTV7)
  16. 1090 offset -= 300000;
  17. 1091 else if (type != ATSC) /* DVB @6MHz, DTV 8 and DTV 7/8 */
  18. 1092 offset += 200000;
  19. 1093 }
  20. 1094 /* #endif */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement