Commit 7b382122 authored by Colin Ian King's avatar Colin Ian King Committed by Martin K. Petersen

scsi: pm80xx: Clean up indentation of a code block

A block of code is indented one level too deeply, clean this up.

Link: https://lore.kernel.org/r/20210115095824.9170-1-colin.king@canonical.comAcked-by: default avatarJack Wang <jinpu.wang@cloud.ionos.com>
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
Addresses-Coverity: ("Indentation does not match nesting level")
parent 938a2fbe
...@@ -367,15 +367,11 @@ ssize_t pm80xx_get_fatal_dump(struct device *cdev, ...@@ -367,15 +367,11 @@ ssize_t pm80xx_get_fatal_dump(struct device *cdev,
goto moreData; goto moreData;
} else { } else {
pm8001_ha->forensic_info.data_buf.direct_data += pm8001_ha->forensic_info.data_buf.direct_data +=
sprintf( sprintf(pm8001_ha->forensic_info.data_buf.direct_data,
pm8001_ha->forensic_info.data_buf.direct_data,
"%08x ", 4); "%08x ", 4);
pm8001_ha->forensic_info.data_buf.read_len pm8001_ha->forensic_info.data_buf.read_len = 0xFFFFFFFF;
= 0xFFFFFFFF; pm8001_ha->forensic_info.data_buf.direct_len = 0;
pm8001_ha->forensic_info.data_buf.direct_len pm8001_ha->forensic_info.data_buf.direct_offset = 0;
= 0;
pm8001_ha->forensic_info.data_buf.direct_offset
= 0;
pm8001_ha->forensic_info.data_buf.read_len = 0; pm8001_ha->forensic_info.data_buf.read_len = 0;
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment