diff options
author | Gowtham Anandha Babu <gowtham.ab@samsung.com> | 2015-01-12 17:38:30 +0530 |
---|---|---|
committer | Luiz Augusto von Dentz <luiz.von.dentz@intel.com> | 2015-01-12 10:35:59 -0200 |
commit | 29338b700258c79e2a0a8c66cdeb71728e75f7ac (patch) | |
tree | 5af3ae6607d5e45a907b7bec9d45fa1bf94ecbd4 | |
parent | 2bf782face6c91979b6230b3a5a0c2710156ac87 (diff) | |
download | bluez-29338b700258c79e2a0a8c66cdeb71728e75f7ac.tar.gz |
parser/hci: Fix ERROR CODES as per core_v4.2
Modified the error codes as per core V4.2, Vol 2, Part D.
-rw-r--r-- | tools/parser/hci.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/parser/hci.c b/tools/parser/hci.c index cd52cb53c..33df542ea 100644 --- a/tools/parser/hci.c +++ b/tools/parser/hci.c @@ -446,9 +446,9 @@ static char *error_code_str[ERROR_CODE_NUM + 1] = { "SCO Offset Rejected", "SCO Interval Rejected", "SCO Air Mode Rejected", - "Invalid LMP Parameters", + "Invalid LMP Parameters / Invalid LL Parameters", "Unspecified Error", - "Unsupported LMP Parameter Value", + "Unsupported LMP Parameter Value / Unsupported LL Parameter Value", "Role Change Not Allowed", "LMP Response Timeout", "LMP Error Transaction Collision", @@ -475,7 +475,7 @@ static char *error_code_str[ERROR_CODE_NUM + 1] = { "Host Busy - Pairing", "Connection Rejected due to No Suitable Channel Found", "Controller Busy", - "Unacceptable Connection Interval", + "Unacceptable Connection Parameters", "Directed Advertising Timeout", "Connection Terminated Due to MIC Failure", "Connection Failed to be Established", |