linux-usb.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] usb: dwc2: Using tab instead of blank
@ 2021-03-19  9:00 Zeng Tao
  2021-03-19  9:09 ` Minas Harutyunyan
  2021-03-19  9:31 ` Greg Kroah-Hartman
  0 siblings, 2 replies; 4+ messages in thread
From: Zeng Tao @ 2021-03-19  9:00 UTC (permalink / raw)
  To: hminas; +Cc: linuxarm, Zeng Tao, Greg Kroah-Hartman, linux-usb, linux-kernel

Signed-off-by: Zeng Tao <prime.zeng@hisilicon.com>
---
 drivers/usb/dwc2/gadget.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/usb/dwc2/gadget.c b/drivers/usb/dwc2/gadget.c
index ad4c943..53406f0 100644
--- a/drivers/usb/dwc2/gadget.c
+++ b/drivers/usb/dwc2/gadget.c
@@ -3380,7 +3380,7 @@ void dwc2_hsotg_core_init_disconnected(struct dwc2_hsotg *hsotg,
 
 	/* remove the HNP/SRP and set the PHY */
 	usbcfg &= ~(GUSBCFG_SRPCAP | GUSBCFG_HNPCAP);
-        dwc2_writel(hsotg, usbcfg, GUSBCFG);
+	dwc2_writel(hsotg, usbcfg, GUSBCFG);
 
 	dwc2_phy_init(hsotg, true);
 
-- 
2.8.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] usb: dwc2: Using tab instead of blank
  2021-03-19  9:00 [PATCH] usb: dwc2: Using tab instead of blank Zeng Tao
@ 2021-03-19  9:09 ` Minas Harutyunyan
  2021-03-19  9:31 ` Greg Kroah-Hartman
  1 sibling, 0 replies; 4+ messages in thread
From: Minas Harutyunyan @ 2021-03-19  9:09 UTC (permalink / raw)
  To: Zeng Tao; +Cc: linuxarm, Greg Kroah-Hartman, linux-usb, linux-kernel

On 3/19/2021 1:00 PM, Zeng Tao wrote:
> Signed-off-by: Zeng Tao <prime.zeng@hisilicon.com>

Acked-by: Minas Harutyunyan <Minas.Harutyunyan@synopsys.com>

> ---
>   drivers/usb/dwc2/gadget.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/usb/dwc2/gadget.c b/drivers/usb/dwc2/gadget.c
> index ad4c943..53406f0 100644
> --- a/drivers/usb/dwc2/gadget.c
> +++ b/drivers/usb/dwc2/gadget.c
> @@ -3380,7 +3380,7 @@ void dwc2_hsotg_core_init_disconnected(struct dwc2_hsotg *hsotg,
>   
>   	/* remove the HNP/SRP and set the PHY */
>   	usbcfg &= ~(GUSBCFG_SRPCAP | GUSBCFG_HNPCAP);
> -        dwc2_writel(hsotg, usbcfg, GUSBCFG);
> +	dwc2_writel(hsotg, usbcfg, GUSBCFG);
>   
>   	dwc2_phy_init(hsotg, true);
>   
> 


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] usb: dwc2: Using tab instead of blank
  2021-03-19  9:00 [PATCH] usb: dwc2: Using tab instead of blank Zeng Tao
  2021-03-19  9:09 ` Minas Harutyunyan
@ 2021-03-19  9:31 ` Greg Kroah-Hartman
  2021-03-22  9:44   ` 答复: " Zengtao (B)
  1 sibling, 1 reply; 4+ messages in thread
From: Greg Kroah-Hartman @ 2021-03-19  9:31 UTC (permalink / raw)
  To: Zeng Tao; +Cc: hminas, linuxarm, linux-usb, linux-kernel

On Fri, Mar 19, 2021 at 05:00:55PM +0800, Zeng Tao wrote:
> Signed-off-by: Zeng Tao <prime.zeng@hisilicon.com>

I can not take patches without any changelog text, sorry.

greg k-h

^ permalink raw reply	[flat|nested] 4+ messages in thread

* 答复: [PATCH] usb: dwc2: Using tab instead of blank
  2021-03-19  9:31 ` Greg Kroah-Hartman
@ 2021-03-22  9:44   ` Zengtao (B)
  0 siblings, 0 replies; 4+ messages in thread
From: Zengtao (B) @ 2021-03-22  9:44 UTC (permalink / raw)
  To: Greg Kroah-Hartman, hminas; +Cc: Linuxarm, linux-usb, linux-kernel

Hi Minas, greg k-h

Please ignore this patch, it's an incomplete version sent by mistake,
 Sorry for the noise.

> -----邮件原件-----
> 发件人: Greg Kroah-Hartman [mailto:gregkh@linuxfoundation.org]
> 发送时间: 2021年3月19日 17:32
> 收件人: Zengtao (B) <prime.zeng@hisilicon.com>
> 抄送: hminas@synopsys.com; Linuxarm <linuxarm@huawei.com>;
> linux-usb@vger.kernel.org; linux-kernel@vger.kernel.org
> 主题: Re: [PATCH] usb: dwc2: Using tab instead of blank
> 
> On Fri, Mar 19, 2021 at 05:00:55PM +0800, Zeng Tao wrote:
> > Signed-off-by: Zeng Tao <prime.zeng@hisilicon.com>
> 
> I can not take patches without any changelog text, sorry.
> 
> greg k-h

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-03-22  9:45 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-19  9:00 [PATCH] usb: dwc2: Using tab instead of blank Zeng Tao
2021-03-19  9:09 ` Minas Harutyunyan
2021-03-19  9:31 ` Greg Kroah-Hartman
2021-03-22  9:44   ` 答复: " Zengtao (B)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).