Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com> Tested-by: Peter Schneider <pschneider1968@googlemail.com> Tested-by: Jon Hunter <jonathanh@nvidia.com> Tested-by: Salvatore Bonaccorso <carnil@debian.org> Tested-by: Brett A C Sheffield <bacs@librecast.net> Tested-by: Mark Brown <broonie@kernel.org> Tested-by: Luna Jernberg <droidbittin@gmail.com> Tested-by: Ronald Warsow <rwarsow@gmx.de> Tested-by: Justin M. Forbes <jforbes@fedoraproject.org> Tested-by: Ron Economos <re@w6rz.net> Tested-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
33 lines
1.1 KiB
C
33 lines
1.1 KiB
C
/* SPDX-License-Identifier: GPL-2.0
|
|
*
|
|
* soc-link.h
|
|
*
|
|
* Copyright (C) 2019 Renesas Electronics Corp.
|
|
* Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
|
|
*/
|
|
#ifndef __SOC_LINK_H
|
|
#define __SOC_LINK_H
|
|
|
|
int snd_soc_link_init(struct snd_soc_pcm_runtime *rtd);
|
|
void snd_soc_link_exit(struct snd_soc_pcm_runtime *rtd);
|
|
int snd_soc_link_be_hw_params_fixup(struct snd_soc_pcm_runtime *rtd,
|
|
struct snd_pcm_hw_params *params);
|
|
|
|
int snd_soc_link_startup(struct snd_pcm_substream *substream);
|
|
void snd_soc_link_shutdown(struct snd_pcm_substream *substream,
|
|
int rollback);
|
|
int snd_soc_link_prepare(struct snd_pcm_substream *substream);
|
|
int snd_soc_link_hw_params(struct snd_pcm_substream *substream,
|
|
struct snd_pcm_hw_params *params);
|
|
void snd_soc_link_hw_free(struct snd_pcm_substream *substream,
|
|
int rollback);
|
|
|
|
int snd_soc_link_trigger(struct snd_pcm_substream *substream, int cmd,
|
|
int rollback);
|
|
int snd_soc_link_compr_startup(struct snd_compr_stream *cstream);
|
|
void snd_soc_link_compr_shutdown(struct snd_compr_stream *cstream,
|
|
int rollback);
|
|
int snd_soc_link_compr_set_params(struct snd_compr_stream *cstream);
|
|
|
|
#endif /* __SOC_LINK_H */
|