linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Heikki Krogerus <heikki.krogerus@linux.intel.com>
To: Bjorn Andersson <bjorn.andersson@linaro.org>
Cc: Andy Shevchenko <andriy.shevchenko@linux.intel.com>,
	Rob Herring <robh+dt@kernel.org>,
	Daniel Scally <djrscally@gmail.com>,
	Sakari Ailus <sakari.ailus@linux.intel.com>,
	"Rafael J. Wysocki" <rafael@kernel.org>,
	Hans de Goede <hdegoede@redhat.com>,
	linux-usb@vger.kernel.org, devicetree@vger.kernel.org,
	linux-kernel@vger.kernel.org, linux-acpi@vger.kernel.org,
	Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Subject: Re: [PATCH v4 3/7] usb: typec: mux: Check dev_set_name() return value
Date: Mon, 7 Mar 2022 16:52:45 +0200	[thread overview]
Message-ID: <YiYcPa2XE2MlKVQU@kuha.fi.intel.com> (raw)
In-Reply-To: <YiYXywEEz7WZQhfd@ripper>

On Mon, Mar 07, 2022 at 06:33:47AM -0800, Bjorn Andersson wrote:
> On Mon 07 Mar 02:08 PST 2022, Andy Shevchenko wrote:
> 
> > On Sun, Mar 06, 2022 at 07:40:36PM -0800, Bjorn Andersson wrote:
> > > It's possible that dev_set_name() returns -ENOMEM, catch and handle this.
> > 
> > Thanks!
> > Shouldn't we have a Fixes tag and be sent separately for this cycle?
> > 
> 
> It seems appropriate to add:
> 
> Fixes: 3370db35193b ("usb: typec: Registering real device entries for the muxes")
> 
> 
> If the maintainer would prefer to get this into v5.18, it could either
> be picked ahead of the rest of the series, or I can resubmit it on its
> own. I don't think it's a critical fix though.

Me neither.

Acked-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>

> > > Reported-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> > > Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
> > > ---
> > > 
> > > Changes since v3:
> > > - New patch
> > > 
> > >  drivers/usb/typec/mux.c | 14 ++++++++++----
> > >  1 file changed, 10 insertions(+), 4 deletions(-)
> > > 
> > > diff --git a/drivers/usb/typec/mux.c b/drivers/usb/typec/mux.c
> > > index c8340de0ed49..d2aaf294b649 100644
> > > --- a/drivers/usb/typec/mux.c
> > > +++ b/drivers/usb/typec/mux.c
> > > @@ -131,8 +131,11 @@ typec_switch_register(struct device *parent,
> > >  	sw->dev.class = &typec_mux_class;
> > >  	sw->dev.type = &typec_switch_dev_type;
> > >  	sw->dev.driver_data = desc->drvdata;
> > > -	dev_set_name(&sw->dev, "%s-switch",
> > > -		     desc->name ? desc->name : dev_name(parent));
> > > +	ret = dev_set_name(&sw->dev, "%s-switch", desc->name ? desc->name : dev_name(parent));
> > 
> > We may use shorten form of the ternary
> > 
> > 	ret = dev_set_name(&sw->dev, "%s-switch", desc->name ?: dev_name(parent));
> > 
> > at the same time, but it's up to you.
> > 
> 
> I looked at it, but felt it was an unrelated change and decided to leave
> it as is.
> 
> > Either way code looks good to me,
> > Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> > 
> 
> Thanks,
> Bjorn
> 
> > > +	if (ret) {
> > > +		put_device(&sw->dev);
> > > +		return ERR_PTR(ret);
> > > +	}
> > >  
> > >  	ret = device_add(&sw->dev);
> > >  	if (ret) {
> > > @@ -338,8 +341,11 @@ typec_mux_register(struct device *parent, const struct typec_mux_desc *desc)
> > >  	mux->dev.class = &typec_mux_class;
> > >  	mux->dev.type = &typec_mux_dev_type;
> > >  	mux->dev.driver_data = desc->drvdata;
> > > -	dev_set_name(&mux->dev, "%s-mux",
> > > -		     desc->name ? desc->name : dev_name(parent));
> > > +	ret = dev_set_name(&mux->dev, "%s-mux", desc->name ? desc->name : dev_name(parent));
> > 
> > Ditto.
> > 
> > > +	if (ret) {
> > > +		put_device(&mux->dev);
> > > +		return ERR_PTR(ret);
> > > +	}
> > >  
> > >  	ret = device_add(&mux->dev);
> > >  	if (ret) {
> > > -- 
> > > 2.33.1
> > > 
> > 
> > -- 
> > With Best Regards,
> > Andy Shevchenko
> > 
> > 

-- 
heikki

  reply	other threads:[~2022-03-07 14:53 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-03-07  3:40 [PATCH v4 1/7] device property: Helper to match multiple connections Bjorn Andersson
2022-03-07  3:40 ` [PATCH v4 2/7] device property: Use multi-connection matchers for single case Bjorn Andersson
2022-03-07  3:40 ` [PATCH v4 3/7] usb: typec: mux: Check dev_set_name() return value Bjorn Andersson
2022-03-07 10:08   ` Andy Shevchenko
2022-03-07 14:33     ` Bjorn Andersson
2022-03-07 14:52       ` Heikki Krogerus [this message]
2022-03-07  3:40 ` [PATCH v4 4/7] usb: typec: mux: Introduce indirection Bjorn Andersson
2022-03-07  3:40 ` [PATCH v4 5/7] usb: typec: mux: Allow multiple mux_devs per mux Bjorn Andersson
2022-03-07  3:40 ` [PATCH v4 6/7] dt-bindings: usb: Add binding for fcs,fsa4480 Bjorn Andersson
2022-03-07  3:40 ` [PATCH v4 7/7] usb: typec: mux: Add On Semi fsa4480 driver Bjorn Andersson
2022-03-07 10:16   ` Andy Shevchenko
2022-03-07 14:48     ` Bjorn Andersson
2022-03-07 16:13       ` Andy Shevchenko
2022-03-07 21:04         ` Bjorn Andersson
2022-03-07 22:13           ` Andy Shevchenko
2022-03-08  0:01             ` Bjorn Andersson
2022-03-07 10:05 ` [PATCH v4 1/7] device property: Helper to match multiple connections Andy Shevchenko
2022-03-07 19:13   ` Bjorn Andersson

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=YiYcPa2XE2MlKVQU@kuha.fi.intel.com \
    --to=heikki.krogerus@linux.intel.com \
    --cc=andriy.shevchenko@linux.intel.com \
    --cc=bjorn.andersson@linaro.org \
    --cc=devicetree@vger.kernel.org \
    --cc=djrscally@gmail.com \
    --cc=dmitry.baryshkov@linaro.org \
    --cc=hdegoede@redhat.com \
    --cc=linux-acpi@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=rafael@kernel.org \
    --cc=robh+dt@kernel.org \
    --cc=sakari.ailus@linux.intel.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;
as well as URLs for NNTP newsgroup(s).