diff options
author | Tian Tao <tiantao6@hisilicon.com> | 2021-04-01 14:24:48 +0800 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2021-04-07 16:58:35 +0100 |
commit | 0e6521f13c297de32906ad7f691905803b2b2880 (patch) | |
tree | 5e5cbf646b08dd5469049801aa8a931614326b62 | |
parent | 9a446cf97af70ee81ba177703b67ac4955a5edcc (diff) | |
download | linux-0e6521f13c297de32906ad7f691905803b2b2880.tar.gz linux-0e6521f13c297de32906ad7f691905803b2b2880.tar.bz2 linux-0e6521f13c297de32906ad7f691905803b2b2880.zip |
spi: orion: Use device_get_match_data() helper
Use the device_get_match_data() helper instead of open coding.
Signed-off-by: Tian Tao <tiantao6@hisilicon.com>
Link: https://lore.kernel.org/r/1617258288-1490-1-git-send-email-tiantao6@hisilicon.com
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | drivers/spi/spi-orion.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/spi/spi-orion.c b/drivers/spi/spi-orion.c index 68ed7fd64256..d02c5c9def20 100644 --- a/drivers/spi/spi-orion.c +++ b/drivers/spi/spi-orion.c @@ -634,7 +634,6 @@ MODULE_DEVICE_TABLE(of, orion_spi_of_match_table); static int orion_spi_probe(struct platform_device *pdev) { - const struct of_device_id *of_id; const struct orion_spi_dev *devdata; struct spi_master *master; struct orion_spi *spi; @@ -676,9 +675,8 @@ static int orion_spi_probe(struct platform_device *pdev) spi->master = master; spi->dev = &pdev->dev; - of_id = of_match_device(orion_spi_of_match_table, &pdev->dev); - devdata = (of_id) ? of_id->data : &orion_spi_dev_data; - spi->devdata = devdata; + devdata = device_get_match_data(&pdev->dev); + spi->devdata = devdata ? devdata : &orion_spi_dev_data; spi->clk = devm_clk_get(&pdev->dev, NULL); if (IS_ERR(spi->clk)) { |