From: Greg KH <gregkh@linuxfoundation.org>
To: Philipp Hortmann <philipp.g.hortmann@gmail.com>
Cc: linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] Update min() to min_t()
Date: Tue, 21 Sep 2021 08:04:03 +0200 [thread overview]
Message-ID: <YUl1067kvLA5KkGC@kroah.com> (raw)
In-Reply-To: <20210921055246.GA11535@matrix-ESPRIMO-P710>
On Tue, Sep 21, 2021 at 07:52:46AM +0200, Philipp Hortmann wrote:
> This patch fixes the checkpatch.pl warning:
> WARNING: min() should probably be min_t(size_t, count, MAX_TRANSFER)
> + size_t writesize = min(count, (size_t)MAX_TRANSFER);
>
> Signed-off-by: Philipp Hortmann <philipp.g.hortmann@gmail.com>
> ---
> drivers/usb/usb-skeleton.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Please resend with the subject line adding the subsystem and driver name
so that we can better know what you are modifying here.
> diff --git a/drivers/usb/usb-skeleton.c b/drivers/usb/usb-skeleton.c
> index 2dc58766273a..d87deee3e26e 100644
> --- a/drivers/usb/usb-skeleton.c
> +++ b/drivers/usb/usb-skeleton.c
> @@ -363,7 +363,7 @@ static ssize_t skel_write(struct file *file, const char *user_buffer,
> int retval = 0;
> struct urb *urb = NULL;
> char *buf = NULL;
> - size_t writesize = min(count, (size_t)MAX_TRANSFER);
> + size_t writesize = min_t(size_t, count, MAX_TRANSFER);
>
> dev = file->private_data;
>
> --
> 2.25.1
>
Has anyone actually built this driver in a while?
thanks,
greg k-h
next prev parent reply other threads:[~2021-09-21 6:04 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-09-21 5:52 [PATCH] Update min() to min_t() Philipp Hortmann
2021-09-21 6:04 ` Greg KH [this message]
2021-09-21 19:11 ` Philipp Hortmann
2021-09-22 5:58 ` Greg KH
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=YUl1067kvLA5KkGC@kroah.com \
--to=gregkh@linuxfoundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=philipp.g.hortmann@gmail.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