diff options
author | 2010-05-23 11:41:22 +0000 | |
---|---|---|
committer | 2010-05-23 11:41:22 +0000 | |
commit | 018421d17412edca1c93285e1a02f159696ffff4 (patch) | |
tree | b1ef669b9b6bbfb9ca4f78ca8b1898a19f4fa7d2 | |
parent | rely on __alpha__, __amd64__, and __i386__ instead (diff) | |
download | wireguard-openbsd-018421d17412edca1c93285e1a02f159696ffff4.tar.xz wireguard-openbsd-018421d17412edca1c93285e1a02f159696ffff4.zip |
rely on __alpha__ instead of alpha
-rw-r--r-- | sys/dev/tc/if_levar.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/tc/if_levar.h b/sys/dev/tc/if_levar.h index 0f8733943d7..ac7546fe800 100644 --- a/sys/dev/tc/if_levar.h +++ b/sys/dev/tc/if_levar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_levar.h,v 1.7 2003/06/02 23:28:04 millert Exp $ */ +/* $OpenBSD: if_levar.h,v 1.8 2010/05/23 11:41:22 deraadt Exp $ */ /* $NetBSD: if_levar.h,v 1.4 1997/03/15 18:12:07 is Exp $ */ /*- @@ -39,12 +39,12 @@ struct lereg1 { volatile u_int16_t ler1_rdp; /* data port */ int16_t pad0; -#ifdef alpha +#if defined(__alpha__) int32_t pad1; #endif volatile u_int16_t ler1_rap; /* register select port */ int16_t pad2; -#ifdef alpha +#if defined(__alpha__) int32_t pad3; #endif }; |