Skip to content

Commit 6a2843a

Browse files
lweiss-fairphonekuba-moo
authored andcommitted
net: ipa: Fix QSB data for v4.7
As per downstream reference, max_writes should be 12 and max_reads should be 13. Fixes: b310de7 ("net: ipa: add IPA v4.7 support") Signed-off-by: Luca Weiss <luca.weiss@fairphone.com> Reviewed-by: Alex Elder <elder@riscstar.com> Link: https://patch.msgid.link/20250227-ipa-v4-7-fixes-v1-2-a88dd8249d8a@fairphone.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
1 parent 5eb3dc1 commit 6a2843a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/net/ipa/data/ipa_data-v4.7.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ enum ipa_rsrc_group_id {
3838
/* QSB configuration data for an SoC having IPA v4.7 */
3939
static const struct ipa_qsb_data ipa_qsb_data[] = {
4040
[IPA_QSB_MASTER_DDR] = {
41-
.max_writes = 8,
42-
.max_reads = 0, /* no limit (hardware max) */
41+
.max_writes = 12,
42+
.max_reads = 13,
4343
.max_reads_beats = 120,
4444
},
4545
};

0 commit comments

Comments
 (0)