diff options
author | 2000-04-13 22:38:09 +0000 | |
---|---|---|
committer | 2000-04-13 22:38:09 +0000 | |
commit | 2031b4bf05a6c02c9e8dbceb8ec081d94d5033e7 (patch) | |
tree | 54927f399ad1afe2ca589ea571fd0aaea8a13da1 | |
parent | - let hifn_process() compute the mask bits for the command descriptors (diff) | |
download | wireguard-openbsd-2031b4bf05a6c02c9e8dbceb8ec081d94d5033e7.tar.xz wireguard-openbsd-2031b4bf05a6c02c9e8dbceb8ec081d94d5033e7.zip |
remove bit definitions and associated macros for hifn_command.flags since it
doesn't exist anymore.
-rw-r--r-- | sys/dev/pci/hifn7751var.h | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/sys/dev/pci/hifn7751var.h b/sys/dev/pci/hifn7751var.h index 072390f764b..1c9050fd54f 100644 --- a/sys/dev/pci/hifn7751var.h +++ b/sys/dev/pci/hifn7751var.h @@ -1,4 +1,4 @@ -/* $OpenBSD: hifn7751var.h,v 1.14 2000/04/13 22:34:09 jason Exp $ */ +/* $OpenBSD: hifn7751var.h,v 1.15 2000/04/13 22:38:09 jason Exp $ */ /* * Invertex AEON / Hi/fn 7751 driver @@ -212,23 +212,6 @@ typedef struct hifn_command { #define HIFN_CRYPTO_BAD_INPUT (-1) #define HIFN_CRYPTO_RINGS_FULL (-2) - -/* - * Defines for the "config" parameter of hifn_command_t - */ -#define HIFN_ENCODE 0x0001 -#define HIFN_DECODE 0x0002 -#define HIFN_CRYPT_3DES 0x0004 -#define HIFN_CRYPT_DES 0x0008 -#define HIFN_MAC_MD5 0x0010 -#define HIFN_MAC_SHA1 0x0020 -#define HIFN_MAC_TRUNC 0x0040 -#define HIFN_CRYPT_NEW_KEY 0x0080 -#define HIFN_MAC_NEW_KEY 0x0100 - -#define HIFN_USING_CRYPT(f) ((f) & (HIFN_CRYPT_3DES|HIFN_CRYPT_DES)) -#define HIFN_USING_MAC(f) ((f) & (HIFN_MAC_MD5|HIFN_MAC_SHA1)) - /* * Defines for the "result_flags" parameter of hifn_command_t. */ |