diff options
author | Karol Trzcinski <karolx.trzcinski@linux.intel.com> | 2020-03-12 23:06:18 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2020-03-13 18:13:23 +0300 |
commit | 4ea25785259a9e7a542a5e8ceb8b208ae6929739 (patch) | |
tree | 422cca699f2bbf98c045aee9ff628af7d389839b /include/sound/sof/info.h | |
parent | e81d47e94c569f537e008ede59e70e4f27904c86 (diff) | |
download | linux-4ea25785259a9e7a542a5e8ceb8b208ae6929739.tar.xz |
ASoC: SOF: Make sof_ipc_ext_data enum more rigid
It's a part of ABI interface, so enum value shouldn't change
for example after removing some old enum code.
Signed-off-by: Karol Trzcinski <karolx.trzcinski@linux.intel.com>
Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Link: https://lore.kernel.org/r/20200312200622.24477-3-pierre-louis.bossart@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'include/sound/sof/info.h')
-rw-r--r-- | include/sound/sof/info.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/sound/sof/info.h b/include/sound/sof/info.h index 1c560144996c..cc3b50b6ae52 100644 --- a/include/sound/sof/info.h +++ b/include/sound/sof/info.h @@ -28,9 +28,9 @@ /* extended data types that can be appended onto end of sof_ipc_fw_ready */ enum sof_ipc_ext_data { - SOF_IPC_EXT_DMA_BUFFER = 0, - SOF_IPC_EXT_WINDOW, - SOF_IPC_EXT_CC_INFO, + SOF_IPC_EXT_DMA_BUFFER = 0, + SOF_IPC_EXT_WINDOW = 1, + SOF_IPC_EXT_CC_INFO = 2, }; /* FW version - SOF_IPC_GLB_VERSION */ |