ofw_machdep.h (6cec9cad762b6476313fb1f8e931a1647822db6b) | ofw_machdep.h (bc7b930020041739630c9430ea67ef87a67c1c38) |
---|---|
1/*- 2 * Copyright (c) 2009 The FreeBSD Foundation 3 * All rights reserved. 4 * 5 * This software was developed by Semihalf under sponsorship from 6 * the FreeBSD Foundation. 7 * 8 * Redistribution and use in source and binary forms, with or without --- 18 unchanged lines hidden (view full) --- 27 * SUCH DAMAGE. 28 * 29 * $FreeBSD$ 30 */ 31 32#ifndef _MACHINE_OFW_MACHDEP_H_ 33#define _MACHINE_OFW_MACHDEP_H_ 34 | 1/*- 2 * Copyright (c) 2009 The FreeBSD Foundation 3 * All rights reserved. 4 * 5 * This software was developed by Semihalf under sponsorship from 6 * the FreeBSD Foundation. 7 * 8 * Redistribution and use in source and binary forms, with or without --- 18 unchanged lines hidden (view full) --- 27 * SUCH DAMAGE. 28 * 29 * $FreeBSD$ 30 */ 31 32#ifndef _MACHINE_OFW_MACHDEP_H_ 33#define _MACHINE_OFW_MACHDEP_H_ 34 |
35#include <sys/types.h> 36#include <sys/bus.h> 37#include <sys/rman.h> |
|
35#include <vm/vm.h> 36 37typedef uint32_t cell_t; 38 39struct mem_region { 40 vm_offset_t mr_start; 41 vm_size_t mr_size; 42}; 43 44#endif /* _MACHINE_OFW_MACHDEP_H_ */ | 38#include <vm/vm.h> 39 40typedef uint32_t cell_t; 41 42struct mem_region { 43 vm_offset_t mr_start; 44 vm_size_t mr_size; 45}; 46 47#endif /* _MACHINE_OFW_MACHDEP_H_ */ |