diff options
| author | Marcel Moolenaar <marcel@FreeBSD.org> | 2002-10-15 01:50:09 +0000 |
|---|---|---|
| committer | Marcel Moolenaar <marcel@FreeBSD.org> | 2002-10-15 01:50:09 +0000 |
| commit | 18e0cd7dde8a05c508a198bcb7d37eb0021e6756 (patch) | |
| tree | cbd95e188ca0e61e331e08ba5c0ad201a93f9b6d /sys/dev/agp | |
| parent | 803cc8aa8f514d47c1bb5e51ec67210b5f3a9dd4 (diff) | |
Notes
Diffstat (limited to 'sys/dev/agp')
| -rw-r--r-- | sys/dev/agp/agp_amd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/agp/agp_amd.c b/sys/dev/agp/agp_amd.c index 26a0f3b5d4c2..382becf6b565 100644 --- a/sys/dev/agp/agp_amd.c +++ b/sys/dev/agp/agp_amd.c @@ -125,8 +125,8 @@ agp_amd_alloc_gatt(device_t dev) gatt->ag_pdir = vtophys((vm_offset_t) gatt->ag_vdir); if(bootverbose) - device_printf(dev, "gatt -> ag_pdir %p\n", - (caddr_t)gatt->ag_pdir); + device_printf(dev, "gatt -> ag_pdir %#lx\n", + (u_long)gatt->ag_pdir); /* * Allocate the gatt pages */ |
