--- src/rfkill.c | 13 ++++++++++--- 1 files changed, 10 insertions(+), 3 deletions(-) diff --git a/src/rfkill.c b/src/rfkill.c index b40c6e7..5d32fac 100644 --- a/src/rfkill.c +++ b/src/rfkill.c @@ -128,11 +128,18 @@ static gboolean rfkill_event(GIOChannel *chan, if (id < 0) return TRUE; + DBG("RFKILL unblock for hci%d", id); + adapter = manager_find_adapter_by_id(id); - if (!adapter) + if (!adapter) { + /* + * If device is rfkilled, the initialize operation + * may failed and adapter is not created, then we + * need to set the device powered directly. + */ + adapter_ops_set_powered(id, TRUE); return TRUE; - - DBG("RFKILL unblock for hci%d", id); + } btd_adapter_restore_powered(adapter); -- 1.7.2.2 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html