htt_deps.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*
  2. * Copyright (c) 2011-2017 The Linux Foundation. All rights reserved.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for
  5. * any purpose with or without fee is hereby granted, provided that the
  6. * above copyright notice and this permission notice appear in all
  7. * copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  10. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  11. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  12. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  13. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  14. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  15. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  16. * PERFORMANCE OF THIS SOFTWARE.
  17. */
  18. /*
  19. * This file was originally distributed by Qualcomm Atheros, Inc.
  20. * under proprietary terms before Copyright ownership was assigned
  21. * to the Linux Foundation.
  22. */
  23. /**
  24. * @file htt_deps.h
  25. *
  26. * @details list other header files that contain the defs for data types,
  27. * constants, and compiler pragmas used in the HTT header files
  28. */
  29. #ifndef _HTT_DEPS_H_
  30. #define _HTT_DEPS_H_
  31. #include <a_types.h> /* A_UINT32 */
  32. #ifndef QCA_WIFI_WIFISTATS_EXTBUILD
  33. #include <a_osapi.h> /* PREPACK, POSTPACK */
  34. #endif
  35. #ifdef ATHR_WIN_NWF
  36. #pragma warning(disable:4214) /* bit field types other than int */
  37. #endif
  38. #include "wlan_defs.h"
  39. #endif /* _HTT_DEPS_H_ */