unified: Don't bother initializing memory map buffer
The "__noinit" was accidentally lost during initial prototyping of the unified kernel. This just restores it ... Change-Id: Id13e0e9a323c1bcd49c28a5d8da73943b0177890 Signed-off-by: Allan Stephens <allan.stephens@windriver.com>
This commit is contained in:
parent
602e6a8ae7
commit
35ffaff43d
1 changed files with 1 additions and 1 deletions
|
@ -1489,7 +1489,7 @@ struct k_mem_map {
|
|||
* @param map_align Alignment of the memory map's buffer (power of 2)
|
||||
*/
|
||||
#define K_MEM_MAP_DEFINE(name, map_block_size, map_num_blocks, map_align) \
|
||||
char __aligned(map_align) \
|
||||
char __noinit __aligned(map_align) \
|
||||
_k_mem_map_buf_##name[(map_num_blocks) * (map_block_size)]; \
|
||||
struct k_mem_map name \
|
||||
__in_section(_k_mem_map_ptr, private, mem_map) = \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue