diff options
author | Flavio Cruz <flaviocruz@gmail.com> | 2015-12-31 19:08:19 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2016-01-01 17:09:06 +0100 |
commit | eb8c15953a316a780f2ea6c8d1eb47c878909d94 (patch) | |
tree | 00600d1e5427e5b3651e6aca812a0efdd6ed90a5 /i386/intel | |
parent | 130c43f6da56e9ed1d9f954975ceeeec66c1d2eb (diff) |
fix some compiler warnings in gnumach
* linux/dev/glue/block.c (out): Cast to device_t.
* linux/dev/init/main.c (alloc_contig_mem): Initialize addr and cast return value to void *.
* i386/i386/phys.c (pmap_copy_page): Initialize src_map.
* i386/intel/pmap.c: Include i386at/model_dep.h.
* kern/mach_clock.c (mapable_time_init): Cast to void *.
Diffstat (limited to 'i386/intel')
-rw-r--r-- | i386/intel/pmap.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/i386/intel/pmap.c b/i386/intel/pmap.c index cf7a736..22e20c9 100644 --- a/i386/intel/pmap.c +++ b/i386/intel/pmap.c @@ -83,6 +83,7 @@ #include <i386/proc_reg.h> #include <i386/locore.h> #include <i386/model_dep.h> +#include <i386at/model_dep.h> #ifdef MACH_PSEUDO_PHYS #define WRITE_PTE(pte_p, pte_entry) *(pte_p) = pte_entry?pa_to_ma(pte_entry):0; |