parport: fix if-statement empty body warnings
Eliminate warnings by using pr_debug which is the more typical kernel debugging style and also enable dynamic_debug on these outputs. Miscellaneous: o A few messages were logged at KERN_INFO when enabled, now KERN_DEBUG o Convert %d/%d to %zd/%zu to avoid compilation warnings Original-patch-by: Randy Dunlap <rdunlap@infradead.org> Signed-off-by: Joe Perches <joe@perches.com> Acked-by: Randy Dunlap <rdunlap@infradead.org> Signed-off-by: Sudip Mukherjee <sudipm.mukherjee@gmail.com> Link: https://lore.kernel.org/r/20200403134325.11523-1-sudipm.mukherjee@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:

committed by
Greg Kroah-Hartman

parent
af83114515
commit
d98ce9fef7
@@ -27,12 +27,6 @@
|
||||
#undef DEBUG /* Don't want a garbled console */
|
||||
#endif
|
||||
|
||||
#ifdef DEBUG
|
||||
#define DPRINTK(stuff...) printk (stuff)
|
||||
#else
|
||||
#define DPRINTK(stuff...)
|
||||
#endif
|
||||
|
||||
/*** *
|
||||
* One-way data transfer functions. *
|
||||
* ***/
|
||||
@@ -115,7 +109,7 @@ size_t parport_ieee1284_write_compat (struct parport *port,
|
||||
if (signal_pending (current))
|
||||
break;
|
||||
|
||||
DPRINTK (KERN_DEBUG "%s: Timed out\n", port->name);
|
||||
pr_debug("%s: Timed out\n", port->name);
|
||||
break;
|
||||
|
||||
ready:
|
||||
@@ -178,9 +172,8 @@ size_t parport_ieee1284_read_nibble (struct parport *port,
|
||||
if (parport_wait_peripheral (port,
|
||||
PARPORT_STATUS_ACK, 0)) {
|
||||
/* Timeout -- no more data? */
|
||||
DPRINTK (KERN_DEBUG
|
||||
"%s: Nibble timeout at event 9 (%d bytes)\n",
|
||||
port->name, i/2);
|
||||
pr_debug("%s: Nibble timeout at event 9 (%d bytes)\n",
|
||||
port->name, i / 2);
|
||||
parport_frob_control (port, PARPORT_CONTROL_AUTOFD, 0);
|
||||
break;
|
||||
}
|
||||
@@ -201,8 +194,7 @@ size_t parport_ieee1284_read_nibble (struct parport *port,
|
||||
PARPORT_STATUS_ACK,
|
||||
PARPORT_STATUS_ACK)) {
|
||||
/* Timeout -- no more data? */
|
||||
DPRINTK (KERN_DEBUG
|
||||
"%s: Nibble timeout at event 11\n",
|
||||
pr_debug("%s: Nibble timeout at event 11\n",
|
||||
port->name);
|
||||
break;
|
||||
}
|
||||
@@ -219,9 +211,8 @@ size_t parport_ieee1284_read_nibble (struct parport *port,
|
||||
/* Read the last nibble without checking data avail. */
|
||||
if (parport_read_status (port) & PARPORT_STATUS_ERROR) {
|
||||
end_of_data:
|
||||
DPRINTK (KERN_DEBUG
|
||||
"%s: No more nibble data (%d bytes)\n",
|
||||
port->name, i/2);
|
||||
pr_debug("%s: No more nibble data (%d bytes)\n",
|
||||
port->name, i / 2);
|
||||
|
||||
/* Go to reverse idle phase. */
|
||||
parport_frob_control (port,
|
||||
@@ -272,8 +263,7 @@ size_t parport_ieee1284_read_byte (struct parport *port,
|
||||
/* Timeout -- no more data? */
|
||||
parport_frob_control (port, PARPORT_CONTROL_AUTOFD,
|
||||
0);
|
||||
DPRINTK (KERN_DEBUG "%s: Byte timeout at event 9\n",
|
||||
port->name);
|
||||
pr_debug("%s: Byte timeout at event 9\n", port->name);
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -288,8 +278,7 @@ size_t parport_ieee1284_read_byte (struct parport *port,
|
||||
PARPORT_STATUS_ACK,
|
||||
PARPORT_STATUS_ACK)) {
|
||||
/* Timeout -- no more data? */
|
||||
DPRINTK (KERN_DEBUG "%s: Byte timeout at event 11\n",
|
||||
port->name);
|
||||
pr_debug("%s: Byte timeout at event 11\n", port->name);
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -307,8 +296,7 @@ size_t parport_ieee1284_read_byte (struct parport *port,
|
||||
/* Read the last byte without checking data avail. */
|
||||
if (parport_read_status (port) & PARPORT_STATUS_ERROR) {
|
||||
end_of_data:
|
||||
DPRINTK (KERN_DEBUG
|
||||
"%s: No more byte data (%zd bytes)\n",
|
||||
pr_debug("%s: No more byte data (%zd bytes)\n",
|
||||
port->name, count);
|
||||
|
||||
/* Go to reverse idle phase. */
|
||||
@@ -353,12 +341,10 @@ int ecp_forward_to_reverse (struct parport *port)
|
||||
PARPORT_STATUS_PAPEROUT, 0);
|
||||
|
||||
if (!retval) {
|
||||
DPRINTK (KERN_DEBUG "%s: ECP direction: reverse\n",
|
||||
port->name);
|
||||
pr_debug("%s: ECP direction: reverse\n", port->name);
|
||||
port->ieee1284.phase = IEEE1284_PH_REV_IDLE;
|
||||
} else {
|
||||
DPRINTK (KERN_DEBUG "%s: ECP direction: failed to reverse\n",
|
||||
port->name);
|
||||
pr_debug("%s: ECP direction: failed to reverse\n", port->name);
|
||||
port->ieee1284.phase = IEEE1284_PH_ECP_DIR_UNKNOWN;
|
||||
}
|
||||
|
||||
@@ -384,12 +370,10 @@ int ecp_reverse_to_forward (struct parport *port)
|
||||
|
||||
if (!retval) {
|
||||
parport_data_forward (port);
|
||||
DPRINTK (KERN_DEBUG "%s: ECP direction: forward\n",
|
||||
port->name);
|
||||
pr_debug("%s: ECP direction: forward\n", port->name);
|
||||
port->ieee1284.phase = IEEE1284_PH_FWD_IDLE;
|
||||
} else {
|
||||
DPRINTK (KERN_DEBUG
|
||||
"%s: ECP direction: failed to switch forward\n",
|
||||
pr_debug("%s: ECP direction: failed to switch forward\n",
|
||||
port->name);
|
||||
port->ieee1284.phase = IEEE1284_PH_ECP_DIR_UNKNOWN;
|
||||
}
|
||||
@@ -450,7 +434,7 @@ size_t parport_ieee1284_ecp_write_data (struct parport *port,
|
||||
}
|
||||
|
||||
/* Time for Host Transfer Recovery (page 41 of IEEE1284) */
|
||||
DPRINTK (KERN_DEBUG "%s: ECP transfer stalled!\n", port->name);
|
||||
pr_debug("%s: ECP transfer stalled!\n", port->name);
|
||||
|
||||
parport_frob_control (port, PARPORT_CONTROL_INIT,
|
||||
PARPORT_CONTROL_INIT);
|
||||
@@ -466,8 +450,7 @@ size_t parport_ieee1284_ecp_write_data (struct parport *port,
|
||||
if (!(parport_read_status (port) & PARPORT_STATUS_PAPEROUT))
|
||||
break;
|
||||
|
||||
DPRINTK (KERN_DEBUG "%s: Host transfer recovered\n",
|
||||
port->name);
|
||||
pr_debug("%s: Host transfer recovered\n", port->name);
|
||||
|
||||
if (time_after_eq (jiffies, expire)) break;
|
||||
goto try_again;
|
||||
@@ -565,23 +548,20 @@ size_t parport_ieee1284_ecp_read_data (struct parport *port,
|
||||
command or a normal data byte, don't accept it. */
|
||||
if (command) {
|
||||
if (byte & 0x80) {
|
||||
DPRINTK (KERN_DEBUG "%s: stopping short at "
|
||||
"channel command (%02x)\n",
|
||||
pr_debug("%s: stopping short at channel command (%02x)\n",
|
||||
port->name, byte);
|
||||
goto out;
|
||||
}
|
||||
else if (port->ieee1284.mode != IEEE1284_MODE_ECPRLE)
|
||||
DPRINTK (KERN_DEBUG "%s: device illegally "
|
||||
"using RLE; accepting anyway\n",
|
||||
pr_debug("%s: device illegally using RLE; accepting anyway\n",
|
||||
port->name);
|
||||
|
||||
rle_count = byte + 1;
|
||||
|
||||
/* Are we allowed to read that many bytes? */
|
||||
if (rle_count > (len - count)) {
|
||||
DPRINTK (KERN_DEBUG "%s: leaving %d RLE bytes "
|
||||
"for next time\n", port->name,
|
||||
rle_count);
|
||||
pr_debug("%s: leaving %d RLE bytes for next time\n",
|
||||
port->name, rle_count);
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -596,7 +576,7 @@ size_t parport_ieee1284_ecp_read_data (struct parport *port,
|
||||
PARPORT_STATUS_ACK)) {
|
||||
/* It's gone wrong. Return what data we have
|
||||
to the caller. */
|
||||
DPRINTK (KERN_DEBUG "ECP read timed out at 45\n");
|
||||
pr_debug("ECP read timed out at 45\n");
|
||||
|
||||
if (command)
|
||||
printk (KERN_WARNING
|
||||
@@ -620,7 +600,7 @@ size_t parport_ieee1284_ecp_read_data (struct parport *port,
|
||||
memset (buf, byte, rle_count);
|
||||
buf += rle_count;
|
||||
count += rle_count;
|
||||
DPRINTK (KERN_DEBUG "%s: decompressed to %d bytes\n",
|
||||
pr_debug("%s: decompressed to %d bytes\n",
|
||||
port->name, rle_count);
|
||||
} else {
|
||||
/* Normal data byte. */
|
||||
@@ -686,7 +666,7 @@ size_t parport_ieee1284_ecp_write_addr (struct parport *port,
|
||||
}
|
||||
|
||||
/* Time for Host Transfer Recovery (page 41 of IEEE1284) */
|
||||
DPRINTK (KERN_DEBUG "%s: ECP transfer stalled!\n", port->name);
|
||||
pr_debug("%s: ECP transfer stalled!\n", port->name);
|
||||
|
||||
parport_frob_control (port, PARPORT_CONTROL_INIT,
|
||||
PARPORT_CONTROL_INIT);
|
||||
@@ -702,8 +682,7 @@ size_t parport_ieee1284_ecp_write_addr (struct parport *port,
|
||||
if (!(parport_read_status (port) & PARPORT_STATUS_PAPEROUT))
|
||||
break;
|
||||
|
||||
DPRINTK (KERN_DEBUG "%s: Host transfer recovered\n",
|
||||
port->name);
|
||||
pr_debug("%s: Host transfer recovered\n", port->name);
|
||||
|
||||
if (time_after_eq (jiffies, expire)) break;
|
||||
goto try_again;
|
||||
|
Reference in New Issue
Block a user