diff options
author | Samuel Ortiz <sameo@linux.intel.com> | 2012-04-19 13:06:03 +0200 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2012-04-19 13:08:32 +0200 |
commit | e718cc7a21a99a99e2c75cd4c89c83f5b576bb17 (patch) | |
tree | 518b6c167c8bd53ddbb867a1994968212256e7a4 /test | |
parent | 93e5a0ca1ade57be96a232f419918749a0b74698 (diff) | |
download | neard-e718cc7a21a99a99e2c75cd4c89c83f5b576bb17.tar.gz neard-e718cc7a21a99a99e2c75cd4c89c83f5b576bb17.tar.bz2 neard-e718cc7a21a99a99e2c75cd4c89c83f5b576bb17.zip |
adapter: Bypass the target layer
Adapters talk to tags or device directly. The target vs initiator
idea will be removed from the code base.
This commit temporarily breaks p2p.
Diffstat (limited to 'test')
-rwxr-xr-x | test/list-adapters | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/list-adapters b/test/list-adapters index 379aca4..9e86b4d 100755 --- a/test/list-adapters +++ b/test/list-adapters @@ -32,7 +32,7 @@ for path in properties["Adapters"]: val = "true" else: val = "false" - elif key in ["Protocols", "Targets"]: + elif key in ["Protocols", "Tags"]: val = extract_list(properties[key]) else: val = str(properties[key]) |