Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9e9cdf7b authored by vkakani's avatar vkakani
Browse files

msm: arm64: Fix header includes to remove compiler warnings



fix compiler warning generated because of wrong way of
including files. file changes are across different drivers.

Change-Id: I121ead94d24a1f1ee45c8a8b326e80a6274abe79
Signed-off-by: default avatarvkakani <vkakani@codeaurora.org>
parent 4b54d9aa
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -23,8 +23,8 @@
#include <sound/soc.h>
#include <sound/soc-dapm.h>
#include <sound/tlv.h>
#include <btfm_slim.h>
#include <btfm_slim_wcn3990.h>
#include "btfm_slim.h"
#include "btfm_slim_wcn3990.h"
#include <linux/bluetooth-power.h>

int btfm_slim_write(struct btfmslim *btfmslim,
+1 −1
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@
#include <sound/soc.h>
#include <sound/soc-dapm.h>
#include <sound/tlv.h>
#include <btfm_slim.h>
#include "btfm_slim.h"

static int bt_soc_enable_status;
int btfm_feedback_ch_setting;
+2 −2
Original line number Diff line number Diff line
@@ -10,8 +10,8 @@
 * GNU General Public License for more details.
 */
#include <linux/slimbus/slimbus.h>
#include <btfm_slim.h>
#include <btfm_slim_wcn3990.h>
#include "btfm_slim.h"
#include "btfm_slim_wcn3990.h"

/* WCN3990 Port assignment */
struct btfmslim_ch wcn3990_rxport[] = {
+1 −1
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@
#ifndef BTFM_SLIM_WCN3990_H
#define BTFM_SLIM_WCN3990_H
//#ifdef CONFIG_BTFM_SLIM_WCN3990
#include <btfm_slim.h>
#include "btfm_slim.h"

/* Registers Address */
#define CHRK_SB_COMP_TEST			0x00000000
+1 −1
Original line number Diff line number Diff line
@@ -15,8 +15,8 @@
#include <linux/list.h>
#include <linux/workqueue.h>
#include <linux/debugfs.h>
#include <kgsl_device.h>

#include "kgsl_device.h"
#include "kgsl_debugfs.h"
#include "kgsl_trace.h"

Loading