brintos

brintos / linux-shallow public Read only

0
0
Text · 596 B · bdb70c6 Raw
27 lines · c
1/* SPDX-License-Identifier: GPL-2.02 *3 * audio-graph.h4 *5 * Copyright (c) 2024 Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>6 */7#ifndef __AUDIO_GRAPH_H8#define __AUDIO_GRAPH_H9 10/*11 * used in12 *	link-trigger-order13 *	link-trigger-order-start14 *	link-trigger-order-stop15 *16 * default is17 *	link-trigger-order = <SND_SOC_TRIGGER_LINK18 *			      SND_SOC_TRIGGER_COMPONENT19 *			      SND_SOC_TRIGGER_DAI>;20 */21#define SND_SOC_TRIGGER_LINK		022#define SND_SOC_TRIGGER_COMPONENT	123#define SND_SOC_TRIGGER_DAI		224#define SND_SOC_TRIGGER_SIZE		3	/* shoud be last */25 26#endif /* __AUDIO_GRAPH_H */27