From: Guenter Roeck <guenter.roeck-IzeFyvvaP7pWk0Htik3J/w@public.gmane.org>
To: Jean Delvare <khali-PUYAD+kWke1g9hUCZPvPmw@public.gmane.org>
Cc: "linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.org"
<linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>
Subject: Re: [PATCH v2 1/6] i2cset: Remove deprecated method to provide the value mask
Date: Mon, 14 Feb 2011 07:46:10 -0800 [thread overview]
Message-ID: <20110214154610.GA22833@ericsson.com> (raw)
In-Reply-To: <20110214094847.6607ebaa-R0o5gVi9kd7kN2dkZ6Wm7A@public.gmane.org>
On Mon, Feb 14, 2011 at 03:48:47AM -0500, Jean Delvare wrote:
> Hi Guenter,
>
> Wow, 6 patches :)
>
Just because I switched to git. Makes it much easier to me to handle
a sequence of patches. Yes, I know, it probably works with svn as well.
Just a personal preference ...
> On Sun, 13 Feb 2011 12:17:21 -0800, Guenter Roeck wrote:
> > The old method to provide the value mask has long since been deprecated,
> > remove it.
> > ---
> > CHANGES | 1 +
> > tools/i2cset.c | 12 ------------
> > 2 files changed, 1 insertions(+), 12 deletions(-)
> >
> > diff --git a/CHANGES b/CHANGES
> > index 5aee418..999ff26 100644
> > --- a/CHANGES
> > +++ b/CHANGES
> > @@ -4,6 +4,7 @@ i2c-tools CHANGES
> > SVN
> > i2c-dev.h: Make value arrays const for block write functions
> > i2cset: Add support for SMBus and I2C block writes
> > + Remove obsolete means to specify value mask
> >
> > 3.0.3 (2010-12-12)
> > Makefile: Let the environment set CC and CFLAGS
> > diff --git a/tools/i2cset.c b/tools/i2cset.c
> > index 392262b..8856d71 100644
> > --- a/tools/i2cset.c
> > +++ b/tools/i2cset.c
> > @@ -265,18 +265,6 @@ int main(int argc, char *argv[])
> > pec = argv[flags+5][1] == 'p';
> > }
> >
> > - /* Old method to provide the value mask, deprecated and no longer
> > - documented but still supported for compatibility */
> > - if (argc > flags + 6) {
> > - if (maskp) {
> > - fprintf(stderr, "Error: Data value mask provided twice!\n");
> > - help();
> > - }
> > - fprintf(stderr, "Warning: Using deprecated way to set the data value mask!\n");
> > - fprintf(stderr, " Please switch to using -m.\n");
> > - maskp = argv[flags+6];
> > - }
> > -
> > if (maskp) {
> > vmask = strtol(maskp, &end, 0);
> > if (*end || vmask == 0) {
>
> This looks good, however I think the code can be cleaned up further by
> getting rid of maskp. I introduced maskp [1] because the mask could be
> at two different places on the command line, but now it is no longer
> needed.
>
Not sure how, though, since we either need the index to argv[mask] or the pointer,
or we would have to read the mask while checking the parameters. The latter
doesn't look very clean to me.
> [1] http://www.lm-sensors.org/changeset/5390
>
> Also, I see that we don't do range checks on the mask value. As you are
> in the process to make command line parsing more strict, it would
> probably be a good idea to add range changes on the mask value too.
>
Yes, I'll add that.
Guenter
next prev parent reply other threads:[~2011-02-14 15:46 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-02-13 20:17 [PATCH v2 0/6] i2cset changes Guenter Roeck
[not found] ` <1297628246-19367-1-git-send-email-guenter.roeck-IzeFyvvaP7pWk0Htik3J/w@public.gmane.org>
2011-02-13 20:17 ` [PATCH v2 1/6] i2cset: Remove deprecated method to provide the value mask Guenter Roeck
[not found] ` <1297628246-19367-2-git-send-email-guenter.roeck-IzeFyvvaP7pWk0Htik3J/w@public.gmane.org>
2011-02-14 8:48 ` Jean Delvare
[not found] ` <20110214094847.6607ebaa-R0o5gVi9kd7kN2dkZ6Wm7A@public.gmane.org>
2011-02-14 15:46 ` Guenter Roeck [this message]
[not found] ` <20110214154610.GA22833-IzeFyvvaP7pWk0Htik3J/w@public.gmane.org>
2011-02-14 16:17 ` Jean Delvare
[not found] ` <20110214171735.06270f30-R0o5gVi9kd7kN2dkZ6Wm7A@public.gmane.org>
2011-02-14 17:09 ` Guenter Roeck
2011-02-13 20:17 ` [PATCH v2 2/6] i2cset: Check number of arguments for block data writes Guenter Roeck
[not found] ` <1297628246-19367-3-git-send-email-guenter.roeck-IzeFyvvaP7pWk0Htik3J/w@public.gmane.org>
2011-02-14 8:52 ` Jean Delvare
2011-02-13 20:17 ` [PATCH v2 3/6] i2cset: Abort if value mask is set for block commands Guenter Roeck
[not found] ` <1297628246-19367-4-git-send-email-guenter.roeck-IzeFyvvaP7pWk0Htik3J/w@public.gmane.org>
2011-02-14 8:56 ` Jean Delvare
2011-02-13 20:17 ` [PATCH v2 4/6] i2cset: Ensure that there is no junk after the command/mode parameter Guenter Roeck
[not found] ` <1297628246-19367-5-git-send-email-guenter.roeck-IzeFyvvaP7pWk0Htik3J/w@public.gmane.org>
2011-02-14 8:59 ` Jean Delvare
2011-02-13 20:17 ` [PATCH v2 5/6] i2cset: Replace blanks at beginning of line with tabs Guenter Roeck
[not found] ` <1297628246-19367-6-git-send-email-guenter.roeck-IzeFyvvaP7pWk0Htik3J/w@public.gmane.org>
2011-02-14 9:00 ` Jean Delvare
2011-02-13 20:17 ` [PATCH v2 6/6] i2cset: Get command/mode before reading data Guenter Roeck
[not found] ` <1297628246-19367-7-git-send-email-guenter.roeck-IzeFyvvaP7pWk0Htik3J/w@public.gmane.org>
2011-02-14 9:43 ` Jean Delvare
-- strict thread matches above, loose matches on Subject: below --
2011-02-14 18:06 [PATCH v3 0/6] i2cset changes Guenter Roeck
[not found] ` <1297706773-26389-1-git-send-email-guenter.roeck-IzeFyvvaP7pWk0Htik3J/w@public.gmane.org>
2011-02-14 18:06 ` [PATCH v2 1/6] i2cset: Remove deprecated method to provide the value mask 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=20110214154610.GA22833@ericsson.com \
--to=guenter.roeck-izefyvvap7pwk0htik3j/w@public.gmane.org \
--cc=khali-PUYAD+kWke1g9hUCZPvPmw@public.gmane.org \
--cc=linux-i2c-u79uwXL29TY76Z2rM5mHXA@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;
as well as URLs for NNTP newsgroup(s).