Skip to content

Commit

Permalink
Obligatory include fixes needed when building out of MTK build chain
Browse files Browse the repository at this point in the history
  • Loading branch information
JonnyVR1 committed Sep 28, 2016
1 parent 0195f04 commit 2444b90
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 8 deletions.
2 changes: 1 addition & 1 deletion drivers/misc/mediatek/base/power/mt6755/mt_clkbuf_ctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
#include <mach/mt_clkmgr.h>
/* #include <mach/mt_gpio.h> */
/* #include <mach/mt_gpio_core.h> */
#include <mt_clkbuf_ctl.h>
#include "mt_clkbuf_ctl.h"
#include <mt-plat/upmu_common.h>

#define TAG "[Power/clkbuf]"
Expand Down
2 changes: 1 addition & 1 deletion drivers/misc/mediatek/base/power/mt6755/mt_pm_init.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
/* #include "mach/mt_gpufreq.h" */
/* #include "mach/mt_dormant.h" */
#include "mt_cpuidle.h"
#include <mt_clkbuf_ctl.h>
#include "mt_clkbuf_ctl.h"
/* #include "mach/mt_chip.h" */
#include <mt-plat/mtk_rtc.h>

Expand Down
2 changes: 1 addition & 1 deletion drivers/misc/mediatek/base/power/mt6755/mt_spm_mtcmos.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
/*#include <mach/mt_typedefs.h>*/
/*#include <mach/mt_spm_cpu.h>*/
/*#include <mach/mt_spm_reg.h>*/
#include <mt_spm_mtcmos.h>
#include "mt_spm_mtcmos.h"
#include <mach/mt_spm_mtcmos_internal.h>
#include <mach/mt_clkmgr.h>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ extern "C" {
#include <linux/sched.h>

#include "mach/mt_ppm_api.h"
#include "mt_ppm_platform.h"
#include "../src/mach/mt6755/mt_ppm_platform.h"

/*==============================================================*/
/* Definitions */
Expand Down
4 changes: 2 additions & 2 deletions drivers/misc/mediatek/cameraisp/src/mt6755/camera_fdvt.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@
#include <linux/of_irq.h>
#include <linux/of_address.h>

#include <inc/mt_typedefs.h>
#include <inc/camera_fdvt.h>
#include "inc/mt_typedefs.h"
#include "inc/camera_fdvt.h"

#include <asm/cacheflush.h>

Expand Down
2 changes: 1 addition & 1 deletion drivers/misc/mediatek/cmdq/v2/cmdq_def.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
#ifdef CMDQ_COMMON_ENG_SUPPORT
#include "cmdq_engine_common.h"
#else
#include "cmdq_engine.h"
#include "mt6755/cmdq_engine.h"
#endif

#define CMDQ_SPECIAL_SUBSYS_ADDR (99)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1711,7 +1711,15 @@ wlanoidNotifyFwSuspend(IN P_ADAPTER_T prAdapter,
IN PVOID pvSetBuffer,
IN UINT_32 u4SetBufferLen,
OUT PUINT_32 pu4SetInfoLen);

WLAN_STATUS
wlanoidSetAlwaysScan(IN P_ADAPTER_T prAdapter, IN PVOID pvSetBuffer,
IN UINT_32 u4SetBufferLen, OUT PUINT_32 pu4SetInfoLen);


WLAN_STATUS
wlanoidDisableTdlsPs(IN P_ADAPTER_T prAdapter,
IN PVOID pvSetBuffer, IN UINT_32 u4SetBufferLen, OUT PUINT_32 pu4SetInfoLen);
#endif /* _WLAN_OID_H */
WLAN_STATUS wlanoidSetPacketFilter(P_ADAPTER_T prAdapter, UINT_32 u4PacketFilter,
BOOLEAN fgIsOid, PVOID pvSetBuffer, UINT_32 u4SetBufferLen);
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

#include "mt-plat/sync_write.h"
#include "mtk_thermal_typedefs.h"
#include "mt_gpufreq.h"
#include "../../../../../base/power/mt6755/mt_gpufreq.h"

/*
Bank0 : CPU_mp0 (TS_MCU4)
Expand Down

0 comments on commit 2444b90

Please sign in to comment.