From: Nicolin Chen <nicoleotsuka@gmail.com>
To: Guenter Roeck <linux@roeck-us.net>
Cc: jdelvare@suse.com, robh+dt@kernel.org, mark.rutland@arm.com,
corbet@lwn.net, afd@ti.com, linux-hwmon@vger.kernel.org,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-doc@vger.kernel.org
Subject: Re: [PATCH v4 2/2] hwmon: ina3221: Read channel input source info from DT
Date: Sat, 22 Sep 2018 22:20:36 -0700 [thread overview]
Message-ID: <20180923052036.GA9960@Asurada> (raw)
In-Reply-To: <6f179232-9114-f403-ee35-2495cea73318@roeck-us.net>
Thank you for the quick response!
On Sat, Sep 22, 2018 at 10:11:26PM -0700, Guenter Roeck wrote:
> >+static umode_t ina3221_attr_is_visible(struct kobject *kobj,
> >+ struct attribute *attr, int n)
> >+{
> >+ const int max_attrs = ARRAY_SIZE(ina3221_attrs) - 1;
> >+ const int num_attrs = max_attrs / INA3221_NUM_CHANNELS;
> >+ struct device *dev = kobj_to_dev(kobj);
> >+ struct ina3221_data *ina = dev_get_drvdata(dev);
> >+ enum ina3221_channels channel = n / num_attrs;
>
> int index = n % num_attrs;
>
> >+ struct ina3221_input *input = &ina->inputs[channel];
> >+ int i;
> >+
> >+ /* Hide if channel input source is disconnected */
> >+ if (input->disconnected)
> >+ return 0;
> >+
> >+ /* Hide label node if label is not provided */
>
> if (index == 1 && !input->label)
> return 0;
>
> and drop i, ina3221_label_attrs[], and the loop below.
Will do that in v5.
Thanks
Nicolin
prev parent reply other threads:[~2018-09-23 5:20 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-09-23 4:11 [PATCH v4 0/2] Add an initial DT binding doc for ina3221 Nicolin Chen
2018-09-23 4:11 ` [PATCH v4 1/2] dt-bindings: hwmon: Add ina3221 documentation Nicolin Chen
2018-09-23 5:19 ` Guenter Roeck
2018-09-23 5:31 ` Nicolin Chen
2018-09-23 5:45 ` Guenter Roeck
2018-09-23 6:01 ` Nicolin Chen
2018-09-23 6:36 ` Guenter Roeck
2018-09-24 0:10 ` Nicolin Chen
2018-09-23 4:11 ` [PATCH v4 2/2] hwmon: ina3221: Read channel input source info from DT Nicolin Chen
2018-09-23 5:11 ` Guenter Roeck
2018-09-23 5:20 ` Nicolin Chen [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=20180923052036.GA9960@Asurada \
--to=nicoleotsuka@gmail.com \
--cc=afd@ti.com \
--cc=corbet@lwn.net \
--cc=devicetree@vger.kernel.org \
--cc=jdelvare@suse.com \
--cc=linux-doc@vger.kernel.org \
--cc=linux-hwmon@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@roeck-us.net \
--cc=mark.rutland@arm.com \
--cc=robh+dt@kernel.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).