Message ID | 87edmwj9m1.wl-kuninori.morimoto.gx@renesas.com |
---|---|
State | Accepted |
Commit | b9aa53fbee1e55abfcdfcc081c242de3c0582be4 |
Headers | show |
Series | ASoC: soc.h: remove snd_soc_compr_ops :: trigger | expand |
On Thu, 01 Jun 2023 00:43:02 +0000, Kuninori Morimoto wrote: > ASoC framework is not using trigger call-back for snd_soc_compr_ops. > This patch remove it. > > Applied to https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next Thanks! [1/1] ASoC: soc.h: remove snd_soc_compr_ops :: trigger commit: b9aa53fbee1e55abfcdfcc081c242de3c0582be4 All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent to Linus during the next merge window (or sooner if it is a bug fix), however if problems are discovered then the patch may be dropped or reverted. You may get further e-mails resulting from automated or manual testing and review of the tree, please engage with people reporting problems and send followup patches addressing any issues that are reported if needed. If any updates are required or you are submitting further changes they should be sent as incremental updates against current git, existing patches will not be replaced. Please add any relevant lists and maintainers to the CCs when replying to this mail. Thanks, Mark
diff --git a/include/sound/soc.h b/include/sound/soc.h index ed79b27b0392..10e4ea0664af 100644 --- a/include/sound/soc.h +++ b/include/sound/soc.h @@ -633,7 +633,6 @@ struct snd_soc_compr_ops { int (*startup)(struct snd_compr_stream *); void (*shutdown)(struct snd_compr_stream *); int (*set_params)(struct snd_compr_stream *); - int (*trigger)(struct snd_compr_stream *); }; struct snd_soc_component*
ASoC framework is not using trigger call-back for snd_soc_compr_ops. This patch remove it. Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> --- include/sound/soc.h | 1 - 1 file changed, 1 deletion(-)