From: Greg KH <gregkh@linuxfoundation.org>
To: Prince Kumar Maurya <princekumarmaurya06@gmail.com>
Cc: krzk@kernel.org, raychi@google.com, skhan@linuxfoundation.org,
linux-kernel-mentees@lists.linuxfoundation.org,
linux-usb@vger.kernel.org
Subject: Re: [PATCH] driver/usb: Fixing code style error/warning
Date: Tue, 11 Jul 2023 06:44:31 +0200 [thread overview]
Message-ID: <2023071158-apron-acorn-30da@gregkh> (raw)
In-Reply-To: <20230711042720.2544320-1-princekumarmaurya06@gmail.com>
On Mon, Jul 10, 2023 at 09:27:20PM -0700, Prince Kumar Maurya wrote:
> Update the patch and verified it with --strict flag.
> Found no error/warning for this patch.
>
> Signed-off-by: Prince Kumar Maurya <princekumarmaurya06@gmail.com>
> ---
> drivers/usb/core/hub.c | 58 +++++++++++++++++++++---------------------
> 1 file changed, 29 insertions(+), 29 deletions(-)
>
> diff --git a/drivers/usb/core/hub.c b/drivers/usb/core/hub.c
> index a739403a9e45..27037affb746 100644
> --- a/drivers/usb/core/hub.c
> +++ b/drivers/usb/core/hub.c
> @@ -1777,7 +1777,7 @@ static bool hub_descriptor_is_sane(struct usb_host_interface *desc)
> if (!usb_endpoint_is_int_in(&desc->endpoint[0].desc))
> return false;
>
> - return true;
> + return true;
> }
>
> static int hub_probe(struct usb_interface *intf, const struct usb_device_id *id)
> @@ -5854,37 +5854,37 @@ static void hub_event(struct work_struct *work)
> }
>
> static const struct usb_device_id hub_id_table[] = {
> - { .match_flags = USB_DEVICE_ID_MATCH_VENDOR
> - | USB_DEVICE_ID_MATCH_PRODUCT
> - | USB_DEVICE_ID_MATCH_INT_CLASS,
> - .idVendor = USB_VENDOR_SMSC,
> - .idProduct = USB_PRODUCT_USB5534B,
> - .bInterfaceClass = USB_CLASS_HUB,
> - .driver_info = HUB_QUIRK_DISABLE_AUTOSUSPEND},
> - { .match_flags = USB_DEVICE_ID_MATCH_VENDOR
> - | USB_DEVICE_ID_MATCH_PRODUCT,
> - .idVendor = USB_VENDOR_CYPRESS,
> - .idProduct = USB_PRODUCT_CY7C65632,
> - .driver_info = HUB_QUIRK_DISABLE_AUTOSUSPEND},
> - { .match_flags = USB_DEVICE_ID_MATCH_VENDOR
> + { .match_flags = USB_DEVICE_ID_MATCH_VENDOR
> + | USB_DEVICE_ID_MATCH_PRODUCT
> + | USB_DEVICE_ID_MATCH_INT_CLASS,
> + .idVendor = USB_VENDOR_SMSC,
> + .idProduct = USB_PRODUCT_USB5534B,
> + .bInterfaceClass = USB_CLASS_HUB,
> + .driver_info = HUB_QUIRK_DISABLE_AUTOSUSPEND},
> + { .match_flags = USB_DEVICE_ID_MATCH_VENDOR
> + | USB_DEVICE_ID_MATCH_PRODUCT,
> + .idVendor = USB_VENDOR_CYPRESS,
> + .idProduct = USB_PRODUCT_CY7C65632,
> + .driver_info = HUB_QUIRK_DISABLE_AUTOSUSPEND},
> + { .match_flags = USB_DEVICE_ID_MATCH_VENDOR
> | USB_DEVICE_ID_MATCH_INT_CLASS,
> - .idVendor = USB_VENDOR_GENESYS_LOGIC,
> - .bInterfaceClass = USB_CLASS_HUB,
> - .driver_info = HUB_QUIRK_CHECK_PORT_AUTOSUSPEND},
> - { .match_flags = USB_DEVICE_ID_MATCH_VENDOR
> + .idVendor = USB_VENDOR_GENESYS_LOGIC,
> + .bInterfaceClass = USB_CLASS_HUB,
> + .driver_info = HUB_QUIRK_CHECK_PORT_AUTOSUSPEND},
> + { .match_flags = USB_DEVICE_ID_MATCH_VENDOR
> | USB_DEVICE_ID_MATCH_PRODUCT,
> - .idVendor = USB_VENDOR_TEXAS_INSTRUMENTS,
> - .idProduct = USB_PRODUCT_TUSB8041_USB2,
> - .driver_info = HUB_QUIRK_DISABLE_AUTOSUSPEND},
> - { .match_flags = USB_DEVICE_ID_MATCH_VENDOR
> + .idVendor = USB_VENDOR_TEXAS_INSTRUMENTS,
> + .idProduct = USB_PRODUCT_TUSB8041_USB2,
> + .driver_info = HUB_QUIRK_DISABLE_AUTOSUSPEND},
> + { .match_flags = USB_DEVICE_ID_MATCH_VENDOR
> | USB_DEVICE_ID_MATCH_PRODUCT,
> - .idVendor = USB_VENDOR_TEXAS_INSTRUMENTS,
> - .idProduct = USB_PRODUCT_TUSB8041_USB3,
> - .driver_info = HUB_QUIRK_DISABLE_AUTOSUSPEND},
> - { .match_flags = USB_DEVICE_ID_MATCH_DEV_CLASS,
> - .bDeviceClass = USB_CLASS_HUB},
> - { .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS,
> - .bInterfaceClass = USB_CLASS_HUB},
> + .idVendor = USB_VENDOR_TEXAS_INSTRUMENTS,
> + .idProduct = USB_PRODUCT_TUSB8041_USB3,
> + .driver_info = HUB_QUIRK_DISABLE_AUTOSUSPEND},
> + { .match_flags = USB_DEVICE_ID_MATCH_DEV_CLASS,
> + .bDeviceClass = USB_CLASS_HUB},
> + { .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS,
> + .bInterfaceClass = USB_CLASS_HUB},
> { } /* Terminating entry */
> };
>
> --
> 2.40.1
>
Hi,
This is the friendly patch-bot of Greg Kroah-Hartman. You have sent him
a patch that has triggered this response. He used to manually respond
to these common problems, but in order to save his sanity (he kept
writing the same thing over and over, yet to different people), I was
created. Hopefully you will not take offence and will fix the problem
in your patch and resubmit it so that it can be accepted into the Linux
kernel tree.
You are receiving this message because of the following common error(s)
as indicated below:
- Your patch did many different things all at once, making it difficult
to review. All Linux kernel patches need to only do one thing at a
time. If you need to do multiple things (such as clean up all coding
style issues in a file/driver), do it in a sequence of patches, each
one doing only one thing. This will make it easier to review the
patches to ensure that they are correct, and to help alleviate any
merge issues that larger patches can cause.
- You did not specify a description of why the patch is needed, or
possibly, any description at all, in the email body. Please read the
section entitled "The canonical patch format" in the kernel file,
Documentation/process/submitting-patches.rst for what is needed in
order to properly describe the change.
- You did not write a descriptive Subject: for the patch, allowing Greg,
and everyone else, to know what this patch is all about. Please read
the section entitled "The canonical patch format" in the kernel file,
Documentation/process/submitting-patches.rst for what a proper
Subject: line should look like.
- This looks like a new version of a previously submitted patch, but you
did not list below the --- line any changes from the previous version.
Please read the section entitled "The canonical patch format" in the
kernel file, Documentation/process/submitting-patches.rst for what
needs to be done here to properly describe this.
If you wish to discuss this problem further, or you have questions about
how to resolve this issue, please feel free to respond to this email and
Greg will reply once he has dug out from the pending patches received
from other developers.
thanks,
greg k-h's patch email bot
prev parent reply other threads:[~2023-07-11 4:44 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-07-09 0:51 [PATCH] Style error/warning fixes: replacing space with tabs Prince Kumar Maurya
2023-07-10 9:24 ` Krzysztof Kozlowski
2023-07-11 4:27 ` [PATCH] driver/usb: Fixing code style error/warning Prince Kumar Maurya
2023-07-11 4:44 ` Greg KH [this message]
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=2023071158-apron-acorn-30da@gregkh \
--to=gregkh@linuxfoundation.org \
--cc=krzk@kernel.org \
--cc=linux-kernel-mentees@lists.linuxfoundation.org \
--cc=linux-usb@vger.kernel.org \
--cc=princekumarmaurya06@gmail.com \
--cc=raychi@google.com \
--cc=skhan@linuxfoundation.org \
/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;
as well as URLs for NNTP newsgroup(s).