Commit 93f9fefc authored by Anilkumar Kolli's avatar Anilkumar Kolli Committed by Kalle Valo

ath10k: coredump: fix IRAM addr for QCA9984, QCA4019, QCA9888 and QCA99x0

The IRAM start address in coredump was wrong for QCA9984, QCA4019, QCA9888 and
QCA99x0.

Tested on: QCA9984, QCA4019
FW version: 10.4-3.9.0.2-00044
Signed-off-by: default avatarAnilkumar Kolli <akolli@codeaurora.org>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
parent 30654760
......@@ -703,7 +703,7 @@ static const struct ath10k_mem_region qca99x0_hw20_mem_regions[] = {
},
{
.type = ATH10K_MEM_REGION_TYPE_REG,
.start = 0x98000,
.start = 0x980000,
.len = 0x50000,
.name = "IRAM",
.section_table = {
......@@ -786,7 +786,7 @@ static const struct ath10k_mem_region qca9984_hw10_mem_regions[] = {
},
{
.type = ATH10K_MEM_REGION_TYPE_REG,
.start = 0x98000,
.start = 0x980000,
.len = 0x50000,
.name = "IRAM",
.section_table = {
......@@ -891,7 +891,7 @@ static const struct ath10k_mem_region qca4019_hw10_mem_regions[] = {
},
{
.type = ATH10K_MEM_REGION_TYPE_REG,
.start = 0x98000,
.start = 0x980000,
.len = 0x50000,
.name = "IRAM",
.section_table = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment