From: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
To: Lucas Stankus <lucas.p.stankus@gmail.com>,
Lars-Peter Clausen <lars@metafoo.de>,
Michael Hennerich <Michael.Hennerich@analog.com>,
Jonathan Cameron <jic23@kernel.org>,
Puranjay Mohan <puranjay@kernel.org>,
Ramona Bolboaca <ramona.bolboaca@analog.com>,
Oleksij Rempel <o.rempel@pengutronix.de>,
kernel@pengutronix.de,
Cosmin Tanislav <cosmin.tanislav@analog.com>,
Marius Cristea <marius.cristea@microchip.com>
Cc: linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org,
Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Subject: [PATCH 7/8] iio: dac: max5522: simplify with spi_get_device_match_data()
Date: Thu, 06 Jun 2024 16:26:49 +0200 [thread overview]
Message-ID: <20240606-spi-match-data-v1-7-320b291ee1fe@linaro.org> (raw)
In-Reply-To: <20240606-spi-match-data-v1-0-320b291ee1fe@linaro.org>
Use spi_get_device_match_data() helper to simplify a bit the driver.
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
drivers/iio/dac/max5522.c | 11 +++--------
1 file changed, 3 insertions(+), 8 deletions(-)
diff --git a/drivers/iio/dac/max5522.c b/drivers/iio/dac/max5522.c
index 05034a306597..9f72155dcbc7 100644
--- a/drivers/iio/dac/max5522.c
+++ b/drivers/iio/dac/max5522.c
@@ -132,7 +132,6 @@ static const struct regmap_config max5522_regmap_config = {
static int max5522_spi_probe(struct spi_device *spi)
{
- const struct spi_device_id *id = spi_get_device_id(spi);
struct iio_dev *indio_dev;
struct max5522_state *state;
int ret;
@@ -144,13 +143,9 @@ static int max5522_spi_probe(struct spi_device *spi)
}
state = iio_priv(indio_dev);
- state->chip_info = device_get_match_data(&spi->dev);
- if (!state->chip_info) {
- state->chip_info =
- (struct max5522_chip_info *)(id->driver_data);
- if (!state->chip_info)
- return -EINVAL;
- }
+ state->chip_info = spi_get_device_match_data(spi);
+ if (!state->chip_info)
+ return -EINVAL;
state->vrefin_reg = devm_regulator_get(&spi->dev, "vrefin");
if (IS_ERR(state->vrefin_reg))
--
2.43.0
next prev parent reply other threads:[~2024-06-06 14:27 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-06 14:26 [PATCH 0/8] iio: simplify with spi_get_device_match_data() Krzysztof Kozlowski
2024-06-06 14:26 ` [PATCH 1/8] iio: accel: adxl313: " Krzysztof Kozlowski
2024-06-07 8:57 ` Nuno Sá
2024-06-07 9:18 ` Krzysztof Kozlowski
2024-06-08 17:22 ` Jonathan Cameron
2024-06-06 14:26 ` [PATCH 2/8] iio: accel: adxl355: " Krzysztof Kozlowski
2024-06-06 14:26 ` [PATCH 3/8] iio: adc: max11205: " Krzysztof Kozlowski
2024-06-06 14:26 ` [PATCH 4/8] iio: adc: ti-ads131e08: " Krzysztof Kozlowski
2024-06-06 14:26 ` [PATCH 5/8] iio: adc: ti-tsc2046: " Krzysztof Kozlowski
2024-06-06 14:26 ` [PATCH 6/8] iio: addac: ad74413r: " Krzysztof Kozlowski
2024-06-06 14:26 ` Krzysztof Kozlowski [this message]
2024-06-06 14:26 ` [PATCH 8/8] iio: adc: mcp3564: drop redundant open-coded spi_get_device_match_data() Krzysztof Kozlowski
2024-06-07 8:55 ` [PATCH 0/8] iio: simplify with spi_get_device_match_data() Nuno Sá
2024-06-08 17:25 ` Jonathan Cameron
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=20240606-spi-match-data-v1-7-320b291ee1fe@linaro.org \
--to=krzysztof.kozlowski@linaro.org \
--cc=Michael.Hennerich@analog.com \
--cc=cosmin.tanislav@analog.com \
--cc=jic23@kernel.org \
--cc=kernel@pengutronix.de \
--cc=lars@metafoo.de \
--cc=linux-iio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=lucas.p.stankus@gmail.com \
--cc=marius.cristea@microchip.com \
--cc=o.rempel@pengutronix.de \
--cc=puranjay@kernel.org \
--cc=ramona.bolboaca@analog.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