blob: 88679d7c8d7b4778e1ac3e0cb838407c84941f4a [file] [log] [blame]
Jeff Johnson295189b2012-06-20 16:38:30 -07001/*
Gopichand Nakkala92f07d82013-01-08 21:16:34 -08002 * Copyright (c) 2012-2013, The Linux Foundation. All rights reserved.
3 *
4 * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
5 *
6 *
7 * Permission to use, copy, modify, and/or distribute this software for
8 * any purpose with or without fee is hereby granted, provided that the
9 * above copyright notice and this permission notice appear in all
10 * copies.
11 *
12 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
13 * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
14 * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
15 * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
16 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
17 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
18 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
19 * PERFORMANCE OF THIS SOFTWARE.
20 */
21/*
Jeff Johnson32d95a32012-09-10 13:15:23 -070022 * Copyright (c) 2012, The Linux Foundation. All rights reserved.
Jeff Johnson295189b2012-06-20 16:38:30 -070023 *
24 * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
25 *
26 *
27 * Permission to use, copy, modify, and/or distribute this software for
28 * any purpose with or without fee is hereby granted, provided that the
29 * above copyright notice and this permission notice appear in all
30 * copies.
31 *
32 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
33 * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
34 * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
35 * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
36 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
37 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
38 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
39 * PERFORMANCE OF THIS SOFTWARE.
40 */
41
42#if !defined( HDD_INCLUDES_H__ )
43#define HDD_INCLUDES_H__
44
45/**===========================================================================
46
47 \file wlan_hdd_includes.h
48
49 \brief Internal includes for the Linux HDD
50
51 Copyright 2008 (c) Qualcomm, Incorporated.
52 All Rights Reserved.
53 Qualcomm Confidential and Proprietary.
54
55 ==========================================================================*/
56
57/* $HEADER$ */
58
59/*---------------------------------------------------------------------------
60 Include files
61 -------------------------------------------------------------------------*/
62
63// throw all the includes in here f to get the .c files in the HDD to compile.
64
65#include <linux/version.h>
66#include <linux/module.h>
67#include <linux/kernel.h>
68#include <linux/init.h>
69#include <linux/wireless.h>
70#include <linux/if_arp.h>
71
72
73#include <vos_api.h>
74
75#include <sme_Api.h>
76#include <wlan_qct_tl.h>
77
78#include "wlan_hdd_assoc.h"
79#include "wlan_hdd_dp_utils.h"
80#include "wlan_hdd_mib.h"
81#include "wlan_hdd_wext.h"
82#include "wlan_hdd_main.h"
Jeff Johnson295189b2012-06-20 16:38:30 -070083#include "wlan_hdd_tx_rx.h"
84
Jeff Johnsone7245742012-09-05 17:12:55 -070085#ifdef FEATURE_OEM_DATA_SUPPORT
86/*include for oem data req specific structures*/
87/*and function declarations*/
88#include "wlan_hdd_oemdata.h"
89#endif
Jeff Johnson295189b2012-06-20 16:38:30 -070090
91#endif // end #if !defined( HDD_INCLUDES_H__ )