Commit 936daee9 authored by Luiz Augusto von Dentz's avatar Luiz Augusto von Dentz
Browse files

Bluetooth: Remove hci_request.{c,h}



This removes hci_request.{c,h} since it shall no longer be used.

Signed-off-by: default avatarLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
parent f2d89775
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -441,6 +441,10 @@ typedef void (*hci_req_complete_t)(struct hci_dev *hdev, u8 status, u16 opcode);
typedef void (*hci_req_complete_skb_t)(struct hci_dev *hdev, u8 status,
				       u16 opcode, struct sk_buff *skb);

void hci_req_cmd_complete(struct hci_dev *hdev, u16 opcode, u8 status,
			  hci_req_complete_t *req_complete,
			  hci_req_complete_skb_t *req_complete_skb);

#define HCI_REQ_START	BIT(0)
#define HCI_REQ_SKB	BIT(1)

+1 −2
Original line number Diff line number Diff line
@@ -14,8 +14,7 @@ bluetooth_6lowpan-y := 6lowpan.o

bluetooth-y := af_bluetooth.o hci_core.o hci_conn.o hci_event.o mgmt.o \
	hci_sock.o hci_sysfs.o l2cap_core.o l2cap_sock.o smp.o lib.o \
	ecdh_helper.o hci_request.o mgmt_util.o mgmt_config.o hci_codec.o \
	eir.o hci_sync.o
	ecdh_helper.o mgmt_util.o mgmt_config.o hci_codec.o eir.o hci_sync.o

bluetooth-$(CONFIG_DEV_COREDUMP) += coredump.o

+0 −1
Original line number Diff line number Diff line
@@ -34,7 +34,6 @@
#include <net/bluetooth/iso.h>
#include <net/bluetooth/mgmt.h>

#include "hci_request.h"
#include "smp.h"
#include "eir.h"

+0 −1
Original line number Diff line number Diff line
@@ -40,7 +40,6 @@
#include <net/bluetooth/l2cap.h>
#include <net/bluetooth/mgmt.h>

#include "hci_request.h"
#include "hci_debugfs.h"
#include "smp.h"
#include "leds.h"
+0 −1
Original line number Diff line number Diff line
@@ -28,7 +28,6 @@
#include <net/bluetooth/hci_core.h>

#include "smp.h"
#include "hci_request.h"
#include "hci_debugfs.h"

#define DEFINE_QUIRK_ATTRIBUTE(__name, __quirk)				      \
Loading