diff options
author | Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> | 2024-06-06 17:24:57 +0300 |
---|---|---|
committer | Lee Jones <lee@kernel.org> | 2024-07-04 19:38:40 +0300 |
commit | 0ddabc8c6e80d06b02794d818a36d7b6c16d4c66 (patch) | |
tree | 60610c5ef6a4ff881d8077079f1f77950cf233bc /drivers/mfd/madera-spi.c | |
parent | a49d9bae9cbd650137df9f6ae043389199b47137 (diff) | |
download | linux-0ddabc8c6e80d06b02794d818a36d7b6c16d4c66.tar.xz |
mfd: madera: Simplify with spi_get_device_match_data()
Use spi_get_device_match_data() helper to simplify a bit the driver.
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Reviewed-by: Charles Keepax <ckeepax@opensource.cirrus.com>
Link: https://lore.kernel.org/r/20240606142457.130553-2-krzysztof.kozlowski@linaro.org
Signed-off-by: Lee Jones <lee@kernel.org>
Diffstat (limited to 'drivers/mfd/madera-spi.c')
-rw-r--r-- | drivers/mfd/madera-spi.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/drivers/mfd/madera-spi.c b/drivers/mfd/madera-spi.c index ad07ebe29e59..ce9e90322c9c 100644 --- a/drivers/mfd/madera-spi.c +++ b/drivers/mfd/madera-spi.c @@ -18,21 +18,14 @@ static int madera_spi_probe(struct spi_device *spi) { - const struct spi_device_id *id = spi_get_device_id(spi); struct madera *madera; const struct regmap_config *regmap_16bit_config = NULL; const struct regmap_config *regmap_32bit_config = NULL; - const void *of_data; unsigned long type; const char *name; int ret; - of_data = of_device_get_match_data(&spi->dev); - if (of_data) - type = (unsigned long)of_data; - else - type = id->driver_data; - + type = (unsigned long)spi_get_device_match_data(spi); switch (type) { case CS47L15: if (IS_ENABLED(CONFIG_MFD_CS47L15)) { |