/* SPDX-License-Identifier: GPL-2.0 */1// Copyright (c) 2018, The Linux Foundation. All rights reserved.23#ifndef __QCOM_SND_SDW_H__4#define __QCOM_SND_SDW_H__56#include <linux/soundwire/sdw.h>78int qcom_snd_sdw_startup(struct snd_pcm_substream *substream);9void qcom_snd_sdw_shutdown(struct snd_pcm_substream *substream);10int qcom_snd_sdw_prepare(struct snd_pcm_substream *substream,11bool *stream_prepared);12struct sdw_stream_runtime *qcom_snd_sdw_get_stream(struct snd_pcm_substream *stream);13int qcom_snd_sdw_hw_free(struct snd_pcm_substream *substream,14bool *stream_prepared);15#endif161718