Commit 3ce6da1b authored by Alex Elder's avatar Alex Elder Committed by Jakub Kicinski

net: ipa: fix source packet contexts limit

I have discovered that the maximum number of source packet contexts
configured for SDM845 is incorrect.  Fix this error.
Signed-off-by: default avatarAlex Elder <elder@linaro.org>
Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent 992c75ae
...@@ -150,11 +150,11 @@ static const struct ipa_resource_src ipa_resource_src[] = { ...@@ -150,11 +150,11 @@ static const struct ipa_resource_src ipa_resource_src[] = {
.type = IPA_RESOURCE_TYPE_SRC_PKT_CONTEXTS, .type = IPA_RESOURCE_TYPE_SRC_PKT_CONTEXTS,
.limits[0] = { .limits[0] = {
.min = 1, .min = 1,
.max = 63, .max = 255,
}, },
.limits[1] = { .limits[1] = {
.min = 1, .min = 1,
.max = 63, .max = 255,
}, },
}, },
{ {
......
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