Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

scsi: hisi_sas: Add missing seq_printf() call in hisi_sas_show_row_32()

This call must have been missed when I reworked the debugfs feature for
upstreaming, so add it back.

Signed-off-by: John Garry <john.garry@huawei.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>

authored by

John Garry and committed by
Martin K. Petersen
ede2afb9 e1ba0b0b

+1
+1
drivers/scsi/hisi_sas/hisi_sas_main.c
··· 2688 2688 /* completion header size not fixed per HW version */ 2689 2689 seq_printf(s, "index %04d:\n\t", index); 2690 2690 for (i = 1; i <= sz / 4; i++, ptr++) { 2691 + seq_printf(s, " 0x%08x", le32_to_cpu(*ptr)); 2691 2692 if (!(i % 4)) 2692 2693 seq_puts(s, "\n\t"); 2693 2694 }