diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2005-12-17 07:31:28 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2005-12-17 07:31:28 +0000 |
commit | 7cbb57eba5664076170d755cd54b71d88b093c0e (patch) | |
tree | ab7aa84468246c727fb48c0d639bf2567e2cf89f /sys/dev/pci/if_tlreg.h | |
parent | 9eee08e5579b1adf67335028b835e1df460fbb93 (diff) |
Get rid of deprecated vm_{offset,size}_t types for good, use {p,v}{addr,size}_t
instead; looked at millert@
Diffstat (limited to 'sys/dev/pci/if_tlreg.h')
-rw-r--r-- | sys/dev/pci/if_tlreg.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_tlreg.h b/sys/dev/pci/if_tlreg.h index d871e50ad67..7765a284a88 100644 --- a/sys/dev/pci/if_tlreg.h +++ b/sys/dev/pci/if_tlreg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_tlreg.h,v 1.8 2003/06/30 02:52:51 avsm Exp $ */ +/* $OpenBSD: if_tlreg.h,v 1.9 2005/12/17 07:31:27 miod Exp $ */ /* * Copyright (c) 1997, 1998 @@ -597,5 +597,5 @@ struct tl_stats { #ifdef __alpha__ #undef vtophys -#define vtophys(va) alpha_XXX_dmamap((vm_offset_t)va) +#define vtophys(va) alpha_XXX_dmamap((vaddr_t)va) #endif |