diff options
| author | Tian Tao <[email protected]> | 2021-03-22 03:57:56 +0000 |
|---|---|---|
| committer | Mark Brown <[email protected]> | 2021-03-25 13:58:55 +0000 |
| commit | 200d925e236f1a839bd52680f13649b23f727d51 (patch) | |
| tree | daa2a8a21b3e8c29705ede31bc66ec2c5dfe918b /drivers/spi/spi-imx.c | |
| parent | Merge series "MFD/extcon/ASoC: Rework arizona codec jack-detect support" from... (diff) | |
| download | kernel-200d925e236f1a839bd52680f13649b23f727d51.tar.gz kernel-200d925e236f1a839bd52680f13649b23f727d51.zip | |
spi: imx: Use of_device_get_match_data() helper
Use the of_device_get_match_data() helper instead of open coding.
Signed-off-by: Tian Tao <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Mark Brown <[email protected]>
Diffstat (limited to 'drivers/spi/spi-imx.c')
| -rw-r--r-- | drivers/spi/spi-imx.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/spi/spi-imx.c b/drivers/spi/spi-imx.c index 5dc4ea4b4450..916580740e77 100644 --- a/drivers/spi/spi-imx.c +++ b/drivers/spi/spi-imx.c @@ -1548,13 +1548,12 @@ static int spi_imx_slave_abort(struct spi_master *master) static int spi_imx_probe(struct platform_device *pdev) { struct device_node *np = pdev->dev.of_node; - const struct of_device_id *of_id = - of_match_device(spi_imx_dt_ids, &pdev->dev); struct spi_master *master; struct spi_imx_data *spi_imx; struct resource *res; int ret, irq, spi_drctl; - const struct spi_imx_devtype_data *devtype_data = of_id->data; + const struct spi_imx_devtype_data *devtype_data = + of_device_get_match_data(&pdev->dev); bool slave_mode; u32 val; |
