pm: memory: fix build for unused function

memory_banks_get() unused on APL when LPSRAM disabled.

Signed-off-by: Liam Girdwood <liam.r.girdwood@linux.intel.com>
This commit is contained in:
Liam Girdwood 2021-01-25 17:06:03 +00:00 committed by Liam Girdwood
parent 96fa4749ee
commit 3e26ca0993
1 changed files with 2 additions and 0 deletions

View File

@ -22,6 +22,7 @@ DECLARE_SOF_UUID("pm-memory", pm_mem_uuid, 0x14f25ab6, 0x3a4b, 0x4e5d,
DECLARE_TR_CTX(pm_mem_tr, SOF_UUID(pm_mem_uuid), LOG_LEVEL_INFO); DECLARE_TR_CTX(pm_mem_tr, SOF_UUID(pm_mem_uuid), LOG_LEVEL_INFO);
#if (CAVS_VERSION >= CAVS_VERSION_1_8) || CONFIG_LP_SRAM
/** /**
* \brief Retrieves memory banks based on start and end pointer. * \brief Retrieves memory banks based on start and end pointer.
* \param[in,out] start Start address of memory range. * \param[in,out] start Start address of memory range.
@ -55,6 +56,7 @@ static void memory_banks_get(void *start, void *end, uint32_t base,
*/ */
*end_bank = ((uintptr_t)end - base) / SRAM_BANK_SIZE - 1; *end_bank = ((uintptr_t)end - base) / SRAM_BANK_SIZE - 1;
} }
#endif
#if CAVS_VERSION >= CAVS_VERSION_1_8 #if CAVS_VERSION >= CAVS_VERSION_1_8