parport: Use more comon logging styles
Some of the logging can be poorly formatted because of unexpected line breaks given printks without KERN_CONT that should be pr_cont. Miscellanea: o Remove unnecessary spaces between function name and open parenthesis o Convert bare printks to pr_<level> where appropriate o Convert embedded function names to use %s, __func__ o Coalesce formats o Realign arguments o Use do {} while (0) in a macro and not a bare if Signed-off-by: Joe Perches <joe@perches.com> Reviewed-by: Randy Dunlap <rdunlap@infradead.org> Signed-off-by: Sudip Mukherjee <sudipm.mukherjee@gmail.com> Link: https://lore.kernel.org/r/20200403134325.11523-3-sudipm.mukherjee@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:

committed by
Greg Kroah-Hartman

parent
decf26f6ec
commit
aa3d6e7c49
@@ -298,8 +298,8 @@ static size_t parport_pc_epp_read_data(struct parport *port, void *buf,
|
||||
status = inb(STATUS(port));
|
||||
if (status & 0x01) {
|
||||
/* EPP timeout should never occur... */
|
||||
printk(KERN_DEBUG
|
||||
"%s: EPP timeout occurred while talking to w91284pic (should not have done)\n", port->name);
|
||||
printk(KERN_DEBUG "%s: EPP timeout occurred while talking to w91284pic (should not have done)\n",
|
||||
port->name);
|
||||
clear_epp_timeout(port);
|
||||
}
|
||||
}
|
||||
@@ -727,7 +727,7 @@ static size_t parport_pc_compat_write_block_pio(struct parport *port,
|
||||
r = change_mode(port, ECR_PPF); /* Parallel port FIFO */
|
||||
if (r)
|
||||
printk(KERN_DEBUG "%s: Warning change_mode ECR_PPF failed\n",
|
||||
port->name);
|
||||
port->name);
|
||||
|
||||
port->physport->ieee1284.phase = IEEE1284_PH_FWD_DATA;
|
||||
|
||||
@@ -770,9 +770,8 @@ static size_t parport_pc_compat_write_block_pio(struct parport *port,
|
||||
PARPORT_STATUS_BUSY,
|
||||
PARPORT_STATUS_BUSY);
|
||||
if (r)
|
||||
printk(KERN_DEBUG
|
||||
"%s: BUSY timeout (%d) in compat_write_block_pio\n",
|
||||
port->name, r);
|
||||
printk(KERN_DEBUG "%s: BUSY timeout (%d) in compat_write_block_pio\n",
|
||||
port->name, r);
|
||||
|
||||
port->physport->ieee1284.phase = IEEE1284_PH_FWD_IDLE;
|
||||
|
||||
@@ -810,8 +809,8 @@ static size_t parport_pc_ecp_write_block_pio(struct parport *port,
|
||||
PARPORT_STATUS_PAPEROUT,
|
||||
PARPORT_STATUS_PAPEROUT);
|
||||
if (r) {
|
||||
printk(KERN_DEBUG "%s: PError timeout (%d) "
|
||||
"in ecp_write_block_pio\n", port->name, r);
|
||||
printk(KERN_DEBUG "%s: PError timeout (%d) in ecp_write_block_pio\n",
|
||||
port->name, r);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -824,7 +823,7 @@ static size_t parport_pc_ecp_write_block_pio(struct parport *port,
|
||||
r = change_mode(port, ECR_ECP); /* ECP FIFO */
|
||||
if (r)
|
||||
printk(KERN_DEBUG "%s: Warning change_mode ECR_ECP failed\n",
|
||||
port->name);
|
||||
port->name);
|
||||
port->physport->ieee1284.phase = IEEE1284_PH_FWD_DATA;
|
||||
|
||||
/* Write the data to the FIFO. */
|
||||
@@ -867,8 +866,8 @@ static size_t parport_pc_ecp_write_block_pio(struct parport *port,
|
||||
parport_frob_control(port, PARPORT_CONTROL_INIT, 0);
|
||||
r = parport_wait_peripheral(port, PARPORT_STATUS_PAPEROUT, 0);
|
||||
if (r)
|
||||
printk(KERN_DEBUG "%s: PE,1 timeout (%d) "
|
||||
"in ecp_write_block_pio\n", port->name, r);
|
||||
printk(KERN_DEBUG "%s: PE,1 timeout (%d) in ecp_write_block_pio\n",
|
||||
port->name, r);
|
||||
|
||||
parport_frob_control(port,
|
||||
PARPORT_CONTROL_INIT,
|
||||
@@ -877,17 +876,16 @@ static size_t parport_pc_ecp_write_block_pio(struct parport *port,
|
||||
PARPORT_STATUS_PAPEROUT,
|
||||
PARPORT_STATUS_PAPEROUT);
|
||||
if (r)
|
||||
printk(KERN_DEBUG "%s: PE,2 timeout (%d) "
|
||||
"in ecp_write_block_pio\n", port->name, r);
|
||||
printk(KERN_DEBUG "%s: PE,2 timeout (%d) in ecp_write_block_pio\n",
|
||||
port->name, r);
|
||||
}
|
||||
|
||||
r = parport_wait_peripheral(port,
|
||||
PARPORT_STATUS_BUSY,
|
||||
PARPORT_STATUS_BUSY);
|
||||
if (r)
|
||||
printk(KERN_DEBUG
|
||||
"%s: BUSY timeout (%d) in ecp_write_block_pio\n",
|
||||
port->name, r);
|
||||
printk(KERN_DEBUG "%s: BUSY timeout (%d) in ecp_write_block_pio\n",
|
||||
port->name, r);
|
||||
|
||||
port->physport->ieee1284.phase = IEEE1284_PH_FWD_IDLE;
|
||||
|
||||
@@ -1611,7 +1609,7 @@ static int parport_ECP_supported(struct parport *pb)
|
||||
if (i <= priv->fifo_depth) {
|
||||
if (verbose_probing)
|
||||
printk(KERN_DEBUG "0x%lx: writeIntrThreshold is %d\n",
|
||||
pb->base, i);
|
||||
pb->base, i);
|
||||
} else
|
||||
/* Number of bytes we know we can write if we get an
|
||||
interrupt. */
|
||||
@@ -1664,14 +1662,14 @@ static int parport_ECP_supported(struct parport *pb)
|
||||
|
||||
if (verbose_probing) {
|
||||
printk(KERN_DEBUG "0x%lx: PWord is %d bits\n",
|
||||
pb->base, 8 * pword);
|
||||
pb->base, 8 * pword);
|
||||
|
||||
printk(KERN_DEBUG "0x%lx: Interrupts are ISA-%s\n", pb->base,
|
||||
config & 0x80 ? "Level" : "Pulses");
|
||||
printk(KERN_DEBUG "0x%lx: Interrupts are ISA-%s\n",
|
||||
pb->base, config & 0x80 ? "Level" : "Pulses");
|
||||
|
||||
configb = inb(CONFIGB(pb));
|
||||
printk(KERN_DEBUG "0x%lx: ECP port cfgA=0x%02x cfgB=0x%02x\n",
|
||||
pb->base, config, configb);
|
||||
pb->base, config, configb);
|
||||
printk(KERN_DEBUG "0x%lx: ECP settings irq=", pb->base);
|
||||
if ((configb >> 3) & 0x07)
|
||||
pr_cont("%d", intrline[(configb >> 3) & 0x07]);
|
||||
@@ -2453,8 +2451,7 @@ static int sio_via_probe(struct pci_dev *pdev, int autoirq, int autodma,
|
||||
have_epp = 1;
|
||||
break;
|
||||
default:
|
||||
printk(KERN_DEBUG
|
||||
"parport_pc: probing current configuration\n");
|
||||
printk(KERN_DEBUG "parport_pc: probing current configuration\n");
|
||||
siofunc = VIA_FUNCTION_PROBE;
|
||||
break;
|
||||
}
|
||||
@@ -2490,12 +2487,11 @@ static int sio_via_probe(struct pci_dev *pdev, int autoirq, int autodma,
|
||||
port1 = inb(VIA_CONFIG_DATA) << 2;
|
||||
|
||||
printk(KERN_DEBUG "parport_pc: Current parallel port base: 0x%X\n",
|
||||
port1);
|
||||
port1);
|
||||
if (port1 == 0x3BC && have_epp) {
|
||||
outb(via->viacfg_parport_base, VIA_CONFIG_INDEX);
|
||||
outb((0x378 >> 2), VIA_CONFIG_DATA);
|
||||
printk(KERN_DEBUG
|
||||
"parport_pc: Parallel port base changed to 0x378\n");
|
||||
printk(KERN_DEBUG "parport_pc: Parallel port base changed to 0x378\n");
|
||||
port1 = 0x378;
|
||||
}
|
||||
|
||||
@@ -2834,14 +2830,12 @@ static int parport_pc_pci_probe(struct pci_dev *dev,
|
||||
/* TODO: test if sharing interrupts works */
|
||||
irq = dev->irq;
|
||||
if (irq == IRQ_NONE) {
|
||||
printk(KERN_DEBUG
|
||||
"PCI parallel port detected: %04x:%04x, I/O at %#lx(%#lx)\n",
|
||||
id->vendor, id->device, io_lo, io_hi);
|
||||
printk(KERN_DEBUG "PCI parallel port detected: %04x:%04x, I/O at %#lx(%#lx)\n",
|
||||
id->vendor, id->device, io_lo, io_hi);
|
||||
irq = PARPORT_IRQ_NONE;
|
||||
} else {
|
||||
printk(KERN_DEBUG
|
||||
"PCI parallel port detected: %04x:%04x, I/O at %#lx(%#lx), IRQ %d\n",
|
||||
id->vendor, id->device, io_lo, io_hi, irq);
|
||||
printk(KERN_DEBUG "PCI parallel port detected: %04x:%04x, I/O at %#lx(%#lx), IRQ %d\n",
|
||||
id->vendor, id->device, io_lo, io_hi, irq);
|
||||
}
|
||||
data->ports[count] =
|
||||
parport_pc_probe_port(io_lo, io_hi, irq,
|
||||
@@ -3113,8 +3107,8 @@ static int __init parport_parse_dma(const char *dmastr, int *val)
|
||||
#ifdef CONFIG_PCI
|
||||
static int __init parport_init_mode_setup(char *str)
|
||||
{
|
||||
printk(KERN_DEBUG
|
||||
"parport_pc.c: Specified parameter parport_init_mode=%s\n", str);
|
||||
printk(KERN_DEBUG "parport_pc.c: Specified parameter parport_init_mode=%s\n",
|
||||
str);
|
||||
|
||||
if (!strcmp(str, "spp"))
|
||||
parport_init_mode = 1;
|
||||
|
Reference in New Issue
Block a user