From: Alex Elder Date: Fri, 19 Mar 2021 15:24:19 +0000 (-0500) Subject: net: ipa: fix canary count for SC7180 UC_INFO region X-Git-Tag: accepted/tizen/unified/20230118.172025~7335^2~466^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=22e3b314302c004bb216ed742e912e866b6d31a6;p=platform%2Fkernel%2Flinux-rpi.git 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 Signed-off-by: David S. Miller --- diff --git a/drivers/net/ipa/ipa_data-sc7180.c b/drivers/net/ipa/ipa_data-sc7180.c index 01681be..4348695 100644 --- a/drivers/net/ipa/ipa_data-sc7180.c +++ b/drivers/net/ipa/ipa_data-sc7180.c @@ -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,