diff options
author | Dmitry Osipenko <digetx@gmail.com> | 2021-05-29 18:46:49 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2021-06-15 11:43:12 +0100 |
commit | 8c1b3b159300cc5ef6ba0d4b039ef68e766d46e3 (patch) | |
tree | c805229c2b77e82ab4ea102820dc834aedaf6fef /sound/soc/tegra/tegra_asoc_machine.h | |
parent | c16aab8ddc645f129880a266c1626b07b41f7c55 (diff) |
ASoC: tegra: Squash utils into common machine driver
There no users left of the utils other than the new common machine driver.
Squash the utils into the common machine driver in order to simplify code.
Signed-off-by: Dmitry Osipenko <digetx@gmail.com>
Link: https://lore.kernel.org/r/20210529154649.25936-5-digetx@gmail.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/tegra/tegra_asoc_machine.h')
-rw-r--r-- | sound/soc/tegra/tegra_asoc_machine.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/sound/soc/tegra/tegra_asoc_machine.h b/sound/soc/tegra/tegra_asoc_machine.h index f3a087a7548b..8ee0ec814f67 100644 --- a/sound/soc/tegra/tegra_asoc_machine.h +++ b/sound/soc/tegra/tegra_asoc_machine.h @@ -3,8 +3,7 @@ #ifndef __TEGRA_ASOC_MACHINE_H__ #define __TEGRA_ASOC_MACHINE_H__ -#include "tegra_asoc_utils.h" - +struct clk; struct gpio_desc; struct snd_soc_card; struct snd_soc_jack; @@ -27,7 +26,11 @@ struct tegra_asoc_data { }; struct tegra_machine { - struct tegra_asoc_utils_data util_data; + struct clk *clk_pll_a_out0; + struct clk *clk_pll_a; + struct clk *clk_cdev1; + unsigned int set_baseclock; + unsigned int set_mclk; const struct tegra_asoc_data *asoc; struct gpio_desc *gpiod_ext_mic_en; struct gpio_desc *gpiod_int_mic_en; |