host_version.h 1.7 KB

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