From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: Dongliang Mu <mudongliangabcd@gmail.com>
Cc: Dongliang Mu <dzm91@hust.edu.cn>, USB <linux-usb@vger.kernel.org>,
linux-kernel <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH v2 2/2] USB: trancevibrator: simplify tv_probe
Date: Fri, 12 Aug 2022 07:59:25 +0200 [thread overview]
Message-ID: <YvXsPQjC83N9iNVI@kroah.com> (raw)
In-Reply-To: <CAD-N9QWJt5_XyfdjWyN8q9HjBNnm=nzb2t+C+RS-mxEXTyZo2g@mail.gmail.com>
On Fri, Aug 12, 2022 at 08:21:00AM +0800, Dongliang Mu wrote:
> On Thu, Aug 11, 2022 at 5:06 PM Greg Kroah-Hartman
> <gregkh@linuxfoundation.org> wrote:
> >
> > On Thu, Aug 11, 2022 at 05:02:09PM +0800, Dongliang Mu wrote:
> > > From: Dongliang Mu <mudongliangabcd@gmail.com>
> > >
> > > The function tv_probe does not need to invoke kfree when the
> > > allocation fails. So let's simplify the code of tv_probe.
> > >
> > > Signed-off-by: Dongliang Mu <mudongliangabcd@gmail.com>
> > > ---
> > > drivers/usb/misc/trancevibrator.c | 11 ++---------
> > > 1 file changed, 2 insertions(+), 9 deletions(-)
> > >
> > > diff --git a/drivers/usb/misc/trancevibrator.c b/drivers/usb/misc/trancevibrator.c
> > > index 55cb63652eda..30d4d774d448 100644
> > > --- a/drivers/usb/misc/trancevibrator.c
> > > +++ b/drivers/usb/misc/trancevibrator.c
> > > @@ -84,22 +84,15 @@ static int tv_probe(struct usb_interface *interface,
> > > {
> > > struct usb_device *udev = interface_to_usbdev(interface);
> > > struct trancevibrator *dev;
> > > - int retval;
> > >
> > > dev = kzalloc(sizeof(struct trancevibrator), GFP_KERNEL);
> > > - if (!dev) {
> > > - retval = -ENOMEM;
> > > - goto error;
> > > - }
> > > + if (!dev)
> > > + return -ENOMEM;
> > >
> > > dev->udev = usb_get_dev(udev);
> > > usb_set_intfdata(interface, dev);
> > >
> > > return 0;
> > > -
> > > -error:
> > > - kfree(dev);
> > > - return retval;
> > > }
> > >
> > > static void tv_disconnect(struct usb_interface *interface)
> > > --
> > > 2.35.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:
> >
> > - 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/SubmittingPatches for what needs to be done
> > here to properly describe this.
>
> Sorry, Greg. I forget to add the changes:
>
> v1->v2: fix the truncated subject of PATCH 2/2.
>
> Shall I resend another v2 patch with change information or send a v3
> patch with this information?
v3 please.
next prev parent reply other threads:[~2022-08-12 6:00 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-08-11 9:02 [PATCH v2 1/2] USB: trancevibrator: remove redundant space Dongliang Mu
2022-08-11 9:02 ` [PATCH v2 2/2] USB: trancevibrator: simplify tv_probe Dongliang Mu
2022-08-11 9:06 ` Greg Kroah-Hartman
2022-08-12 0:21 ` Dongliang Mu
2022-08-12 5:59 ` Greg Kroah-Hartman [this message]
2022-08-11 9:06 ` [PATCH v2 1/2] USB: trancevibrator: remove redundant space 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=YvXsPQjC83N9iNVI@kroah.com \
--to=gregkh@linuxfoundation.org \
--cc=dzm91@hust.edu.cn \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=mudongliangabcd@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