Re: [PATCH BlueZ v1 4/5] media: Create multiple transports if needed

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi Mikel,

On Fri, Apr 27, 2012 at 1:59 PM, Mikel Astiz <mikel.astiz.oss@xxxxxxxxx> wrote:

> -static struct media_transport *get_unique_transport(
> -                                       struct media_endpoint *endpoint)
> -{
> -       if (endpoint->transports == NULL)
> -               return NULL;
> -
> -       if (endpoint->transports->next != NULL)
> -               return NULL;
> -
> -       return endpoint->transports->data;
> -}

This shouldn't be here in the first place.

>        } else if (strcasecmp(uuid, HFP_AG_UUID) == 0 ||
>                                        strcasecmp(uuid, HSP_AG_UUID) == 0) {
> -               struct audio_device *dev;
> +               GSList *list;
> +               GSList *l;
>
>                endpoint->hs_watch = headset_add_state_cb(headset_state_changed,
>                                                                endpoint);
> -               dev = manager_find_device(NULL, &adapter->src, BDADDR_ANY,
> +               list = manager_find_devices(NULL, &adapter->src, BDADDR_ANY,
>                                                AUDIO_HEADSET_INTERFACE, TRUE);
> -               if (dev)
> +
> +               for (l = list; l != NULL; l = l->next) {
> +                       struct audio_device *dev = l->data;
> +
>                        set_configuration(endpoint, dev, NULL, 0,
>                                                headset_setconf_cb, dev, NULL);
> +               }
> +
> +               g_slist_free(list);
>        } else if (strcasecmp(uuid, HFP_HS_UUID) == 0 ||
>                                        strcasecmp(uuid, HSP_HS_UUID) == 0) {
> -               struct audio_device *dev;
> +               GSList *list;
> +               GSList *l;
>
>                endpoint->ag_watch = gateway_add_state_cb(gateway_state_changed,
>                                                                endpoint);
> -               dev = manager_find_device(NULL, &adapter->src, BDADDR_ANY,
> +               list = manager_find_devices(NULL, &adapter->src, BDADDR_ANY,
>                                                AUDIO_GATEWAY_INTERFACE, TRUE);
> -               if (dev)
> +
> +               for (l = list; l != NULL; l = l->next) {
> +                       struct audio_device *dev = l->data;
> +
>                        set_configuration(endpoint, dev, NULL, 0,
>                                                gateway_setconf_cb, dev, NULL);
> +               }
> +
> +               g_slist_free(list);
>        } else {
>                if (err)
>                        *err = -EINVAL;

This function is becoming too big/complex, please split it per
uuid/role whenever possible.


-- 
Luiz Augusto von Dentz
--
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


[Index of Archives]     [Bluez Devel]     [Linux Wireless Networking]     [Linux Wireless Personal Area Networking]     [Linux ATH6KL]     [Linux USB Devel]     [Linux Media Drivers]     [Linux Audio Users]     [Linux Kernel]     [Linux SCSI]     [Big List of Linux Books]

  Powered by Linux