Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ede2afb9 authored by John Garry's avatar John Garry Committed by Martin K. Petersen
Browse files

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: default avatarJohn Garry <john.garry@huawei.com>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent e1ba0b0b
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -2688,6 +2688,7 @@ static int hisi_sas_show_row_32(struct seq_file *s, int index,
	/* completion header size not fixed per HW version */
	seq_printf(s, "index %04d:\n\t", index);
	for (i = 1; i <= sz / 4; i++, ptr++) {
		seq_printf(s, " 0x%08x", le32_to_cpu(*ptr));
		if (!(i % 4))
			seq_puts(s, "\n\t");
	}