soc.h (6b16f5d12202a23d875915349cc031c07fe1b3ec) | soc.h (873486ed4af3e11bfc20832dff7b124ba652bf77) |
---|---|
1/* | 1/* SPDX-License-Identifier: GPL-2.0 2 * |
2 * linux/sound/soc.h -- ALSA SoC Layer 3 * | 3 * linux/sound/soc.h -- ALSA SoC Layer 4 * |
4 * Author: Liam Girdwood 5 * Created: Aug 11th 2005 | 5 * Author: Liam Girdwood 6 * Created: Aug 11th 2005 |
6 * Copyright: Wolfson Microelectronics. PLC. | 7 * Copyright: Wolfson Microelectronics. PLC. |
7 * 8 * This program is free software; you can redistribute it and/or modify 9 * it under the terms of the GNU General Public License version 2 as 10 * published by the Free Software Foundation. | |
11 */ 12 13#ifndef __LINUX_SND_SOC_H 14#define __LINUX_SND_SOC_H 15 16#include <linux/of.h> 17#include <linux/platform_device.h> 18#include <linux/types.h> --- 933 unchanged lines hidden (view full) --- 952 unsigned int dynamic:1; 953 954 /* DPCM capture and Playback support */ 955 unsigned int dpcm_capture:1; 956 unsigned int dpcm_playback:1; 957 958 /* DPCM used FE & BE merged format */ 959 unsigned int dpcm_merged_format:1; | 8 */ 9 10#ifndef __LINUX_SND_SOC_H 11#define __LINUX_SND_SOC_H 12 13#include <linux/of.h> 14#include <linux/platform_device.h> 15#include <linux/types.h> --- 933 unchanged lines hidden (view full) --- 949 unsigned int dynamic:1; 950 951 /* DPCM capture and Playback support */ 952 unsigned int dpcm_capture:1; 953 unsigned int dpcm_playback:1; 954 955 /* DPCM used FE & BE merged format */ 956 unsigned int dpcm_merged_format:1; |
957 /* DPCM used FE & BE merged channel */ 958 unsigned int dpcm_merged_chan:1; |
|
960 961 /* pmdown_time is ignored at stop */ 962 unsigned int ignore_pmdown_time:1; 963 964 struct list_head list; /* DAI link list of the soc card */ 965 struct snd_soc_dobj dobj; /* For topology */ 966}; 967 --- 540 unchanged lines hidden --- | 959 960 /* pmdown_time is ignored at stop */ 961 unsigned int ignore_pmdown_time:1; 962 963 struct list_head list; /* DAI link list of the soc card */ 964 struct snd_soc_dobj dobj; /* For topology */ 965}; 966 --- 540 unchanged lines hidden --- |