On Sat, Dec 10, 2016 at 01:13:28AM +0000, [email protected] wrote: > From: Manjunath Goudar <[email protected]> > > This patch will fix the checkpatch.pl following errors: > > ERROR: space prohibited after that open parenthesis '(' > ERROR: space prohibited before that close parenthesis ')' > > Signed-off-by: Manjunath Goudar <[email protected]> > Cc: Alan Stern <[email protected]> > Cc: Greg Kroah-Hartman <[email protected]> > Cc: [email protected] > Cc: [email protected] > --- > drivers/usb/host/ohci-pxa27x.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/usb/host/ohci-pxa27x.c b/drivers/usb/host/ohci-pxa27x.c > index c73e1ae..0f33583 100644 > --- a/drivers/usb/host/ohci-pxa27x.c > +++ b/drivers/usb/host/ohci-pxa27x.c > @@ -158,9 +158,9 @@ static int pxa27x_ohci_select_pmm(struct pxa27x_ohci > *pxa_ohci, int mode) > uhcrhdb |= (0x7<<17); > break; > default: > - printk( KERN_ERR > + printk(KERN_ERR > "Invalid mode %d, set to non-power switch mode.\n", > - mode ); > + mode);
Fix this properly and use dev_err() in a way that actually builds properly this time. thanks, greg k-h

