Style: No need for this to be a function
authorDenis Kenzior <denkenz@gmail.com>
Fri, 12 Feb 2010 18:02:39 +0000 (12:02 -0600)
committerDenis Kenzior <denkenz@gmail.com>
Fri, 12 Feb 2010 18:02:39 +0000 (12:02 -0600)
plugins/hfp.c

index 9191af2..c07c4f4 100644 (file)
@@ -804,24 +804,21 @@ done:
        dbus_message_unref(reply);
 }
 
-static int hfp_connect_ofono_handsfree(struct ofono_modem *modem)
+/* power up hardware */
+static int hfp_enable(struct ofono_modem *modem)
 {
        struct hfp_data *data = ofono_modem_get_data(modem);
+       int status;
 
-       DBG("Connect to bluetooth daemon");
+       DBG("%p", modem);
 
-       return send_method_call_with_reply(BLUEZ_SERVICE, data->handsfree_path,
+       status = send_method_call_with_reply(BLUEZ_SERVICE,
+                               data->handsfree_path,
                                BLUEZ_GATEWAY_INTERFACE, "Connect",
                                hfp_connect_reply, modem, 15,
                                DBUS_TYPE_INVALID);
-}
 
-/* power up hardware */
-static int hfp_enable(struct ofono_modem *modem)
-{
-       DBG("%p", modem);
-
-       if (hfp_connect_ofono_handsfree(modem) < 0)
+       if (status < 0)
                return -EINVAL;
 
        return -EINPROGRESS;