summaryrefslogtreecommitdiff
path: root/drivers/net/wireless/intersil/orinoco/mic.h
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2023-10-23 15:19:48 +0200
committerKalle Valo <kvalo@kernel.org>2023-10-30 19:29:52 +0200
commit1535d5962d79b8f4bddfd480399828b8db9d7a1c (patch)
tree806be2995bfd46e2215f0412ea928c0899cb2a89 /drivers/net/wireless/intersil/orinoco/mic.h
parent757a46c2a7a99a4e12f6a267e945c98324c41702 (diff)
wifi: remove orphaned orinoco driver
Orinoco is a PIO-only ISA/PCMCIA 802.11b device with extra bus interface connections for PCI/Cardbus/mini-PCI and a few pre-2002 Apple PowerMac variants. It supports both wireless extensions and CFG80211, but I could not tell if it requires using both. This device used to be one of the most common ones 20 years ago, but has been orphaned for most of the time since then, and the conversion to cfg80211 has stalled in 2010. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Kalle Valo <kvalo@kernel.org>
Diffstat (limited to 'drivers/net/wireless/intersil/orinoco/mic.h')
-rw-r--r--drivers/net/wireless/intersil/orinoco/mic.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/drivers/net/wireless/intersil/orinoco/mic.h b/drivers/net/wireless/intersil/orinoco/mic.h
deleted file mode 100644
index e8724e889219..000000000000
--- a/drivers/net/wireless/intersil/orinoco/mic.h
+++ /dev/null
@@ -1,23 +0,0 @@
-/* Orinoco MIC helpers
- *
- * See copyright notice in main.c
- */
-#ifndef _ORINOCO_MIC_H_
-#define _ORINOCO_MIC_H_
-
-#include <linux/types.h>
-#include <crypto/hash.h>
-
-#define MICHAEL_MIC_LEN 8
-
-/* Forward declarations */
-struct orinoco_private;
-struct crypto_ahash;
-
-int orinoco_mic_init(struct orinoco_private *priv);
-void orinoco_mic_free(struct orinoco_private *priv);
-int orinoco_mic(struct crypto_shash *tfm_michael, u8 *key,
- u8 *da, u8 *sa, u8 priority,
- u8 *data, size_t data_len, u8 *mic);
-
-#endif /* ORINOCO_MIC_H */