From: Guenter Roeck <linux-0h96xk9xTtrk1uMJSBkQmQ@public.gmane.org>
To: Wolfram Sang <wsa-z923LK4zBo2bacvFa/9K2g@public.gmane.org>
Cc: linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Gerlando Falauto
<gerlando.falauto-SkAbAL50j+5BDgjK7y7TUQ@public.gmane.org>,
Jean Delvare <jdelvare-l3A5Bk7waGM@public.gmane.org>,
Martin Belanger
<martin.belanger-Ir6+u9MVKBtBDgjK7y7TUQ@public.gmane.org>,
Rodolfo Giometti
<giometti-AVVDYK/kqiJWk0Htik3J/w@public.gmane.org>,
Michael Lawnick <ml.lawnick-Mmb7MZpHnFY@public.gmane.org>,
Jeroen De Wachter
<jeroen.de.wachter-CNXmb7IdZIWZIoH1IeqzKA@public.gmane.org>
Subject: Re: [PATCH] i2c: mux: create proper topology in sysfs
Date: Tue, 04 Nov 2014 06:46:49 -0800 [thread overview]
Message-ID: <5458E6D9.1090607@roeck-us.net> (raw)
In-Reply-To: <20141104143309.GA12933@katana>
On 11/04/2014 06:33 AM, Wolfram Sang wrote:
>
>> Ok, I think I know the problem. In my case, the parent adapter
>> and the mux device are the same (since both are on the same chip
>> and the mux is really merged into the i2c controller).
>>
>> I'll have to figure out how to fix that.
>
> Maybe something like this on top helps already? It skips link creation
> if the parent device is the parent i2c adapter. We should have this
> anyway...
>
I'll test tonight ... I'll be in meetings all day :-(.
Guenter
> --- a/drivers/i2c/i2c-mux.c
> +++ b/drivers/i2c/i2c-mux.c
> @@ -184,8 +184,11 @@ struct i2c_adapter *i2c_add_mux_adapter(struct i2c_adapter *parent,
> return NULL;
> }
>
> - WARN(sysfs_create_link(&parent->dev.kobj, &priv->adap.dev.kobj, priv->adap.dev.kobj.name),
> - "can't create compatibility link for old mux name scheme\n");
> + /* If necessary, create symlink to match old mux name scheme */
> + if (mux_dev != &parent->dev)
> + WARN(sysfs_create_link(&parent->dev.kobj, &priv->adap.dev.kobj,
> + dev_name(&priv->adap.dev)),
> + "can't create compatibility link for old mux name scheme\n");
>
> dev_info(&parent->dev, "Added multiplexed i2c bus %d\n",
> i2c_adapter_id(&priv->adap));
> @@ -198,7 +201,8 @@ void i2c_del_mux_adapter(struct i2c_adapter *adap)
> {
> struct i2c_mux_priv *priv = adap->algo_data;
>
> - sysfs_remove_link(&priv->parent->dev.kobj, adap->dev.kobj.name);
> + if (priv->adap.dev.parent != &priv->parent->dev)
> + sysfs_remove_link(&priv->parent->dev.kobj, dev_name(&adap->dev));
> i2c_del_adapter(adap);
> kfree(priv);
> }
>
next prev parent reply other threads:[~2014-11-04 14:46 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-11-02 20:40 [PATCH] i2c: mux: create proper topology in sysfs Wolfram Sang
[not found] ` <1414960809-16860-1-git-send-email-wsa-z923LK4zBo2bacvFa/9K2g@public.gmane.org>
2014-11-03 20:39 ` Guenter Roeck
2014-11-03 20:55 ` Guenter Roeck
[not found] ` <20141103205534.GA18937-0h96xk9xTtrk1uMJSBkQmQ@public.gmane.org>
2014-11-03 21:02 ` Wolfram Sang
2014-11-03 22:18 ` Guenter Roeck
[not found] ` <20141103221850.GA16026-0h96xk9xTtrk1uMJSBkQmQ@public.gmane.org>
2014-11-04 7:33 ` Wolfram Sang
2014-11-04 9:07 ` Danielle Costantino
[not found] ` <CAAVjN7dPet_nBHcQzPYknfiWnf1hD5d5NAJcrNEKKJHYHcBNkg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2014-11-10 20:57 ` Jean Delvare
[not found] ` <20141110215704.07d7ca1d-R0o5gVi9kd7kN2dkZ6Wm7A@public.gmane.org>
2014-11-12 12:35 ` Danielle Costantino
2014-11-04 14:16 ` Guenter Roeck
2014-11-03 22:49 ` Guenter Roeck
[not found] ` <20141103224908.GA18594-0h96xk9xTtrk1uMJSBkQmQ@public.gmane.org>
2014-11-04 14:33 ` Wolfram Sang
2014-11-04 14:46 ` Guenter Roeck [this message]
2014-11-05 14:26 ` Guenter Roeck
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=5458E6D9.1090607@roeck-us.net \
--to=linux-0h96xk9xttrk1umjsbkqmq@public.gmane.org \
--cc=gerlando.falauto-SkAbAL50j+5BDgjK7y7TUQ@public.gmane.org \
--cc=giometti-AVVDYK/kqiJWk0Htik3J/w@public.gmane.org \
--cc=jdelvare-l3A5Bk7waGM@public.gmane.org \
--cc=jeroen.de.wachter-CNXmb7IdZIWZIoH1IeqzKA@public.gmane.org \
--cc=linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=martin.belanger-Ir6+u9MVKBtBDgjK7y7TUQ@public.gmane.org \
--cc=ml.lawnick-Mmb7MZpHnFY@public.gmane.org \
--cc=wsa-z923LK4zBo2bacvFa/9K2g@public.gmane.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