Commit 15c8ffc4 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

[media] tuner-xc2028: mark printk continuation lines as such

This driver has a lot of printk continuation lines for
debugging purposes. Since commit 56387331
("Merge branch 'printk-cleanups"), this won't work as expected
anymore. So, let's add KERN_CONT to those lines.
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent 43ea43b9
...@@ -179,67 +179,67 @@ static int xc2028_get_reg(struct xc2028_data *priv, u16 reg, u16 *val) ...@@ -179,67 +179,67 @@ static int xc2028_get_reg(struct xc2028_data *priv, u16 reg, u16 *val)
static void dump_firm_type_and_int_freq(unsigned int type, u16 int_freq) static void dump_firm_type_and_int_freq(unsigned int type, u16 int_freq)
{ {
if (type & BASE) if (type & BASE)
printk("BASE "); printk(KERN_CONT "BASE ");
if (type & INIT1) if (type & INIT1)
printk("INIT1 "); printk(KERN_CONT "INIT1 ");
if (type & F8MHZ) if (type & F8MHZ)
printk("F8MHZ "); printk(KERN_CONT "F8MHZ ");
if (type & MTS) if (type & MTS)
printk("MTS "); printk(KERN_CONT "MTS ");
if (type & D2620) if (type & D2620)
printk("D2620 "); printk(KERN_CONT "D2620 ");
if (type & D2633) if (type & D2633)
printk("D2633 "); printk(KERN_CONT "D2633 ");
if (type & DTV6) if (type & DTV6)
printk("DTV6 "); printk(KERN_CONT "DTV6 ");
if (type & QAM) if (type & QAM)
printk("QAM "); printk(KERN_CONT "QAM ");
if (type & DTV7) if (type & DTV7)
printk("DTV7 "); printk(KERN_CONT "DTV7 ");
if (type & DTV78) if (type & DTV78)
printk("DTV78 "); printk(KERN_CONT "DTV78 ");
if (type & DTV8) if (type & DTV8)
printk("DTV8 "); printk(KERN_CONT "DTV8 ");
if (type & FM) if (type & FM)
printk("FM "); printk(KERN_CONT "FM ");
if (type & INPUT1) if (type & INPUT1)
printk("INPUT1 "); printk(KERN_CONT "INPUT1 ");
if (type & LCD) if (type & LCD)
printk("LCD "); printk(KERN_CONT "LCD ");
if (type & NOGD) if (type & NOGD)
printk("NOGD "); printk(KERN_CONT "NOGD ");
if (type & MONO) if (type & MONO)
printk("MONO "); printk(KERN_CONT "MONO ");
if (type & ATSC) if (type & ATSC)
printk("ATSC "); printk(KERN_CONT "ATSC ");
if (type & IF) if (type & IF)
printk("IF "); printk(KERN_CONT "IF ");
if (type & LG60) if (type & LG60)
printk("LG60 "); printk(KERN_CONT "LG60 ");
if (type & ATI638) if (type & ATI638)
printk("ATI638 "); printk(KERN_CONT "ATI638 ");
if (type & OREN538) if (type & OREN538)
printk("OREN538 "); printk(KERN_CONT "OREN538 ");
if (type & OREN36) if (type & OREN36)
printk("OREN36 "); printk(KERN_CONT "OREN36 ");
if (type & TOYOTA388) if (type & TOYOTA388)
printk("TOYOTA388 "); printk(KERN_CONT "TOYOTA388 ");
if (type & TOYOTA794) if (type & TOYOTA794)
printk("TOYOTA794 "); printk(KERN_CONT "TOYOTA794 ");
if (type & DIBCOM52) if (type & DIBCOM52)
printk("DIBCOM52 "); printk(KERN_CONT "DIBCOM52 ");
if (type & ZARLINK456) if (type & ZARLINK456)
printk("ZARLINK456 "); printk(KERN_CONT "ZARLINK456 ");
if (type & CHINA) if (type & CHINA)
printk("CHINA "); printk(KERN_CONT "CHINA ");
if (type & F6MHZ) if (type & F6MHZ)
printk("F6MHZ "); printk(KERN_CONT "F6MHZ ");
if (type & INPUT2) if (type & INPUT2)
printk("INPUT2 "); printk(KERN_CONT "INPUT2 ");
if (type & SCODE) if (type & SCODE)
printk("SCODE "); printk(KERN_CONT "SCODE ");
if (type & HAS_IF) if (type & HAS_IF)
printk("HAS_IF_%d ", int_freq); printk(KERN_CONT "HAS_IF_%d ", int_freq);
} }
static v4l2_std_id parse_audio_std_option(void) static v4l2_std_id parse_audio_std_option(void)
...@@ -374,8 +374,8 @@ static int load_all_firmwares(struct dvb_frontend *fe, ...@@ -374,8 +374,8 @@ static int load_all_firmwares(struct dvb_frontend *fe,
if (!size || size > endp - p) { if (!size || size > endp - p) {
tuner_err("Firmware type "); tuner_err("Firmware type ");
dump_firm_type(type); dump_firm_type(type);
printk("(%x), id %llx is corrupted " printk(KERN_CONT
"(size=%d, expected %d)\n", "(%x), id %llx is corrupted (size=%d, expected %d)\n",
type, (unsigned long long)id, type, (unsigned long long)id,
(unsigned)(endp - p), size); (unsigned)(endp - p), size);
goto corrupt; goto corrupt;
...@@ -390,7 +390,7 @@ static int load_all_firmwares(struct dvb_frontend *fe, ...@@ -390,7 +390,7 @@ static int load_all_firmwares(struct dvb_frontend *fe,
tuner_dbg("Reading firmware type "); tuner_dbg("Reading firmware type ");
if (debug) { if (debug) {
dump_firm_type_and_int_freq(type, int_freq); dump_firm_type_and_int_freq(type, int_freq);
printk("(%x), id %llx, size=%d.\n", printk(KERN_CONT "(%x), id %llx, size=%d.\n",
type, (unsigned long long)id, size); type, (unsigned long long)id, size);
} }
...@@ -439,7 +439,8 @@ static int seek_firmware(struct dvb_frontend *fe, unsigned int type, ...@@ -439,7 +439,8 @@ static int seek_firmware(struct dvb_frontend *fe, unsigned int type,
tuner_dbg("%s called, want type=", __func__); tuner_dbg("%s called, want type=", __func__);
if (debug) { if (debug) {
dump_firm_type(type); dump_firm_type(type);
printk("(%x), id %016llx.\n", type, (unsigned long long)*id); printk(KERN_CONT "(%x), id %016llx.\n",
type, (unsigned long long)*id);
} }
if (!priv->firm) { if (!priv->firm) {
...@@ -498,7 +499,8 @@ static int seek_firmware(struct dvb_frontend *fe, unsigned int type, ...@@ -498,7 +499,8 @@ static int seek_firmware(struct dvb_frontend *fe, unsigned int type,
tuner_dbg("Selecting best matching firmware (%d bits) for " tuner_dbg("Selecting best matching firmware (%d bits) for "
"type=", best_nr_matches); "type=", best_nr_matches);
dump_firm_type(type); dump_firm_type(type);
printk("(%x), id %016llx:\n", type, (unsigned long long)*id); printk(KERN_CONT
"(%x), id %016llx:\n", type, (unsigned long long)*id);
i = best_i; i = best_i;
goto found; goto found;
} }
...@@ -515,7 +517,8 @@ static int seek_firmware(struct dvb_frontend *fe, unsigned int type, ...@@ -515,7 +517,8 @@ static int seek_firmware(struct dvb_frontend *fe, unsigned int type,
tuner_dbg("%s firmware for type=", (i < 0) ? "Can't find" : "Found"); tuner_dbg("%s firmware for type=", (i < 0) ? "Can't find" : "Found");
if (debug) { if (debug) {
dump_firm_type(type); dump_firm_type(type);
printk("(%x), id %016llx.\n", type, (unsigned long long)*id); printk(KERN_CONT "(%x), id %016llx.\n",
type, (unsigned long long)*id);
} }
return i; return i;
} }
...@@ -555,8 +558,8 @@ static int load_firmware(struct dvb_frontend *fe, unsigned int type, ...@@ -555,8 +558,8 @@ static int load_firmware(struct dvb_frontend *fe, unsigned int type,
tuner_info("Loading firmware for type="); tuner_info("Loading firmware for type=");
dump_firm_type(priv->firm[pos].type); dump_firm_type(priv->firm[pos].type);
printk("(%x), id %016llx.\n", priv->firm[pos].type, printk(KERN_CONT "(%x), id %016llx.\n",
(unsigned long long)*id); priv->firm[pos].type, (unsigned long long)*id);
p = priv->firm[pos].ptr; p = priv->firm[pos].ptr;
endp = p + priv->firm[pos].size; endp = p + priv->firm[pos].size;
...@@ -689,7 +692,7 @@ static int load_scode(struct dvb_frontend *fe, unsigned int type, ...@@ -689,7 +692,7 @@ static int load_scode(struct dvb_frontend *fe, unsigned int type,
tuner_info("Loading SCODE for type="); tuner_info("Loading SCODE for type=");
dump_firm_type_and_int_freq(priv->firm[pos].type, dump_firm_type_and_int_freq(priv->firm[pos].type,
priv->firm[pos].int_freq); priv->firm[pos].int_freq);
printk("(%x), id %016llx.\n", priv->firm[pos].type, printk(KERN_CONT "(%x), id %016llx.\n", priv->firm[pos].type,
(unsigned long long)*id); (unsigned long long)*id);
if (priv->firm_version < 0x0202) if (priv->firm_version < 0x0202)
...@@ -741,15 +744,15 @@ static int check_firmware(struct dvb_frontend *fe, unsigned int type, ...@@ -741,15 +744,15 @@ static int check_firmware(struct dvb_frontend *fe, unsigned int type,
tuner_dbg("checking firmware, user requested type="); tuner_dbg("checking firmware, user requested type=");
if (debug) { if (debug) {
dump_firm_type(new_fw.type); dump_firm_type(new_fw.type);
printk("(%x), id %016llx, ", new_fw.type, printk(KERN_CONT "(%x), id %016llx, ", new_fw.type,
(unsigned long long)new_fw.std_req); (unsigned long long)new_fw.std_req);
if (!int_freq) { if (!int_freq) {
printk("scode_tbl "); printk(KERN_CONT "scode_tbl ");
dump_firm_type(priv->ctrl.scode_table); dump_firm_type(priv->ctrl.scode_table);
printk("(%x), ", priv->ctrl.scode_table); printk(KERN_CONT "(%x), ", priv->ctrl.scode_table);
} else } else
printk("int_freq %d, ", new_fw.int_freq); printk(KERN_CONT "int_freq %d, ", new_fw.int_freq);
printk("scode_nr %d\n", new_fw.scode_nr); printk(KERN_CONT "scode_nr %d\n", new_fw.scode_nr);
} }
/* /*
......
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