diff options
| author | Jake Burkholder <jake@FreeBSD.org> | 2003-03-25 01:47:29 +0000 |
|---|---|---|
| committer | Jake Burkholder <jake@FreeBSD.org> | 2003-03-25 01:47:29 +0000 |
| commit | 07515f29ce9104286cb5a5aa9116a9f0fdd78463 (patch) | |
| tree | 7fe62f83f225a12a6b1bb37f45fdd5bc6e0b2512 | |
| parent | 302f15f9e8ab2d8b614b27e4655e4383f99055ad (diff) | |
Notes
| -rw-r--r-- | sys/dev/acpica/acpivar.h | 2 | ||||
| -rw-r--r-- | sys/sys/jumbo.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/acpica/acpivar.h b/sys/dev/acpica/acpivar.h index f43b6db60be13..e31862a699658 100644 --- a/sys/dev/acpica/acpivar.h +++ b/sys/dev/acpica/acpivar.h @@ -72,7 +72,7 @@ struct acpi_softc { bus_dma_tag_t acpi_waketag; bus_dmamap_t acpi_wakemap; vm_offset_t acpi_wakeaddr; - vm_offset_t acpi_wakephys; + vm_paddr_t acpi_wakephys; struct sysctl_ctx_list acpi_battery_sysctl_ctx; struct sysctl_oid *acpi_battery_sysctl_tree; diff --git a/sys/sys/jumbo.h b/sys/sys/jumbo.h index f8c794123e668..3d7cc285743c4 100644 --- a/sys/sys/jumbo.h +++ b/sys/sys/jumbo.h @@ -38,9 +38,9 @@ #ifdef _KERNEL extern vm_offset_t jumbo_basekva; -static __inline caddr_t jumbo_phys_to_kva(vm_offset_t pa); +static __inline caddr_t jumbo_phys_to_kva(vm_paddr_t pa); static __inline caddr_t -jumbo_phys_to_kva(vm_offset_t pa) +jumbo_phys_to_kva(vm_paddr_t pa) { vm_page_t pg; |
