summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohit Aggarwal <maggarwa@codeaurora.org>2017-01-16 10:14:34 +0530
committerMohit Aggarwal <maggarwa@codeaurora.org>2017-01-16 10:21:57 +0530
commit19f7e40250b08cf885277a3087ae56ab455d45de (patch)
tree8a0fa07c591dc7747c04f1aa0a9999452e2209c8
parent55e8426a192811d7567f19d7e781727f46b0406d (diff)
diag: Change CDSP socket instance id
Currently, CDSP socket instance id on APPS is not matching with instance id on CDSP peripheral due to which APPS is thinking that channel has been opened with WDSP. This patch fixes this discrepancy. CRs-Fixed: 1111626 Change-Id: I990ae8fd23c95f16be72b4fe207926444244c23e Signed-off-by: Mohit Aggarwal <maggarwa@codeaurora.org>
-rw-r--r--drivers/char/diag/diagfwd_socket.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/char/diag/diagfwd_socket.c b/drivers/char/diag/diagfwd_socket.c
index 217d20f72344..70560c22941f 100644
--- a/drivers/char/diag/diagfwd_socket.c
+++ b/drivers/char/diag/diagfwd_socket.c
@@ -1,4 +1,4 @@
-/* Copyright (c) 2015-2016, The Linux Foundation. All rights reserved.
+/* Copyright (c) 2015-2017, The Linux Foundation. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 and
@@ -40,8 +40,8 @@
#define LPASS_INST_BASE 64
#define WCNSS_INST_BASE 128
#define SENSORS_INST_BASE 192
-#define WDSP_INST_BASE 256
-#define CDSP_INST_BASE 320
+#define CDSP_INST_BASE 256
+#define WDSP_INST_BASE 320
#define INST_ID_CNTL 0
#define INST_ID_CMD 1