| 1 | #ifndef _HOST_VERSION_H_ |
| 2 | #define _HOST_VERSION_H_ |
| 3 | /* |
| 4 | * Copyright (c) 2004-2005 Atheros Communications Inc. |
| 5 | * All rights reserved. |
| 6 | * |
| 7 | * This file contains version information for the sample host driver for the |
| 8 | * AR6000 chip |
| 9 | * |
| 10 | * $Id: //depot/sw/releases/olca2.0-GPL/host/include/host_version.h#2 $ |
| 11 | * |
| 12 | * |
| 13 | * This program is free software; you can redistribute it and/or modify |
| 14 | * it under the terms of the GNU General Public License version 2 as |
| 15 | * published by the Free Software Foundation; |
| 16 | * |
| 17 | * Software distributed under the License is distributed on an "AS |
| 18 | * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or |
| 19 | * implied. See the License for the specific language governing |
| 20 | * rights and limitations under the License. |
| 21 | * |
| 22 | * |
| 23 | * |
| 24 | */ |
| 25 | |
| 26 | #ifdef __cplusplus |
| 27 | extern "C" { |
| 28 | #endif |
| 29 | |
| 30 | #include <AR6K_version.h> |
| 31 | |
| 32 | /* |
| 33 | * The version number is made up of major, minor, patch and build |
| 34 | * numbers. These are 16 bit numbers. The build and release script will |
| 35 | * set the build number using a Perforce counter. Here the build number is |
| 36 | * set to 9999 so that builds done without the build-release script are easily |
| 37 | * identifiable. |
| 38 | */ |
| 39 | |
| 40 | #define ATH_SW_VER_MAJOR __VER_MAJOR_ |
| 41 | #define ATH_SW_VER_MINOR __VER_MINOR_ |
| 42 | #define ATH_SW_VER_PATCH __VER_PATCH_ |
| 43 | #define ATH_SW_VER_BUILD 9999 |
| 44 | |
| 45 | #ifdef __cplusplus |
| 46 | } |
| 47 | #endif |
| 48 | |
| 49 | #endif /* _HOST_VERSION_H_ */ |
| 50 | |