summaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorFabio Estevam <festevam@gmail.com>2021-01-18 09:38:12 -0300
committerMark Brown <broonie@kernel.org>2021-01-20 18:47:32 +0000
commit42450175a3d21d0818976114833d23ca5035e713 (patch)
treea8a7b9975601700c694064953d3598992fcda73e /sound
parentd7388718d491463ed0fb7383a4c678b94fdda785 (diff)
downloadlinux-stable-42450175a3d21d0818976114833d23ca5035e713.tar.gz
linux-stable-42450175a3d21d0818976114833d23ca5035e713.tar.bz2
linux-stable-42450175a3d21d0818976114833d23ca5035e713.zip
ASoC: fsl_xcvr: Remove unused of_id variable
The of_id variable is not used, so just remove it. Signed-off-by: Fabio Estevam <festevam@gmail.com> Link: https://lore.kernel.org/r/20210118123815.1630882-3-festevam@gmail.com Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/fsl/fsl_xcvr.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/sound/soc/fsl/fsl_xcvr.c b/sound/soc/fsl/fsl_xcvr.c
index 3d58c88ea603..dd228b421e2c 100644
--- a/sound/soc/fsl/fsl_xcvr.c
+++ b/sound/soc/fsl/fsl_xcvr.c
@@ -1130,16 +1130,11 @@ MODULE_DEVICE_TABLE(of, fsl_xcvr_dt_ids);
static int fsl_xcvr_probe(struct platform_device *pdev)
{
struct device *dev = &pdev->dev;
- const struct of_device_id *of_id;
struct fsl_xcvr *xcvr;
struct resource *ram_res, *regs_res, *rx_res, *tx_res;
void __iomem *regs;
int ret, irq;
- of_id = of_match_device(fsl_xcvr_dt_ids, dev);
- if (!of_id)
- return -EINVAL;
-
xcvr = devm_kzalloc(dev, sizeof(*xcvr), GFP_KERNEL);
if (!xcvr)
return -ENOMEM;