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  /*
20   * This file was originally distributed by Qualcomm Atheros, Inc.
21   * under proprietary terms before Copyright ownership was assigned
22   * to the Linux Foundation.
23   */
24  
25  /**
26   * @file htt_deps.h
27   *
28   * @details list other header files that contain the defs for data types,
29   *      constants, and compiler pragmas used in the HTT header files
30   */
31  
32  #ifndef _HTT_DEPS_H_
33  #define _HTT_DEPS_H_
34  
35  #include <a_types.h>    /* A_UINT32 */
36  
37  #ifndef QCA_WIFI_WIFISTATS_EXTBUILD
38  #include <a_osapi.h>    /* PREPACK, POSTPACK */
39  #endif
40  
41  #ifdef ATHR_WIN_NWF
42  #pragma warning(disable:4214) /* bit field types other than int */
43  #endif
44  
45  #include "wlan_defs.h"
46  
47  #endif /* _HTT_DEPS_H_ */
48