Skip to content

Commit be22bbd

Browse files
jiegan0107quic-tingweiz
authored andcommitted
QCLINUX: memory-dump: fix array size issue for Talos
Fix the wrong arrary size issue for Talos. Signed-off-by: Jie Gan <jie.gan@oss.qualcomm.com>
1 parent c60e1a1 commit be22bbd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/firmware/qcom/memory_dump_dev.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ static const struct dump_table lemans_dump_table = {
364364

365365
static const struct dump_table talos_dump_table = {
366366
.items = talos_items,
367-
.num_of_items = ARRAY_SIZE(lemans_items),
367+
.num_of_items = ARRAY_SIZE(talos_items),
368368
.imem_base = 0x146aa010,
369369
.imem_size = 0x8,
370370
};

0 commit comments

Comments
 (0)