Commit f06ac319 authored by Jouni Malinen's avatar Jouni Malinen Committed by Jeff Garzik

[PATCH] hostap update

Add MODULE_VERSION information for the Host AP kernel modules and
update the version string to indicate which version of the external
Host AP driver is included in the kernel tree.
Signed-off-by: default avatarJouni Malinen <jkmaline@cc.hut.fi>
Signed-off-by: default avatarJeff Garzik <jgarzik@pobox.com>
parent 093853c3
...@@ -37,6 +37,7 @@ ...@@ -37,6 +37,7 @@
MODULE_AUTHOR("Jouni Malinen"); MODULE_AUTHOR("Jouni Malinen");
MODULE_DESCRIPTION("Host AP common routines"); MODULE_DESCRIPTION("Host AP common routines");
MODULE_LICENSE("GPL"); MODULE_LICENSE("GPL");
MODULE_VERSION(PRISM2_VERSION);
/* Old hostap_crypt module is now part of hostap module. */ /* Old hostap_crypt module is now part of hostap module. */
#include "hostap_crypt.c" #include "hostap_crypt.c"
......
#ifndef HOSTAP_CONFIG_H #ifndef HOSTAP_CONFIG_H
#define HOSTAP_CONFIG_H #define HOSTAP_CONFIG_H
#define PRISM2_VERSION "CVS" #define PRISM2_VERSION "0.4.1-kernel"
/* In the previous versions of Host AP driver, support for user space version /* In the previous versions of Host AP driver, support for user space version
* of IEEE 802.11 management (hostapd) used to be disabled in the default * of IEEE 802.11 management (hostapd) used to be disabled in the default
......
...@@ -36,6 +36,7 @@ ...@@ -36,6 +36,7 @@
MODULE_AUTHOR("Jouni Malinen"); MODULE_AUTHOR("Jouni Malinen");
MODULE_DESCRIPTION("Host AP crypt: CCMP"); MODULE_DESCRIPTION("Host AP crypt: CCMP");
MODULE_LICENSE("GPL"); MODULE_LICENSE("GPL");
MODULE_VERSION(PRISM2_VERSION);
#define AES_BLOCK_LEN 16 #define AES_BLOCK_LEN 16
......
...@@ -38,6 +38,7 @@ ...@@ -38,6 +38,7 @@
MODULE_AUTHOR("Jouni Malinen"); MODULE_AUTHOR("Jouni Malinen");
MODULE_DESCRIPTION("Host AP crypt: TKIP"); MODULE_DESCRIPTION("Host AP crypt: TKIP");
MODULE_LICENSE("GPL"); MODULE_LICENSE("GPL");
MODULE_VERSION(PRISM2_VERSION);
struct hostap_tkip_data { struct hostap_tkip_data {
......
...@@ -19,6 +19,7 @@ ...@@ -19,6 +19,7 @@
#include <asm/string.h> #include <asm/string.h>
#include "hostap_crypt.h" #include "hostap_crypt.h"
#include "hostap_config.h"
#ifndef CONFIG_CRYPTO #ifndef CONFIG_CRYPTO
#error CONFIG_CRYPTO is required to build this module. #error CONFIG_CRYPTO is required to build this module.
...@@ -30,6 +31,7 @@ ...@@ -30,6 +31,7 @@
MODULE_AUTHOR("Jouni Malinen"); MODULE_AUTHOR("Jouni Malinen");
MODULE_DESCRIPTION("Host AP crypt: WEP"); MODULE_DESCRIPTION("Host AP crypt: WEP");
MODULE_LICENSE("GPL"); MODULE_LICENSE("GPL");
MODULE_VERSION(PRISM2_VERSION);
struct prism2_wep_data { struct prism2_wep_data {
......
...@@ -32,6 +32,7 @@ MODULE_DESCRIPTION("Support for Intersil Prism2-based 802.11 wireless LAN " ...@@ -32,6 +32,7 @@ MODULE_DESCRIPTION("Support for Intersil Prism2-based 802.11 wireless LAN "
"cards (PC Card)."); "cards (PC Card).");
MODULE_SUPPORTED_DEVICE("Intersil Prism2-based WLAN cards (PC Card)"); MODULE_SUPPORTED_DEVICE("Intersil Prism2-based WLAN cards (PC Card)");
MODULE_LICENSE("GPL"); MODULE_LICENSE("GPL");
MODULE_VERSION(PRISM2_VERSION);
static int ignore_cis_vcc; static int ignore_cis_vcc;
......
...@@ -31,6 +31,7 @@ MODULE_DESCRIPTION("Support for Intersil Prism2.5-based 802.11 wireless LAN " ...@@ -31,6 +31,7 @@ MODULE_DESCRIPTION("Support for Intersil Prism2.5-based 802.11 wireless LAN "
"PCI cards."); "PCI cards.");
MODULE_SUPPORTED_DEVICE("Intersil Prism2.5-based WLAN PCI cards"); MODULE_SUPPORTED_DEVICE("Intersil Prism2.5-based WLAN PCI cards");
MODULE_LICENSE("GPL"); MODULE_LICENSE("GPL");
MODULE_VERSION(PRISM2_VERSION);
/* FIX: do we need mb/wmb/rmb with memory operations? */ /* FIX: do we need mb/wmb/rmb with memory operations? */
......
...@@ -34,6 +34,7 @@ MODULE_DESCRIPTION("Support for Intersil Prism2-based 802.11 wireless LAN " ...@@ -34,6 +34,7 @@ MODULE_DESCRIPTION("Support for Intersil Prism2-based 802.11 wireless LAN "
"cards (PLX)."); "cards (PLX).");
MODULE_SUPPORTED_DEVICE("Intersil Prism2-based WLAN cards (PLX)"); MODULE_SUPPORTED_DEVICE("Intersil Prism2-based WLAN cards (PLX)");
MODULE_LICENSE("GPL"); MODULE_LICENSE("GPL");
MODULE_VERSION(PRISM2_VERSION);
static int ignore_cis; static int ignore_cis;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment