summaryrefslogtreecommitdiff
path: root/plugins/ethernet.c
diff options
context:
space:
mode:
authorDaniel Wagner <daniel.wagner@bmw-carit.de>2011-07-25 16:24:30 +0200
committerMarcel Holtmann <marcel@holtmann.org>2011-07-26 01:21:06 +0200
commit04b5b05b64a613ced1b78ce6e9859f1e10032534 (patch)
tree5248ef24bd922caf8baf005446427a98f9542ee8 /plugins/ethernet.c
parent4c769d10c89d516c6901243142b1efa64ab208ad (diff)
downloadconnman-04b5b05b64a613ced1b78ce6e9859f1e10032534.tar.gz
connman-04b5b05b64a613ced1b78ce6e9859f1e10032534.tar.bz2
connman-04b5b05b64a613ced1b78ce6e9859f1e10032534.zip
network: Remove connman_network_register/unregister()
Since the service object doesn't take a reference the intermediate step of having a connman_network_register/unregister is not needed. This function are only there to have an additional step where probe()/remove() will be called. This is the job of connman_device_add_network()/connman_device_remove_network().
Diffstat (limited to 'plugins/ethernet.c')
-rw-r--r--plugins/ethernet.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/plugins/ethernet.c b/plugins/ethernet.c
index 4829a33b..2ccd4989 100644
--- a/plugins/ethernet.c
+++ b/plugins/ethernet.c
@@ -92,15 +92,12 @@ static void add_network(struct connman_device *device)
if (network == NULL)
return;
- connman_network_register(network);
-
index = connman_device_get_index(device);
connman_network_set_index(network, index);
connman_network_set_name(network, "Wired");
if (connman_device_add_network(device, network) < 0) {
- connman_network_unregister(network);
connman_network_unref(network);
return;
}