Hi, Let me begin with, I'm an end user, not a programmer... I have noticed the EVGA inDtube tuner that I use (North American ATSC) has been broken for quite a while. The Frequency offsets are wrong, and up till now I have always had to fudge the frequency to account for the incorrect offset. I found a fix that works for me, and waiting for a friend of mine, another inDtube user, to try the same fix and get back to me. Pending his report, would it be possible to get this fixed in the kernel for good? Thanks, Bill / linux / drivers / media / common / tuners / tuner-xc2028.c was commented out by someone somewhere along the way in development. Putting the commented code back in, the inDtube tuner works correctly, no more having to fudge the frequency offset in user land. Would it be possible to get this fixed for good in the kernel? I am using xc3028L-v36.fw firmware here is a snippet adding two comments, to remove the comments. /* #if 0 */ /* * Still need tests for XC3028L (firmware 3.2 or * upper) * So, for now, let's just comment the per-firmware * version of this change. Reports with xc3028l * working * with and without the lines bellow are welcome */ if (priv->firm_version < 0x0302) { if (priv->cur_fw.type & DTV7) offset += 500000; } else { if (priv->cur_fw.type & DTV7) offset -= 300000; else if (type != ATSC) /* DVB @6MHz, DTV 8 and DTV 7/8 */ offset += 200000; } /* #endif */ -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html