From c6f1fad77c80976f72cfe75485fb16b698bf49a6 Mon Sep 17 00:00:00 2001 From: Tedd Ho-Jeong An Date: Wed, 13 Jun 2018 12:52:18 -0700 Subject: [PATCH] monitor: Fix printing params for HCI Intel DDC command The offset of value for HCI Intel DDC command is incorrect. HCI Intel DDC parameter has a combination of following structure: struct intel_ddc { u8 len; u16 id; u8 *value; } The offset of value should be sum of len and id which is 3. Change-Id: I76278eb72b7742d47a2279f805d25aaeec4a5ef8 Signed-off-by: himanshu --- monitor/intel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monitor/intel.c b/monitor/intel.c index ce624be..4cd1788 100755 --- a/monitor/intel.c +++ b/monitor/intel.c @@ -437,7 +437,7 @@ static void ddc_config_write_cmd(const void *data, uint8_t size) uint16_t param_id = get_le16(data + 1); print_field("Identifier: 0x%4.4x", param_id); - packet_hexdump(data + 2, param_len - 2); + packet_hexdump(data + 3, param_len - 2); data += param_len + 1; size -= param_len + 1; -- 2.7.4