mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
net: ipa: fix canary count for SC7180 UC_INFO region
There should be no canary values written before the beginning of the UC_INFO memory region. This was correct for SDM845, but somehow was committed with the wrong value for SC7180. This bug seems to cause no harm, so we'll just correct it without back-porting. Signed-off-by: Alex Elder <elder@linaro.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
e4a9f45b0b
commit
22e3b31430
1 changed files with 1 additions and 1 deletions
|
@ -206,7 +206,7 @@ static const struct ipa_mem ipa_mem_local_data[] = {
|
|||
[IPA_MEM_UC_INFO] = {
|
||||
.offset = 0x0080,
|
||||
.size = 0x0200,
|
||||
.canary_count = 2,
|
||||
.canary_count = 0,
|
||||
},
|
||||
[IPA_MEM_V4_FILTER_HASHED] = {
|
||||
.offset = 0x0288,
|
||||
|
|
Loading…
Reference in a new issue