diff options
Diffstat (limited to 'drivers/bluetooth/btintel.h')
-rw-r--r-- | drivers/bluetooth/btintel.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/drivers/bluetooth/btintel.h b/drivers/bluetooth/btintel.h index 4bda6ab34f60..b278d14758d5 100644 --- a/drivers/bluetooth/btintel.h +++ b/drivers/bluetooth/btintel.h | |||
@@ -73,6 +73,11 @@ struct intel_secure_send_result { | |||
73 | 73 | ||
74 | int btintel_check_bdaddr(struct hci_dev *hdev); | 74 | int btintel_check_bdaddr(struct hci_dev *hdev); |
75 | int btintel_set_bdaddr(struct hci_dev *hdev, const bdaddr_t *bdaddr); | 75 | int btintel_set_bdaddr(struct hci_dev *hdev, const bdaddr_t *bdaddr); |
76 | void btintel_hw_error(struct hci_dev *hdev, u8 code); | ||
77 | |||
78 | void btintel_version_info(struct hci_dev *hdev, struct intel_version *ver); | ||
79 | int btintel_secure_send(struct hci_dev *hdev, u8 fragment_type, u32 plen, | ||
80 | const void *param); | ||
76 | 81 | ||
77 | #else | 82 | #else |
78 | 83 | ||
@@ -86,4 +91,18 @@ static inline int btintel_set_bdaddr(struct hci_dev *hdev, const bdaddr_t *bdadd | |||
86 | return -EOPNOTSUPP; | 91 | return -EOPNOTSUPP; |
87 | } | 92 | } |
88 | 93 | ||
94 | static inline void btintel_hw_error(struct hci_dev *hdev, u8 code) | ||
95 | { | ||
96 | } | ||
97 | |||
98 | static void btintel_version_info(struct hci_dev *hdev, struct intel_version *ver) | ||
99 | { | ||
100 | } | ||
101 | |||
102 | static inline int btintel_secure_send(struct hci_dev *hdev, u8 fragment_type, | ||
103 | u32 plen, const void *param) | ||
104 | { | ||
105 | return -EOPNOTSUPP; | ||
106 | } | ||
107 | |||
89 | #endif | 108 | #endif |