Skip to content

Commit bc207cd

Browse files
ikegami-tigaw
authored andcommitted
mi: fix indentation errors
Trailing spaces used after tab key but the indentations were error. Signed-off-by: Tokunori Ikegami <ikegami.t@gmail.com>
1 parent 0836183 commit bc207cd

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/nvme/mi.h

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1665,8 +1665,8 @@ static inline int nvme_mi_admin_get_log_error(nvme_mi_ctrl_t ctrl,
16651665
struct nvme_error_log_page *err_log)
16661666
{
16671667
return nvme_mi_admin_get_nsid_log(ctrl, rae, NVME_LOG_LID_ERROR,
1668-
NVME_NSID_ALL, sizeof(*err_log) * nr_entries,
1669-
err_log);
1668+
NVME_NSID_ALL, sizeof(*err_log) * nr_entries,
1669+
err_log);
16701670
}
16711671

16721672
/**
@@ -1691,7 +1691,7 @@ static inline int nvme_mi_admin_get_log_smart(nvme_mi_ctrl_t ctrl, __u32 nsid,
16911691
struct nvme_smart_log *smart_log)
16921692
{
16931693
return nvme_mi_admin_get_nsid_log(ctrl, rae, NVME_LOG_LID_SMART,
1694-
nsid, sizeof(*smart_log), smart_log);
1694+
nsid, sizeof(*smart_log), smart_log);
16951695
}
16961696

16971697
/**
@@ -1711,7 +1711,7 @@ static inline int nvme_mi_admin_get_log_fw_slot(nvme_mi_ctrl_t ctrl, bool rae,
17111711
struct nvme_firmware_slot *fw_log)
17121712
{
17131713
return nvme_mi_admin_get_nsid_log(ctrl, rae, NVME_LOG_LID_FW_SLOT,
1714-
NVME_NSID_ALL, sizeof(*fw_log), fw_log);
1714+
NVME_NSID_ALL, sizeof(*fw_log), fw_log);
17151715
}
17161716

17171717
/**
@@ -1732,7 +1732,7 @@ static inline int nvme_mi_admin_get_log_changed_ns_list(nvme_mi_ctrl_t ctrl,
17321732
struct nvme_ns_list *ns_log)
17331733
{
17341734
return nvme_mi_admin_get_nsid_log(ctrl, rae, NVME_LOG_LID_CHANGED_NS,
1735-
NVME_NSID_ALL, sizeof(*ns_log), ns_log);
1735+
NVME_NSID_ALL, sizeof(*ns_log), ns_log);
17361736
}
17371737

17381738
/**
@@ -1799,8 +1799,8 @@ static inline int nvme_mi_admin_get_log_device_self_test(nvme_mi_ctrl_t ctrl,
17991799
* &enum nvme_status_field) or -1 with errno set otherwise.
18001800
*/
18011801
static inline int nvme_mi_admin_get_log_create_telemetry_host_mcda(nvme_mi_ctrl_t ctrl,
1802-
enum nvme_telemetry_da mcda,
1803-
struct nvme_telemetry_log *log)
1802+
enum nvme_telemetry_da mcda,
1803+
struct nvme_telemetry_log *log)
18041804
{
18051805
struct nvme_get_log_args args = {
18061806
.lpo = 0,
@@ -2203,7 +2203,7 @@ static inline int nvme_mi_admin_get_log_mi_cmd_supported_effects(nvme_mi_ctrl_t
22032203
struct nvme_mi_cmd_supported_effects_log *log)
22042204
{
22052205
return nvme_mi_admin_get_nsid_log(ctrl, rae, NVME_LOG_LID_MI_CMD_SUPPORTED_EFFECTS,
2206-
NVME_NSID_NONE, sizeof(*log), log);
2206+
NVME_NSID_NONE, sizeof(*log), log);
22072207
}
22082208

22092209
/**

0 commit comments

Comments
 (0)