diff options
author | 2004-10-24 22:07:38 +0000 | |
---|---|---|
committer | 2004-10-24 22:07:38 +0000 | |
commit | 3b49cc0baf2d875045b0784f36a1b2a7218bcc3c (patch) | |
tree | 07be3039c11ea48601373b50aa80ed0e648839e8 | |
parent | accept replies with a NTP version number of 4 or lower, instead of only 4 (diff) | |
download | wireguard-openbsd-3b49cc0baf2d875045b0784f36a1b2a7218bcc3c.tar.xz wireguard-openbsd-3b49cc0baf2d875045b0784f36a1b2a7218bcc3c.zip |
A missed ahd_htole16 -> aic_htole16 in an unused define.
-rw-r--r-- | sys/dev/ic/aic79xx.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/aic79xx.h b/sys/dev/ic/aic79xx.h index 5ada733834e..2e3cba3741d 100644 --- a/sys/dev/ic/aic79xx.h +++ b/sys/dev/ic/aic79xx.h @@ -1,4 +1,4 @@ -/* $OpenBSD: aic79xx.h,v 1.7 2004/10/24 04:28:33 krw Exp $ */ +/* $OpenBSD: aic79xx.h,v 1.8 2004/10/24 22:07:38 krw Exp $ */ /* * Copyright (c) 2004 Milos Urbanek, Kenneth R. Westerback & Marco Peereboom @@ -105,7 +105,7 @@ struct scb_platform_data; #define ALL_TARGETS_MASK 0xFFFF #define INITIATOR_WILDCARD (~0) #define SCB_LIST_NULL 0xFF00 -#define SCB_LIST_NULL_LE (ahd_htole16(SCB_LIST_NULL)) +#define SCB_LIST_NULL_LE (aic_htole16(SCB_LIST_NULL)) #define QOUTFIFO_ENTRY_VALID 0x80 #define SCBID_IS_NULL(scbid) (((scbid) & 0xFF00 ) == SCB_LIST_NULL) |