diff options
Diffstat (limited to 'include/linux/memblock.h')
| -rw-r--r-- | include/linux/memblock.h | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/memblock.h b/include/linux/memblock.h index c88bc24e31aa..5984fff3f175 100644 --- a/include/linux/memblock.h +++ b/include/linux/memblock.h @@ -460,7 +460,7 @@ static inline void memblock_free_late(phys_addr_t base, phys_addr_t size)  /*   * Set the allocation direction to bottom-up or top-down.   */ -static inline void memblock_set_bottom_up(bool enable) +static inline __init_memblock void memblock_set_bottom_up(bool enable)  {  	memblock.bottom_up = enable;  } @@ -470,7 +470,7 @@ static inline void memblock_set_bottom_up(bool enable)   * if this is true, that said, memblock will allocate memory   * in bottom-up direction.   */ -static inline bool memblock_bottom_up(void) +static inline __init_memblock bool memblock_bottom_up(void)  {  	return memblock.bottom_up;  }  | 
