use paddr_t for physical addresses. u_long may not be large enough.

This commit is contained in:
cegger 2009-03-11 10:30:52 +00:00
parent ab72df6eb5
commit c920c4baa3
1 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: pnpbios.c,v 1.64 2008/07/11 11:58:37 cube Exp $ */
/* $NetBSD: pnpbios.c,v 1.65 2009/03/11 10:30:52 cegger Exp $ */
/*
* Copyright (c) 2000 Jason R. Thorpe. All rights reserved.
@ -41,7 +41,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: pnpbios.c,v 1.64 2008/07/11 11:58:37 cube Exp $");
__KERNEL_RCSID(0, "$NetBSD: pnpbios.c,v 1.65 2009/03/11 10:30:52 cegger Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -124,7 +124,7 @@ static int pnpbios_sendmessage(int);
#endif
/* configuration stuff */
static void * pnpbios_mapit(u_long, u_long, int);
static void * pnpbios_mapit(paddr_t, u_long, int);
static void * pnpbios_find(void);
static int pnpbios_match(struct device *,
struct cfdata *, void *);
@ -255,9 +255,9 @@ pnpbios_match(device_t parent, cfdata_t match, void *aux)
}
static void *
pnpbios_mapit(u_long addr, u_long len, int prot)
pnpbios_mapit(paddr_t addr, u_long len, int prot)
{
u_long startpa, pa, endpa;
paddr_t startpa, pa, endpa;
vaddr_t startva, va;
pa = startpa = x86_trunc_page(addr);