提交 3ce6da1b 编写于 作者: A Alex Elder 提交者: 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: NAlex Elder <elder@linaro.org>
Signed-off-by: NJakub Kicinski <kuba@kernel.org>
上级 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% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册