blob: 1c1c90a0e853a318ca3e45ac06cb07af7ade6fec [file] [log] [blame]
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001/*
Jeff Johnson23980b62017-01-12 10:41:36 -08002 * Copyright (c) 2014, 2016-2017 The Linux Foundation. All rights reserved.
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08003 *
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08004 * 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
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080019#if !defined(HDD_INCLUDES_H__)
20#define HDD_INCLUDES_H__
21
Jeff Johnson23980b62017-01-12 10:41:36 -080022/**
23 * DOC: wlan_hdd_includes.h
24 *
25 * Internal includes for the Linux HDD
26 */
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080027
Jeff Johnson23980b62017-01-12 10:41:36 -080028/*
29 * Include files
30 *
31 * throw all the includes in here to get the .c files in the HDD to compile.
32 */
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080033
34#include <linux/version.h>
35#include <linux/module.h>
36#include <linux/kernel.h>
37#include <linux/init.h>
38#include <linux/wireless.h>
39#include <linux/if_arp.h>
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080040#include <cds_api.h>
41#include <sme_api.h>
42#include "wlan_hdd_assoc.h"
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080043#include "wlan_hdd_wext.h"
44#include "wlan_hdd_main.h"
45#include "wlan_hdd_tx_rx.h"
Leo Changfdb45c32016-10-28 11:09:23 -070046#include <cdp_txrx_ops.h>
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080047
48#ifdef FEATURE_OEM_DATA_SUPPORT
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080049#include "wlan_hdd_oemdata.h"
50#endif
51
52#endif /* end #if !defined(HDD_INCLUDES_H__) */