[PATCH 5/5] ASoC: tegra: tegra20_das: Drop write-only driver data member
Uwe Kleine-König
u.kleine-koenig at pengutronix.de
Wed Jun 29 21:42:24 CEST 2022
The dev member of struct tegra20_das is only written once in .probe().
There is no loss of functionality if the member and the assignment go away.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig at pengutronix.de>
---
sound/soc/tegra/tegra20_das.c | 3 ---
1 file changed, 3 deletions(-)
diff --git a/sound/soc/tegra/tegra20_das.c b/sound/soc/tegra/tegra20_das.c
index 39a6135dd0d0..c620ab0c601f 100644
--- a/sound/soc/tegra/tegra20_das.c
+++ b/sound/soc/tegra/tegra20_das.c
@@ -77,7 +77,6 @@
#define TEGRA20_DAS_DAC_ID_3 2
struct tegra20_das {
- struct device *dev;
struct regmap *regmap;
};
@@ -162,8 +161,6 @@ static int tegra20_das_probe(struct platform_device *pdev)
if (!das)
return -ENOMEM;
- das->dev = &pdev->dev;
-
regs = devm_platform_ioremap_resource(pdev, 0);
if (IS_ERR(regs))
return PTR_ERR(regs);
--
2.36.1
More information about the Alsa-devel
mailing list