-
Notifications
You must be signed in to change notification settings - Fork 321
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sof_api: module_adapter: Move api_ver header file to sof_api
Moved header files to the sof_api directory to separate an shared interface used by sof and native loadable modules. Signed-off-by: Adrian Warecki <[email protected]>
- Loading branch information
1 parent
37dbbfe
commit c93f106
Showing
3 changed files
with
9 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,8 +5,12 @@ | |
* Author: Pawel Dobrowolski <[email protected]> | ||
*/ | ||
|
||
#ifndef __MODULE_API_VER_H__ | ||
#define __MODULE_API_VER_H__ | ||
#ifndef __SOF_API_MODULE_API_VER_H__ | ||
#define __SOF_API_MODULE_API_VER_H__ | ||
|
||
#include <stdint.h> | ||
|
||
#define ADSP_BUILD_INFO_FORMAT 0 | ||
|
||
/* | ||
* Api version 5.0.0 for sof loadable modules | ||
|
@@ -31,4 +35,4 @@ struct sof_module_api_build_info{ | |
union sof_module_api_version api_version_number; | ||
}; | ||
|
||
#endif /* __MODULE_API_VER_H__ */ | ||
#endif /* __SOF_API_MODULE_API_VER_H__ */ |