diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2004-11-02 21:18:49 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2004-11-02 21:18:49 +0000 |
commit | 821760dcdd9e6dbddf38ea1c241ef0106ccde643 (patch) | |
tree | 4af98eea529ffc0dc05b11972a0a44a55b801e3e /sys | |
parent | 0791e66967a73654da6e0b4e49cfbc88b4704f35 (diff) |
#ifdef __alpha__ -> #ifdef __LP64__
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/pci/if_tireg.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_tireg.h b/sys/dev/pci/if_tireg.h index f0b1a2ad489..7ed710460d1 100644 --- a/sys/dev/pci/if_tireg.h +++ b/sys/dev/pci/if_tireg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_tireg.h,v 1.15 2004/08/05 19:57:17 brad Exp $ */ +/* $OpenBSD: if_tireg.h,v 1.16 2004/11/02 21:18:48 miod Exp $ */ /* * Copyright (c) 1997, 1998, 1999 @@ -1033,7 +1033,7 @@ struct ti_ring_data { * no attempt is made to allocate physically contiguous memory. * */ -#ifdef __alpha__ /* XXX - should be conditional on pointer size */ +#ifdef __LP64__ #define TI_NTXSEG 30 #else #define TI_NTXSEG 31 |