]> git.karo-electronics.de Git - karo-tx-uboot.git/blobdiff - lib_generic/lmb.c
85xx: Add support for 'cpu disable' command
[karo-tx-uboot.git] / lib_generic / lmb.c
index 1c6cf7ce000257b1d91729f95f36b51ccdd5020e..c5e75fb3bbd3cebe83624720e1c8247be273fff8 100644 (file)
@@ -334,3 +334,15 @@ int lmb_is_reserved(struct lmb *lmb, phys_addr_t addr)
        }
        return 0;
 }
+
+void __board_lmb_reserve(struct lmb *lmb)
+{
+       /* please define platform specific board_lmb_reserve() */
+}
+void board_lmb_reserve(struct lmb *lmb) __attribute__((weak, alias("__board_lmb_reserve")));
+
+void __arch_lmb_reserve(struct lmb *lmb)
+{
+       /* please define platform specific arch_lmb_reserve() */
+}
+void arch_lmb_reserve(struct lmb *lmb) __attribute__((weak, alias("__arch_lmb_reserve")));