Skip to content

Commit 3a635a8

Browse files
jiegan0107shashim-quic
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 4ee4e17 commit 3a635a8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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)