mirror of https://github.com/thesofproject/sof.git
manifest: Move MAN_MAX_SIZE_V1_8 define to the public manifest header
Currently, sof incorrectly includes a private manifest.h header belonging to the manifest.c module. Moved the MAN_MAX_SIZE_V1_8 definition used by sof, to the public manifest header to allow sof to switch to using the correct file. Signed-off-by: Adrian Warecki <adrian.warecki@intel.com>
This commit is contained in:
parent
6e3abe6afe
commit
debf4cf605
|
@ -71,7 +71,6 @@ struct manifest_module {
|
|||
};
|
||||
|
||||
#define MAN_PAGE_SIZE 4096
|
||||
#define MAN_MAX_SIZE_V1_8 (38 * 1024)
|
||||
|
||||
/* start offset for modules built using xcc */
|
||||
#define DEFAULT_XCC_MOD_OFFSET 0x8
|
||||
|
|
|
@ -30,6 +30,9 @@
|
|||
#define SOF_MAN_MOD_INIT_CONFIG_BASE_CFG 0 /* Base config only */
|
||||
#define SOF_MAN_MOD_INIT_CONFIG_BASE_CFG_WITH_EXT 1 /* Base config with extension */
|
||||
|
||||
#define MAN_MAX_SIZE_V1_8 (38 * 1024)
|
||||
|
||||
|
||||
struct sof_man_module_type {
|
||||
uint32_t load_type:4; /* SOF_MAN_MOD_TYPE_ */
|
||||
uint32_t auto_start:1;
|
||||
|
|
Loading…
Reference in New Issue