diff options
Diffstat (limited to 'plugins/hal.c')
-rw-r--r-- | plugins/hal.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/plugins/hal.c b/plugins/hal.c index 42169694..bc990a70 100644 --- a/plugins/hal.c +++ b/plugins/hal.c @@ -94,12 +94,17 @@ static int hal_probe(struct btd_adapter *adapter) dbus_connection_unref(conn); #endif - return -ENODEV; + return 0; +} + +static void hal_remove(struct btd_adapter *adapter) +{ } static struct btd_adapter_driver hal_driver = { .name = "hal", .probe = hal_probe, + .remove = hal_remove, }; static int hal_init(void) |