drivers: mm: Fix macro call in RAT driver
The macro used in an assert statement in the `sys_mm_drv_page_phys_get()` function was using an older version of the naming scheme, fixed now. Signed-off-by: L Lakshmanan <l-lakshmanan@ti.com>
This commit is contained in:
parent
24759511f4
commit
8fca1cdb29
1 changed files with 1 additions and 1 deletions
|
@ -104,7 +104,7 @@ int sys_mm_drv_page_phys_get(void *virt, uintptr_t *phys)
|
|||
|
||||
uint32_t found, regionId;
|
||||
|
||||
__ASSERT(translate_config.num_regions < address_trans_MAX_REGIONS,
|
||||
__ASSERT(translate_config.num_regions < ADDR_TRANSLATE_MAX_REGIONS,
|
||||
"Exceeding maximum number of regions");
|
||||
|
||||
found = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue