]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blobdiff - include/linux/memblock.h
Merge tag 'devicetree-for-linus' of git://git.secretlab.ca/git/linux
[mirror_ubuntu-bionic-kernel.git] / include / linux / memblock.h
index b660e05b63d4fbc90e211d569f6d0229a2041fcc..e8cc45307f8f0d0f9897f0eb36d96b3c9fa7655c 100644 (file)
@@ -249,7 +249,7 @@ phys_addr_t memblock_alloc(phys_addr_t size, phys_addr_t align);
 /*
  * Set the allocation direction to bottom-up or top-down.
  */
-static inline void memblock_set_bottom_up(bool enable)
+static inline void __init memblock_set_bottom_up(bool enable)
 {
        memblock.bottom_up = enable;
 }
@@ -264,7 +264,7 @@ static inline bool memblock_bottom_up(void)
        return memblock.bottom_up;
 }
 #else
-static inline void memblock_set_bottom_up(bool enable) {}
+static inline void __init memblock_set_bottom_up(bool enable) {}
 static inline bool memblock_bottom_up(void) { return false; }
 #endif