bluetooth: ignore error if driver returns -EALREADY

This commit is contained in:
Luiz Augusto von Dentz 2012-06-25 11:54:35 +03:00 committed by Denis Kenzior
parent 18fb4817f7
commit fa77d46f9d
1 changed files with 1 additions and 1 deletions

View File

@ -275,7 +275,7 @@ static void bluetooth_probe(GSList *uuids, const char *path,
continue;
err = driver->probe(path, device, adapter, alias);
if (err == 0)
if (err == 0 || err == -EALREADY)
continue;
ofono_error("%s probe: %s (%d)", driver->name, strerror(-err),