From: Jonathan Cameron <jic23@kernel.org>
To: Lukas Wunner <lukas@wunner.de>
Cc: Hartmut Knaack <knaack.h@gmx.de>,
Lars-Peter Clausen <lars@metafoo.de>,
Peter Meerwald-Stadler <pmeerw@pmeerw.net>,
Mathias Duckeck <m.duckeck@kunbus.de>,
Phil Elwell <phil@raspberrypi.org>,
Oskar Andero <oskar.andero@gmail.com>,
Andrea Galbusera <gizero@gmail.com>,
Akinobu Mita <akinobu.mita@gmail.com>,
Manfred Schlaegl <manfred.schlaegl@gmx.at>,
Michael Welling <mwelling@ieee.org>,
Soeren Andersen <san@rosetechnology.dk>,
linux-iio@vger.kernel.org
Subject: Re: [PATCH 4/6] iio: adc: mcp320x: Drop unnecessary of_device_id attributes
Date: Sun, 3 Sep 2017 14:59:16 +0100 [thread overview]
Message-ID: <20170903145916.47efa30e@archlinux> (raw)
In-Reply-To: <f61c85ca59a45800672d8879f7ea715f134dbd51.1503407738.git.lukas@wunner.de>
On Tue, 22 Aug 2017 15:33:00 +0200
Lukas Wunner <lukas@wunner.de> wrote:
> The driver sets a .data pointer for each .compatible string but never
> calls of_device_get_match_data(). Instead, ADC properties are looked up
> with spi_get_device_id(). The .data pointer is therefore unnecessary,
> so drop it.
>
> Signed-off-by: Lukas Wunner <lukas@wunner.de>
Hmm. The use of spi_get_device_id strikes me as fragile but I may be missing
something. Seems to be a match on the name from devicetree against the older
table.
Can't disagree that your patch removes currently unused code though.
Jonathan
> ---
> drivers/iio/adc/mcp320x.c | 75 ++++++++++++-----------------------------------
> 1 file changed, 19 insertions(+), 56 deletions(-)
>
> diff --git a/drivers/iio/adc/mcp320x.c b/drivers/iio/adc/mcp320x.c
> index 790d3e857c80..6e10fa934aca 100644
> --- a/drivers/iio/adc/mcp320x.c
> +++ b/drivers/iio/adc/mcp320x.c
> @@ -365,62 +365,25 @@ static int mcp320x_remove(struct spi_device *spi)
> #if defined(CONFIG_OF)
> static const struct of_device_id mcp320x_dt_ids[] = {
> /* NOTE: The use of compatibles with no vendor prefix is deprecated. */
> - {
> - .compatible = "mcp3001",
> - .data = &mcp320x_chip_infos[mcp3001],
> - }, {
> - .compatible = "mcp3002",
> - .data = &mcp320x_chip_infos[mcp3002],
> - }, {
> - .compatible = "mcp3004",
> - .data = &mcp320x_chip_infos[mcp3004],
> - }, {
> - .compatible = "mcp3008",
> - .data = &mcp320x_chip_infos[mcp3008],
> - }, {
> - .compatible = "mcp3201",
> - .data = &mcp320x_chip_infos[mcp3201],
> - }, {
> - .compatible = "mcp3202",
> - .data = &mcp320x_chip_infos[mcp3202],
> - }, {
> - .compatible = "mcp3204",
> - .data = &mcp320x_chip_infos[mcp3204],
> - }, {
> - .compatible = "mcp3208",
> - .data = &mcp320x_chip_infos[mcp3208],
> - }, {
> - .compatible = "mcp3301",
> - .data = &mcp320x_chip_infos[mcp3301],
> - }, {
> - .compatible = "microchip,mcp3001",
> - .data = &mcp320x_chip_infos[mcp3001],
> - }, {
> - .compatible = "microchip,mcp3002",
> - .data = &mcp320x_chip_infos[mcp3002],
> - }, {
> - .compatible = "microchip,mcp3004",
> - .data = &mcp320x_chip_infos[mcp3004],
> - }, {
> - .compatible = "microchip,mcp3008",
> - .data = &mcp320x_chip_infos[mcp3008],
> - }, {
> - .compatible = "microchip,mcp3201",
> - .data = &mcp320x_chip_infos[mcp3201],
> - }, {
> - .compatible = "microchip,mcp3202",
> - .data = &mcp320x_chip_infos[mcp3202],
> - }, {
> - .compatible = "microchip,mcp3204",
> - .data = &mcp320x_chip_infos[mcp3204],
> - }, {
> - .compatible = "microchip,mcp3208",
> - .data = &mcp320x_chip_infos[mcp3208],
> - }, {
> - .compatible = "microchip,mcp3301",
> - .data = &mcp320x_chip_infos[mcp3301],
> - }, {
> - }
> + { .compatible = "mcp3001" },
> + { .compatible = "mcp3002" },
> + { .compatible = "mcp3004" },
> + { .compatible = "mcp3008" },
> + { .compatible = "mcp3201" },
> + { .compatible = "mcp3202" },
> + { .compatible = "mcp3204" },
> + { .compatible = "mcp3208" },
> + { .compatible = "mcp3301" },
> + { .compatible = "microchip,mcp3001" },
> + { .compatible = "microchip,mcp3002" },
> + { .compatible = "microchip,mcp3004" },
> + { .compatible = "microchip,mcp3008" },
> + { .compatible = "microchip,mcp3201" },
> + { .compatible = "microchip,mcp3202" },
> + { .compatible = "microchip,mcp3204" },
> + { .compatible = "microchip,mcp3208" },
> + { .compatible = "microchip,mcp3301" },
> + { }
> };
> MODULE_DEVICE_TABLE(of, mcp320x_dt_ids);
> #endif
prev parent reply other threads:[~2017-09-03 13:59 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-08-22 13:33 [PATCH 0/6] IIO driver for MCP3550/1/3 Lukas Wunner
2017-08-22 13:33 ` [PATCH 6/6] iio: adc: mcp320x: Add support for mcp3550/1/3 Lukas Wunner
2017-09-03 14:22 ` Jonathan Cameron
2017-09-07 6:44 ` Lukas Wunner
2017-09-10 13:40 ` Jonathan Cameron
2017-08-22 13:33 ` [PATCH 2/6] iio: adc: mcp320x: Fix readout of negative voltages Lukas Wunner
2017-09-03 13:44 ` Jonathan Cameron
2017-08-22 13:33 ` [PATCH 5/6] dt-bindings: iio: adc: mcp320x: Update for mcp3550/1/3 Lukas Wunner
2017-08-25 19:59 ` Rob Herring
2017-08-27 15:34 ` Lukas Wunner
2017-08-29 7:21 ` Adriana Reus
2017-09-03 13:37 ` Jonathan Cameron
2017-09-03 18:20 ` Lukas Wunner
2017-09-04 12:36 ` Jonathan Cameron
2017-09-04 17:22 ` Mark Brown
2017-09-10 13:36 ` Jonathan Cameron
2017-09-05 18:49 ` Rob Herring
2017-08-22 13:33 ` [PATCH 1/6] iio: adc: mcp320x: Fix oops on module unload Lukas Wunner
2017-09-03 13:41 ` Jonathan Cameron
2017-08-22 13:33 ` [PATCH 3/6] iio: adc: mcp320x: Speed up readout of single-channel ADCs Lukas Wunner
2017-09-03 13:48 ` Jonathan Cameron
2017-08-22 13:33 ` [PATCH 4/6] iio: adc: mcp320x: Drop unnecessary of_device_id attributes Lukas Wunner
2017-09-03 13:59 ` Jonathan Cameron [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=20170903145916.47efa30e@archlinux \
--to=jic23@kernel.org \
--cc=akinobu.mita@gmail.com \
--cc=gizero@gmail.com \
--cc=knaack.h@gmx.de \
--cc=lars@metafoo.de \
--cc=linux-iio@vger.kernel.org \
--cc=lukas@wunner.de \
--cc=m.duckeck@kunbus.de \
--cc=manfred.schlaegl@gmx.at \
--cc=mwelling@ieee.org \
--cc=oskar.andero@gmail.com \
--cc=phil@raspberrypi.org \
--cc=pmeerw@pmeerw.net \
--cc=san@rosetechnology.dk \
/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).