bluetooth: Fix include for local headers
Fix includes for local headers that should use "" and never <>:
drivers/bluetooth/btfm_slim.c:20:23: fatal error: btfm_slim.h:
No such file or directory
#include <btfm_slim.h>
drivers/bluetooth/btfm_slim.c:21:29: fatal error: btfm_slim_slave.h:
No such file or directory
#include <btfm_slim_slave.h>
Fixes: 670a322
("bluetooth: Add bluetooth slimbus slave drivers")
Change-Id: Ic0dedbad41ed45b5757e134b7f6e83414fc20dbd
Signed-off-by: Jordan Crouse <jcrouse@codeaurora.org>
This commit is contained in:
parent
f05af9986f
commit
d665757035
4 changed files with 6 additions and 6 deletions
|
@ -17,8 +17,8 @@
|
|||
#include <sound/soc.h>
|
||||
#include <sound/soc-dapm.h>
|
||||
#include <sound/tlv.h>
|
||||
#include <btfm_slim.h>
|
||||
#include <btfm_slim_slave.h>
|
||||
#include "btfm_slim.h"
|
||||
#include "btfm_slim_slave.h"
|
||||
#include <linux/bluetooth-power.h>
|
||||
|
||||
int btfm_slim_write(struct btfmslim *btfmslim,
|
||||
|
|
|
@ -18,7 +18,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;
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
*/
|
||||
|
||||
#include <linux/slimbus/slimbus.h>
|
||||
#include <btfm_slim.h>
|
||||
#include <btfm_slim_slave.h>
|
||||
#include "btfm_slim.h"
|
||||
#include "btfm_slim_slave.h"
|
||||
|
||||
/* SLAVE (WCN3990/QCA6390) Port assignment */
|
||||
struct btfmslim_ch slave_rxport[] = {
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
#ifndef BTFM_SLIM_SLAVE_H
|
||||
#define BTFM_SLIM_SLAVE_H
|
||||
#include <btfm_slim.h>
|
||||
#include "btfm_slim.h"
|
||||
|
||||
/* Registers Address */
|
||||
#define SLAVE_SB_COMP_TEST 0x00000000
|
||||
|
|
Loading…
Reference in a new issue