Commit fbd05c82 authored by Michael Krufky's avatar Michael Krufky Committed by Mauro Carvalho Chehab

V4L/DVB (8288): sms1xxx: more cleanups

Signed-off-by: default avatarMichael Krufky <mkrufky@linuxtv.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
parent e080842c
...@@ -735,14 +735,22 @@ int smscore_detect_mode(struct smscore_device_t *coredev) ...@@ -735,14 +735,22 @@ int smscore_detect_mode(struct smscore_device_t *coredev)
char *smscore_fw_lkup[][SMS_NUM_OF_DEVICE_TYPES] = { char *smscore_fw_lkup[][SMS_NUM_OF_DEVICE_TYPES] = {
/*Stellar NOVA A0 Nova B0 VEGA*/ /*Stellar NOVA A0 Nova B0 VEGA*/
/*DVBT*/ {"none", "dvb_nova_12mhz.inp", "dvb_nova_12mhz_b0.inp", "none"}, /*DVBT*/
/*DVBH*/ {"none", "dvb_nova_12mhz.inp", "dvb_nova_12mhz_b0.inp", "none"}, {"none", "dvb_nova_12mhz.inp", "dvb_nova_12mhz_b0.inp", "none"},
/*TDMB*/ {"none", "tdmb_nova_12mhz.inp", "none", "none"}, /*DVBH*/
/*DABIP*/ {"none", "none", "none", "none"}, {"none", "dvb_nova_12mhz.inp", "dvb_nova_12mhz_b0.inp", "none"},
/*BDA*/ {"none", "dvb_nova_12mhz.inp", "dvb_nova_12mhz_b0.inp", "none"}, /*TDMB*/
/*ISDBT*/ {"none", "isdbt_nova_12mhz.inp", "dvb_nova_12mhz.inp", "none"}, {"none", "tdmb_nova_12mhz.inp", "none", "none"},
/*ISDBTBDA*/{"none", "isdbt_nova_12mhz.inp", "isdbt_nova_12mhz_b0.inp", "none"}, /*DABIP*/
/*CMMB*/ {"none", "none", "none", "cmmb_vega_12mhz.inp"} {"none", "none", "none", "none"},
/*BDA*/
{"none", "dvb_nova_12mhz.inp", "dvb_nova_12mhz_b0.inp", "none"},
/*ISDBT*/
{"none", "isdbt_nova_12mhz.inp", "dvb_nova_12mhz.inp", "none"},
/*ISDBTBDA*/
{"none", "isdbt_nova_12mhz.inp", "isdbt_nova_12mhz_b0.inp", "none"},
/*CMMB*/
{"none", "none", "none", "cmmb_vega_12mhz.inp"}
}; };
...@@ -919,8 +927,8 @@ void smscore_onresponse(struct smscore_device_t *coredev, ...@@ -919,8 +927,8 @@ void smscore_onresponse(struct smscore_device_t *coredev,
smscore_find_client(coredev, phdr->msgType, phdr->msgDstId); smscore_find_client(coredev, phdr->msgType, phdr->msgDstId);
int rc = -EBUSY; int rc = -EBUSY;
static unsigned long last_sample_time = 0; static unsigned long last_sample_time; /* = 0; */
static int data_total = 0; static int data_total; /* = 0; */
unsigned long time_now = jiffies_to_msecs(jiffies); unsigned long time_now = jiffies_to_msecs(jiffies);
if (!last_sample_time) if (!last_sample_time)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment