1 /* 2 * Copyright (c) 2014, 2016-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 #if !defined(HDD_INCLUDES_H__) 20 #define HDD_INCLUDES_H__ 21 22 /** 23 * DOC: wlan_hdd_includes.h 24 * 25 * Internal includes for the Linux HDD 26 */ 27 28 /* 29 * Include files 30 * 31 * throw all the includes in here to get the .c files in the HDD to compile. 32 */ 33 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> 40 #include <cds_api.h> 41 #include <sme_api.h> 42 #include "wlan_hdd_assoc.h" 43 #include "wlan_hdd_wext.h" 44 #include "wlan_hdd_main.h" 45 #include "wlan_hdd_tx_rx.h" 46 #include <cdp_txrx_ops.h> 47 48 #ifdef FEATURE_OEM_DATA_SUPPORT 49 #include "wlan_hdd_oemdata.h" 50 #endif 51 52 #endif /* end #if !defined(HDD_INCLUDES_H__) */ 53