Fix 2 vm_offset_t -> vm_paddr_t missed in previous commit.
Sponsored by: DARPA, Network Associates Laboratories
This commit is contained in:
parent
302f15f9e8
commit
07515f29ce
@ -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;
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user