i have an error of not supporting dmb-th in xc5000 in the kernel 3.4.
i think it is a missing switch-case in the set-params function :
        case SYS_DVBT:
        case SYS_DVBT2:
        case SYS_DMBTH:
                dprintk(1, "%s() OFDM\n", __func__);
                switch (bw) {
                case 6000000:
                        priv->video_standard = DTV6;
                        priv->freq_hz = freq - 1750000;
                        break;
                case 7000000:
                        priv->video_standard = DTV7;
                        priv->freq_hz = freq - 2250000;
                        break;
                case 8000000:
                        priv->video_standard = DTV8;
                        priv->freq_hz = freq - 2750000;
                        break;
                default:
                        printk(KERN_ERR "xc5000 bandwidth not set!\n");
                        return -EINVAL;
                }
                priv->rf_mode = XC_RF_MODE_AIR;



-- 
http://chanchoiwing.blogspot.com
--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to