| 64 | #include <machine/ofw_machdep.h> |
| 65 | |
| 66 | static inline void |
| 67 | physmem_hardware_regions(struct mem_region * mrptr, int mrcount) |
| 68 | { |
| 69 | while (mrcount--) { |
| 70 | physmem_hardware_region(mrptr->mr_start, mrptr->mr_size); |
| 71 | ++mrptr; |
| 72 | } |
| 73 | } |
| 74 | |
| 75 | static inline void |
| 76 | physmem_exclude_regions(struct mem_region * mrptr, int mrcount, |
no test coverage detected