qcacmn: Prepend kernel includes with "kernel/"

To avoid include conflicts, prepend all kernel includes with "kernel/"

Change-Id: I1c3ae9078d5537b03486afff9c2491881c9f694c
CRs-Fixed: 2098814
This commit is contained in:
Dustin Brown
2017-08-17 15:47:48 -07:00
committed by snandini
parent 3f9b04cf46
commit 49a8f6e37e
13 changed files with 15 additions and 15 deletions

View File

@@ -30,7 +30,7 @@
*/ */
#ifndef _CDP_TXRX_IPA_H_ #ifndef _CDP_TXRX_IPA_H_
#define _CDP_TXRX_IPA_H_ #define _CDP_TXRX_IPA_H_
#include <ipa.h> #include <linux/ipa.h>
#include <cdp_txrx_mob_def.h> #include <cdp_txrx_mob_def.h>
#include "cdp_txrx_handle.h" #include "cdp_txrx_handle.h"

View File

@@ -33,7 +33,7 @@
#include <cdp_txrx_mon_struct.h> #include <cdp_txrx_mon_struct.h>
#include "wlan_objmgr_psoc_obj.h" #include "wlan_objmgr_psoc_obj.h"
#ifdef IPA_OFFLOAD #ifdef IPA_OFFLOAD
#include <ipa.h> #include <linux/ipa.h>
#endif #endif
/****************************************************************************** /******************************************************************************

View File

@@ -22,7 +22,7 @@
#include "hal_rx.h" #include "hal_rx.h"
#include "hal_api.h" #include "hal_api.h"
#include "qdf_nbuf.h" #include "qdf_nbuf.h"
#include <ieee80211.h> #include <linux/ieee80211.h>
#ifdef MESH_MODE_SUPPORT #ifdef MESH_MODE_SUPPORT
#include "if_meta_hdr.h" #include "if_meta_hdr.h"
#endif #endif

View File

@@ -24,7 +24,7 @@
#ifdef CONFIG_MCL #ifdef CONFIG_MCL
#include <cds_ieee80211_common.h> #include <cds_ieee80211_common.h>
#else #else
#include <ieee80211.h> #include <linux/ieee80211.h>
#endif #endif
#define DEFRAG_IEEE80211_ADDR_LEN 6 #define DEFRAG_IEEE80211_ADDR_LEN 6

View File

@@ -26,7 +26,7 @@
#ifdef CONFIG_MCL #ifdef CONFIG_MCL
#include <cds_ieee80211_common.h> #include <cds_ieee80211_common.h>
#else #else
#include <ieee80211.h> #include <linux/ieee80211.h>
#endif #endif
#include "dp_rx_defrag.h" #include "dp_rx_defrag.h"
#include <enet.h> /* LLC_SNAP_HDR_LEN */ #include <enet.h> /* LLC_SNAP_HDR_LEN */

View File

@@ -24,7 +24,7 @@
#include "qdf_trace.h" #include "qdf_trace.h"
#include "qdf_nbuf.h" #include "qdf_nbuf.h"
#include "hal_api_mon.h" #include "hal_api_mon.h"
#include "ieee80211.h" #include "linux/ieee80211.h"
#include "dp_rx_mon.h" #include "dp_rx_mon.h"
#include "wlan_cfg.h" #include "wlan_cfg.h"

View File

@@ -23,7 +23,7 @@
#include "qdf_trace.h" #include "qdf_trace.h"
#include "qdf_nbuf.h" #include "qdf_nbuf.h"
#include "hal_api_mon.h" #include "hal_api_mon.h"
#include "ieee80211.h" #include "linux/ieee80211.h"
#include "dp_rx_mon.h" #include "dp_rx_mon.h"
#include "dp_internal.h" #include "dp_internal.h"
#include "qdf_mem.h" /* qdf_mem_malloc,free */ #include "qdf_mem.h" /* qdf_mem_malloc,free */

View File

@@ -33,7 +33,7 @@
#ifdef CONFIG_MCL #ifdef CONFIG_MCL
#include <cds_ieee80211_common.h> #include <cds_ieee80211_common.h>
#else #else
#include <ieee80211.h> #include <linux/ieee80211.h>
#endif #endif
#ifndef CONFIG_WIN #ifndef CONFIG_WIN

View File

@@ -23,7 +23,7 @@
* an abstraction layer... Should this be moved into a /linux folder? * an abstraction layer... Should this be moved into a /linux folder?
*/ */
#include <string.h> /* memset */ #include <linux/string.h> /* memset */
/* Linux headers */ /* Linux headers */
#include <linux/cpumask.h> #include <linux/cpumask.h>

View File

@@ -31,7 +31,7 @@
* HIF NAPI interface implementation * HIF NAPI interface implementation
*/ */
#include <string.h> /* memset */ #include <linux/string.h> /* memset */
/* Linux headers */ /* Linux headers */
#include <linux/cpumask.h> #include <linux/cpumask.h>

View File

@@ -36,8 +36,8 @@
#define __I_QDF_TRACE_H #define __I_QDF_TRACE_H
/* older kernels have a bug in kallsyms, so ensure module.h is included */ /* older kernels have a bug in kallsyms, so ensure module.h is included */
#include <module.h> #include <linux/module.h>
#include <kallsyms.h> #include <linux/kallsyms.h>
#if !defined(__printf) #if !defined(__printf)
#define __printf(a, b) #define __printf(a, b)

View File

@@ -44,7 +44,7 @@
#include <linux/interrupt.h> #include <linux/interrupt.h>
#include <linux/export.h> #include <linux/export.h>
#include <linux/kthread.h> #include <linux/kthread.h>
#include <stacktrace.h> #include <linux/stacktrace.h>
/* Function declarations and documenation */ /* Function declarations and documenation */

View File

@@ -31,7 +31,7 @@
******************************************************************************/ ******************************************************************************/
#ifdef WLAN_LOGGING_SOCK_SVC_ENABLE #ifdef WLAN_LOGGING_SOCK_SVC_ENABLE
#include <vmalloc.h> #include <linux/vmalloc.h>
#ifdef CONFIG_MCL #ifdef CONFIG_MCL
#include <cds_api.h> #include <cds_api.h>
#include <host_diag_core_event.h> #include <host_diag_core_event.h>
@@ -43,7 +43,7 @@
#include "pktlog_ac.h" #include "pktlog_ac.h"
#endif #endif
#include <wlan_logging_sock_svc.h> #include <wlan_logging_sock_svc.h>
#include <kthread.h> #include <linux/kthread.h>
#include <qdf_time.h> #include <qdf_time.h>
#include <qdf_trace.h> #include <qdf_trace.h>
#include <qdf_mc_timer.h> #include <qdf_mc_timer.h>