Give the fdt helper routines static linkage since no global definition

of them is provided anywhere.  (gcc was nice enough to warn about this,
clang didn't for some reason.)
This commit is contained in:
ian 2014-02-17 20:04:57 +00:00
parent 810005931a
commit 6bd122754e

View File

@ -65,7 +65,7 @@ void arm_physmem_print_tables(void);
#include <machine/ofw_machdep.h>
inline void
static inline void
arm_physmem_hardware_regions(struct mem_region * mrptr, int mrcount)
{
while (mrcount--) {
@ -74,7 +74,7 @@ arm_physmem_hardware_regions(struct mem_region * mrptr, int mrcount)
}
}
inline void
static inline void
arm_physmem_exclude_regions(struct mem_region * mrptr, int mrcount,
uint32_t exflags)
{