00001 /* src/include/wlan/version.h 00002 * 00003 * 00004 * Copyright (C) 1999 AbsoluteValue Systems, Inc. All Rights Reserved. 00005 * -------------------------------------------------------------------- 00006 * 00007 * linux-wlan 00008 * 00009 * The contents of this file are subject to the Mozilla Public 00010 * License Version 1.1 (the "License"); you may not use this file 00011 * except in compliance with the License. You may obtain a copy of 00012 * the License at http://www.mozilla.org/MPL/ 00013 * 00014 * Software distributed under the License is distributed on an "AS 00015 * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or 00016 * implied. See the License for the specific language governing 00017 * rights and limitations under the License. 00018 * 00019 * Alternatively, the contents of this file may be used under the 00020 * terms of the GNU Public License version 2 (the "GPL"), in which 00021 * case the provisions of the GPL are applicable instead of the 00022 * above. If you wish to allow the use of your version of this file 00023 * only under the terms of the GPL and not to allow others to use 00024 * your version of this file under the MPL, indicate your decision 00025 * by deleting the provisions above and replace them with the notice 00026 * and other provisions required by the GPL. If you do not delete 00027 * the provisions above, a recipient may use your version of this 00028 * file under either the MPL or the GPL. 00029 * 00030 * -------------------------------------------------------------------- 00031 * 00032 * Inquiries regarding the linux-wlan Open Source project can be 00033 * made directly to: 00034 * 00035 * AbsoluteValue Systems Inc. 00036 * info@linux-wlan.com 00037 * http://www.linux-wlan.com 00038 * 00039 * -------------------------------------------------------------------- 00040 * 00041 * Portions of the development of this software were funded by 00042 * Intersil Corporation as part of PRISM(R) chipset product development. 00043 * 00044 * -------------------------------------------------------------------- 00045 */ 00046 #ifndef _WLAN_VERSION_H 00047 #define _WLAN_VERSION_H 00048 #ifndef KERNEL_VERSION 00049 #define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) 00050 #endif 00051 00052 /* WLAN_HOSTIF (generally set on the command line, not detected) */ 00053 #define WLAN_NONE 0 00054 #define WLAN_PCMCIA 1 00055 #define WLAN_ISA 2 00056 #define WLAN_PCI 3 00057 #define WLAN_USB 4 00058 #define WLAN_PLX 5 00059 #define WLAN_SLAVE 6 00060 #define WLAN_RELEASE "0.2.5" 00061 #define WLAN_RELEASE_CODE 0x000205 00062 #define WLAN_BUILD_DATE "Thu Oct 5 18:11:01 CEST 2006" 00063 00064 #endif