From dcbd6fa4220183280b5b94683cfe7f3033009d37 Mon Sep 17 00:00:00 2001 From: Tomasz Bursztyka Date: Wed, 4 Jul 2012 16:48:03 +0300 Subject: [PATCH] technology: Set regulatory domain by device or fallback to technology based --- src/technology.c | 36 ++++++++++++++++++++++++++++++++---- 1 file changed, 32 insertions(+), 4 deletions(-) diff --git a/src/technology.c b/src/technology.c index e2e00e5..31587e5 100644 --- a/src/technology.c +++ b/src/technology.c @@ -244,6 +244,21 @@ void connman_technology_regdom_notify(struct connman_technology *technology, technology->regdom = g_strdup(alpha2); } +static int set_regdom_by_device(struct connman_technology *technology, + const char *alpha2) +{ + GSList *list; + + for (list = technology->device_list; list; list = list->next) { + struct connman_device *device = list->data; + + if (connman_device_set_regdom(device, alpha2) != 0) + return -ENOTSUP; + } + + return 0; +} + int connman_technology_set_regdom(const char *alpha2) { GSList *list; @@ -251,11 +266,14 @@ int connman_technology_set_regdom(const char *alpha2) for (list = technology_list; list; list = list->next) { struct connman_technology *technology = list->data; - if (technology->driver == NULL) - continue; + if (set_regdom_by_device(technology, alpha2) != 0) { + if (technology->driver == NULL) + continue; - if (technology->driver->set_regdom) - technology->driver->set_regdom(technology, alpha2); + if (technology->driver->set_regdom != NULL) + technology->driver->set_regdom(technology, + alpha2); + } } return 0; @@ -857,6 +875,16 @@ void __connman_technology_notify_regdom_by_device(struct connman_device *device, if (technology == NULL) return; + if (result < 0) { + if (technology->driver != NULL && + technology->driver->set_regdom != NULL) { + technology->driver->set_regdom(technology, alpha2); + return; + } + + alpha2 = NULL; + } + connman_technology_regdom_notify(technology, alpha2); } -- 2.7.4