public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: csmanjuvijay@gmail.com
Cc: Alan Stern <stern@rowland.harvard.edu>,
	linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] USB: OHCI: pxa27x: fix warnings and errors
Date: Tue, 6 Dec 2016 08:08:00 +0100	[thread overview]
Message-ID: <20161206070800.GC10047@kroah.com> (raw)
In-Reply-To: <1480976338-15646-1-git-send-email-csmanjuvijay@gmail.com>

On Mon, Dec 05, 2016 at 10:18:58PM +0000, csmanjuvijay@gmail.com wrote:
> From: Manjunath Goudar <csmanjuvijay@gmail.com>
> 
> This patch will fix the checkpatch.pl warnings and errors.
> 
> Signed-off-by: Manjunath Goudar <csmanjuvijay@gmail.com>
> Cc: Alan Stern <stern@rowland.harvard.edu>
> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> Cc: linux-usb@vger.kernel.org
> Cc: linux-kernel@vger.kernel.org
> ---
>  drivers/usb/host/ohci-pxa27x.c | 28 +++++++++++++---------------
>  1 file changed, 13 insertions(+), 15 deletions(-)
> 
> diff --git a/drivers/usb/host/ohci-pxa27x.c b/drivers/usb/host/ohci-pxa27x.c
> index 79efde8f..c50a767 100644
> --- a/drivers/usb/host/ohci-pxa27x.c
> +++ b/drivers/usb/host/ohci-pxa27x.c
> @@ -106,7 +106,8 @@
>  #define UHCHIE_UPS2IE	(1 << 12)	/* Power Sense Port2 IntEn */
>  #define UHCHIE_UPS1IE	(1 << 11)	/* Power Sense Port1 IntEn */
>  #define UHCHIE_TAIE	(1 << 10)	/* HCI Interface Transfer Abort
> -					   Interrupt Enable*/
> +					 * Interrupt Enable
> +					 */
>  #define UHCHIE_HBAIE	(1 << 8)	/* HCI Buffer Active IntEn */
>  #define UHCHIE_RWIE	(1 << 7)	/* Remote Wake-up IntEn */
>  
> @@ -128,14 +129,14 @@ struct pxa27x_ohci {
>  #define to_pxa27x_ohci(hcd)	(struct pxa27x_ohci *)(hcd_to_ohci(hcd)->priv)
>  
>  /*
> -  PMM_NPS_MODE -- PMM Non-power switching mode
> -      Ports are powered continuously.
> -
> -  PMM_GLOBAL_MODE -- PMM global switching mode
> -      All ports are powered at the same time.
> -
> -  PMM_PERPORT_MODE -- PMM per port switching mode
> -      Ports are powered individually.
> + * PMM_NPS_MODE -- PMM Non-power switching mode
> + *     Ports are powered continuously.
> + *
> + * PMM_GLOBAL_MODE -- PMM global switching mode
> + *     All ports are powered at the same time.
> + *
> + * PMM_PERPORT_MODE -- PMM per port switching mode
> + *     Ports are powered individually.
>   */
>  static int pxa27x_ohci_select_pmm(struct pxa27x_ohci *pxa_ohci, int mode)
>  {
> @@ -157,10 +158,7 @@ static int pxa27x_ohci_select_pmm(struct pxa27x_ohci *pxa_ohci, int mode)
>  		uhcrhdb |= (0x7<<17);
>  		break;
>  	default:
> -		printk( KERN_ERR
> -			"Invalid mode %d, set to non-power switch mode.\n",
> -			mode );
> -
> +		pr_err("Invalid mode %d,set to non-power switch mode.\n", mode);

Use dev_err() please.

>  		uhcrhda |= RH_A_NPS;
>  	}
>  
> @@ -541,7 +539,7 @@ static int ohci_hcd_pxa27x_drv_suspend(struct device *dev)
>  
>  
>  	if (time_before(jiffies, ohci->next_statechange))
> -		msleep(5);
> +	usleep_range(5000, 10000);

This is totally wrong :(


>  	ohci->next_statechange = jiffies;
>  
>  	ret = ohci_suspend(hcd, do_wakeup);
> @@ -561,7 +559,7 @@ static int ohci_hcd_pxa27x_drv_resume(struct device *dev)
>  	int status;
>  
>  	if (time_before(jiffies, ohci->next_statechange))
> -		msleep(5);
> +	usleep_range(5000, 10000);

As is this :(

Did you not check these changes?

  parent reply	other threads:[~2016-12-06  7:07 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <1480976338-15646-1-git-send-email-csmanjuvijay@gmail.com>
2016-12-06  7:07 ` [PATCH] USB: OHCI: pxa27x: fix warnings and errors Greg Kroah-Hartman
2016-12-06  7:08 ` Greg Kroah-Hartman [this message]
     [not found] ` <1481153865-20554-1-git-send-email-csmanjuvijay@gmail.com>
2016-12-08 16:49   ` [PATCH v2] USB: OHCI: pxa27x:fix warnings and error Greg Kroah-Hartman
     [not found]     ` <CAKsNYyyAx-OA5-4qJc-49Qt3n7u6Dq8SFy+KQsOLPKje4wAzag@mail.gmail.com>
2016-12-09  7:16       ` Greg Kroah-Hartman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20161206070800.GC10047@kroah.com \
    --to=gregkh@linuxfoundation.org \
    --cc=csmanjuvijay@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=stern@rowland.harvard.edu \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox