From: Lars-Peter Clausen <lars@metafoo.de>
To: Peter Meerwald-Stadler <pmeerw@pmeerw.net>,
One Thousand Gnomes <gnomes@lxorguk.ukuu.org.uk>
Cc: "Crestez Dan Leonard" <leonard.crestez@intel.com>,
"Daniel Baluta" <daniel.baluta@gmail.com>,
"Yong Li" <sdliyong@gmail.com>,
"Jonathan Cameron" <jic23@kernel.org>,
"Hartmut Knaack" <knaack.h@gmx.de>,
"Krzysztof Kozłowski" <k.kozlowski@samsung.com>,
"Matt Ranostaj" <mranostay@gmail.com>,
"linux-iio@vger.kernel.org" <linux-iio@vger.kernel.org>,
"Linux Kernel Mailing List" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] iio: tmp006: Set correct iio name
Date: Thu, 28 Apr 2016 16:19:33 +0200 [thread overview]
Message-ID: <57221BF5.6000001@metafoo.de> (raw)
In-Reply-To: <alpine.DEB.2.02.1604281527010.10610@pmeerw.net>
On 04/28/2016 03:30 PM, Peter Meerwald-Stadler wrote:
>
>>> It's clearly wrong. But the problem is there might be an application that
>>> depends on the wrong behavior, the driver has been around for 2.5 years. So
>>> it's difficult to fix. We might just go ahead in this case and take the
>>> chance that nobody will complain. But if somebody complains this will bring
>>> us the wrath of the Linus.
>>
>> Not if you put it into next, test it, then into a new release as early as
>> possible (for -rc1), clearly document that it's got a user visible change
>> that should not matter with instructions if anyone hits this as a
>> bisection for their app failing to email so you know and can revert it.
>
> is this the only driver doing it wrong?
>
> pmeerw@pmeerw:/var/git/linux/drivers/iio$ rgrep "indio_dev->name = dev_name" .
> ./imu/inv_mpu6050/inv_mpu_core.c: indio_dev->name = dev_name(dev);
> ./light/lm3533-als.c: indio_dev->name = dev_name(&pdev->dev);
> ./dac/vf610_dac.c: indio_dev->name = dev_name(&pdev->dev);
> ./dac/stx104.c: indio_dev->name = dev_name(dev);
> ./dac/lpc18xx_dac.c: indio_dev->name = dev_name(&pdev->dev);
> ./adc/mcp3422.c: indio_dev->name = dev_name(&client->dev);
> ./adc/at91-sama5d2_adc.c: indio_dev->name = dev_name(&pdev->dev);
> ./adc/vf610_adc.c: indio_dev->name = dev_name(&pdev->dev);
> ./adc/ti_am335x_adc.c: indio_dev->name = dev_name(&pdev->dev);
> ./adc/nau7802.c: indio_dev->name = dev_name(&client->dev);
> ./adc/da9150-gpadc.c: indio_dev->name = dev_name(dev);
> ./adc/lpc18xx_adc.c: indio_dev->name = dev_name(&pdev->dev);
> ./adc/rockchip_saradc.c: indio_dev->name = dev_name(&pdev->dev);
> ./adc/imx7d_adc.c: indio_dev->name = dev_name(&pdev->dev);
> ./adc/cc10001_adc.c: indio_dev->name = dev_name(&pdev->dev);
> ./adc/berlin2-adc.c: indio_dev->name = dev_name(&pdev->dev);
> ./adc/exynos_adc.c: indio_dev->name = dev_name(&pdev->dev);
> ./temperature/tmp006.c: indio_dev->name = dev_name(&client->dev);
> ./chemical/ams-iaq-core.c: indio_dev->name = dev_name(&client->dev);
> ./chemical/vz89x.c: indio_dev->name = dev_name(&client->dev);
> ./humidity/si7005.c: indio_dev->name = dev_name(&client->dev);
> ./humidity/hdc100x.c: indio_dev->name = dev_name(&client->dev);
> ./humidity/si7020.c: indio_dev->name = dev_name(&client->dev);
Yes, they are all wrong. Mostly of it is just copy'n'paste. We need to be
more careful to catch these in the future.
next prev parent reply other threads:[~2016-04-28 14:19 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-04-22 3:43 [PATCH] iio: tmp006: Set correct iio name Yong Li
2016-04-25 19:33 ` Jonathan Cameron
2016-04-25 20:59 ` Crestez Dan Leonard
2016-04-25 21:11 ` Jonathan Cameron
2016-04-26 10:57 ` Lars-Peter Clausen
2016-04-26 11:47 ` Yong Li
2016-04-26 12:01 ` Lars-Peter Clausen
2016-04-26 13:14 ` Yong Li
2016-04-26 15:21 ` Daniel Baluta
2016-04-27 3:42 ` Yong Li
2016-04-27 16:58 ` Crestez Dan Leonard
2016-04-28 8:25 ` Lars-Peter Clausen
2016-04-28 13:24 ` One Thousand Gnomes
2016-04-28 13:30 ` Peter Meerwald-Stadler
2016-04-28 14:19 ` Lars-Peter Clausen [this message]
2016-05-01 19:34 ` Jonathan Cameron
2016-05-03 9:43 ` [was iio: tmp006: Set correct iio name] how to support multiple instances of same device type Gregor Boirie
2016-05-03 12:00 ` Crestez Dan Leonard
2016-04-28 14:17 ` [PATCH] iio: tmp006: Set correct iio name Lars-Peter Clausen
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=57221BF5.6000001@metafoo.de \
--to=lars@metafoo.de \
--cc=daniel.baluta@gmail.com \
--cc=gnomes@lxorguk.ukuu.org.uk \
--cc=jic23@kernel.org \
--cc=k.kozlowski@samsung.com \
--cc=knaack.h@gmx.de \
--cc=leonard.crestez@intel.com \
--cc=linux-iio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mranostay@gmail.com \
--cc=pmeerw@pmeerw.net \
--cc=sdliyong@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;
as well as URLs for NNTP newsgroup(s).