diff options
| -rw-r--r-- | sys/dev/ofw/openfirm.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/dev/ofw/openfirm.h b/sys/dev/ofw/openfirm.h index 414e8482a32a..a676fc5691a8 100644 --- a/sys/dev/ofw/openfirm.h +++ b/sys/dev/ofw/openfirm.h @@ -69,12 +69,6 @@ typedef unsigned long cell_t; typedef unsigned int ihandle_t; typedef unsigned int phandle_t; -/* - * Other than in Open Firmware calls, the size of a bus cell seems to be - * always the same. - */ -typedef u_int32_t pcell_t; - #ifdef _KERNEL #include <sys/cdefs.h> #include <sys/types.h> @@ -83,6 +77,12 @@ typedef u_int32_t pcell_t; MALLOC_DECLARE(M_OFWPROP); /* + * Other than in Open Firmware calls, the size of a bus cell seems to be + * always the same. + */ +typedef u_int32_t pcell_t; + +/* * Stuff that is used by the Open Firmware code. */ void set_openfirm_callback(int (*)(void *)); |
