From: Chunfeng Yun <chunfeng.yun@mediatek.com>
To: Florian Fainelli <f.fainelli@gmail.com>
Cc: Felipe Balbi <balbi@kernel.org>,
Florian Fainelli <f.fainelli@gmail.com>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Matthias Brugger <matthias.bgg@gmail.com>,
Al Cooper <alcooperx@gmail.com>,
Sasi Kumar <sasi.kumar@broadcom.com>,
Peter Chen <peter.chen@nxp.com>,
Minas Harutyunyan <hminas@synopsys.com>,
Nathan Chancellor <natechancellor@gmail.com>,
Colin Ian King <colin.king@canonical.com>,
<linux-usb@vger.kernel.org>, <linux-kernel@vger.kernel.org>,
<linux-arm-kernel@lists.infradead.org>,
<linux-mediatek@lists.infradead.org>
Subject: Re: [PATCH v2 01/11] usb: gadget: bdc: fix improper SPDX comment style for header file
Date: Fri, 4 Sep 2020 11:17:28 +0800 [thread overview]
Message-ID: <1599189448.11403.33.camel@mhfsdcap03> (raw)
In-Reply-To: <1597923046-12535-1-git-send-email-chunfeng.yun@mediatek.com>
Hi Florian,
On Thu, 2020-08-20 at 19:30 +0800, Chunfeng Yun wrote:
> For C header files Documentation/process/license-rules.rst
> mandates C-like comments (opposed to C source files where
> C++ style should be used).
>
> Cc: Florian Fainelli <f.fainelli@gmail.com>
> Signed-off-by: Chunfeng Yun <chunfeng.yun@mediatek.com>
> ---
> v2: add Cc Florian
> ---
> drivers/usb/gadget/udc/bdc/bdc.h | 2 +-
> drivers/usb/gadget/udc/bdc/bdc_cmd.h | 2 +-
> drivers/usb/gadget/udc/bdc/bdc_dbg.h | 2 +-
> drivers/usb/gadget/udc/bdc/bdc_ep.h | 2 +-
> 4 files changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/usb/gadget/udc/bdc/bdc.h b/drivers/usb/gadget/udc/bdc/bdc.h
> index ac75e25..fcba77e 100644
> --- a/drivers/usb/gadget/udc/bdc/bdc.h
> +++ b/drivers/usb/gadget/udc/bdc/bdc.h
> @@ -1,4 +1,4 @@
> -// SPDX-License-Identifier: GPL-2.0+
> +/* SPDX-License-Identifier: GPL-2.0+ */
> /*
> * bdc.h - header for the BRCM BDC USB3.0 device controller
> *
> diff --git a/drivers/usb/gadget/udc/bdc/bdc_cmd.h b/drivers/usb/gadget/udc/bdc/bdc_cmd.h
> index 29cc988..373e674 100644
> --- a/drivers/usb/gadget/udc/bdc/bdc_cmd.h
> +++ b/drivers/usb/gadget/udc/bdc/bdc_cmd.h
> @@ -1,4 +1,4 @@
> -// SPDX-License-Identifier: GPL-2.0+
> +/* SPDX-License-Identifier: GPL-2.0+ */
> /*
> * bdc_cmd.h - header for the BDC debug functions
> *
> diff --git a/drivers/usb/gadget/udc/bdc/bdc_dbg.h b/drivers/usb/gadget/udc/bdc/bdc_dbg.h
> index 373d5ab..859d588 100644
> --- a/drivers/usb/gadget/udc/bdc/bdc_dbg.h
> +++ b/drivers/usb/gadget/udc/bdc/bdc_dbg.h
> @@ -1,4 +1,4 @@
> -// SPDX-License-Identifier: GPL-2.0+
> +/* SPDX-License-Identifier: GPL-2.0+ */
> /*
> * bdc_dbg.h - header for the BDC debug functions
> *
> diff --git a/drivers/usb/gadget/udc/bdc/bdc_ep.h b/drivers/usb/gadget/udc/bdc/bdc_ep.h
> index a37ff803..5bbd73f 100644
> --- a/drivers/usb/gadget/udc/bdc/bdc_ep.h
> +++ b/drivers/usb/gadget/udc/bdc/bdc_ep.h
> @@ -1,4 +1,4 @@
> -// SPDX-License-Identifier: GPL-2.0+
> +/* SPDX-License-Identifier: GPL-2.0+ */
> /*
> * bdc_ep.h - header for the BDC debug functions
> *
Would you please take a look at this series?
I'll drop the patches that not fine with you.
Thanks
next prev parent reply other threads:[~2020-09-04 3:19 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-08-20 11:30 [PATCH v2 01/11] usb: gadget: bdc: fix improper SPDX comment style for header file Chunfeng Yun
2020-08-20 11:30 ` [PATCH v2 02/11] usb: gadget: bdc: remove bdc_ep_set_halt() declaration Chunfeng Yun
2020-09-04 3:49 ` Florian Fainelli
2020-08-20 11:30 ` [PATCH v2 03/11] usb: gadget: bdc: prefer pointer dereference to pointer type Chunfeng Yun
2020-09-04 3:49 ` Florian Fainelli
2020-08-20 11:30 ` [PATCH v2 04/11] usb: gadget: bdc: fix warning of embedded function name Chunfeng Yun
2020-09-04 3:49 ` Florian Fainelli
2020-08-20 11:30 ` [PATCH v2 05/11] usb: gadget: bdc: fix check warning of block comments alignment Chunfeng Yun
2020-09-04 3:50 ` Florian Fainelli
2020-08-20 11:30 ` [PATCH v2 06/11] usb: gadget: bdc: add identifier name for function declaraion Chunfeng Yun
2020-09-04 3:50 ` Florian Fainelli
2020-08-20 11:30 ` [PATCH v2 07/11] usb: gadget: bdc: avoid precedence issues Chunfeng Yun
2020-09-04 3:50 ` Florian Fainelli
2020-08-20 11:30 ` [PATCH v2 08/11] usb: gadget: bdc: use the BIT macro to define bit filed Chunfeng Yun
2020-09-04 3:51 ` Florian Fainelli
2020-08-20 11:30 ` [PATCH v2 09/11] usb: gadget: bdc: fix checkpatch.pl tab warning Chunfeng Yun
2020-09-04 3:52 ` Florian Fainelli
2020-08-20 11:30 ` [PATCH v2 10/11] usb: gadget: bdc: fix checkpatch.pl spacing error Chunfeng Yun
2020-09-04 3:52 ` Florian Fainelli
2020-08-20 11:30 ` [PATCH v2 11/11] usb: gadget: bdc: fix checkpatch.pl repeated word warning Chunfeng Yun
2020-09-04 3:52 ` Florian Fainelli
2020-09-04 3:17 ` Chunfeng Yun [this message]
2020-09-04 3:53 ` [PATCH v2 01/11] usb: gadget: bdc: fix improper SPDX comment style for header file Florian Fainelli
2020-09-04 3:48 ` Florian Fainelli
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=1599189448.11403.33.camel@mhfsdcap03 \
--to=chunfeng.yun@mediatek.com \
--cc=alcooperx@gmail.com \
--cc=balbi@kernel.org \
--cc=colin.king@canonical.com \
--cc=f.fainelli@gmail.com \
--cc=gregkh@linuxfoundation.org \
--cc=hminas@synopsys.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mediatek@lists.infradead.org \
--cc=linux-usb@vger.kernel.org \
--cc=matthias.bgg@gmail.com \
--cc=natechancellor@gmail.com \
--cc=peter.chen@nxp.com \
--cc=sasi.kumar@broadcom.com \
/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