summaryrefslogtreecommitdiffstats
path: root/hcid/device.c
diff options
context:
space:
mode:
Diffstat (limited to 'hcid/device.c')
-rw-r--r--hcid/device.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/hcid/device.c b/hcid/device.c
index 0ab5d595..8de26cf1 100644
--- a/hcid/device.c
+++ b/hcid/device.c
@@ -994,6 +994,14 @@ void device_set_cap(struct device *device, uint8_t cap)
device->cap = cap;
}
+void device_set_auth(struct device *device, uint8_t auth)
+{
+ if (!device)
+ return;
+
+ device->auth = auth;
+}
+
int btd_register_device_driver(struct btd_device_driver *driver)
{
const char **uuid;