remove debugging messages

This commit is contained in:
Ralph Metzler 2015-09-19 22:20:35 +02:00
parent 29dc0f9e31
commit 0393ab4db4
2 changed files with 5 additions and 4 deletions

View File

@ -1008,7 +1008,6 @@ static int demod_attach_cxd2843(struct ddb_input *input, int par)
struct ddb_dvb *dvb = &input->port->dvb[input->nr & 1];
struct dvb_frontend *fe;
printk("attach cxd par = %d\n", par);
if (par)
fe = dvb->fe = dvb_attach(cxd2843_attach, i2c,
(input->nr & 1) ?

View File

@ -447,8 +447,8 @@ static int attach_init(struct tda_state *state)
if (!state->m_isMaster)
state->m_bLTEnable = false;
pr_info("tda18212dd: ChipID %04x %s\n", state->m_ID,
state->m_isMaster ? "master" : "slave");
/*pr_info("tda18212dd: ChipID %04x %s\n", state->m_ID,
state->m_isMaster ? "master" : "slave");*/
if (state->m_ID != 18212)
return -1;
@ -457,7 +457,7 @@ static int attach_init(struct tda_state *state)
if (stat < 0)
return stat;
pr_info("tda18212dd: PowerState %02x\n", PowerState);
/*pr_info("tda18212dd: PowerState %02x\n", PowerState);*/
if (state->m_isMaster) {
if (PowerState & 0x02) {
@ -487,6 +487,7 @@ static int attach_init(struct tda_state *state)
FinishCalibration(state);
Standby(state);
#if 0
{
u8 RFCal_Log[12];
@ -499,6 +500,7 @@ static int attach_init(struct tda_state *state)
RFCal_Log[8], RFCal_Log[9],
RFCal_Log[10], RFCal_Log[11]);
}
#endif
return stat;
}