29 lines
937 B
Diff
29 lines
937 B
Diff
|
|
From 28283e9ab010f418846eaa00511721745927088f Mon Sep 17 00:00:00 2001
|
||
|
|
From: veega2022 <zhuweijia@huawei.com>
|
||
|
|
Date: Thu, 11 May 2023 09:36:38 +0800
|
||
|
|
Subject: [PATCH 15/18] fix missing white space issue
|
||
|
|
|
||
|
|
Add a space on the left and right of the "="
|
||
|
|
|
||
|
|
Signed-off-by: veega2022 <zhuweijia@huawei.com>
|
||
|
|
---
|
||
|
|
socip/hikp_socip_dumpreg.c | 2 +-
|
||
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
|
||
|
|
diff --git a/socip/hikp_socip_dumpreg.c b/socip/hikp_socip_dumpreg.c
|
||
|
|
index b74dac8..32325bb 100644
|
||
|
|
--- a/socip/hikp_socip_dumpreg.c
|
||
|
|
+++ b/socip/hikp_socip_dumpreg.c
|
||
|
|
@@ -142,7 +142,7 @@ static void hikp_socip_dumpreg_execute(struct major_cmd_ctrl *self)
|
||
|
|
hikp_cmd_init(&req_header, SOCIP_MOD, HIKP_SOCIP_CMD_DUMPREG, param[MODULE_ID_INDEX].val);
|
||
|
|
cmd_ret = hikp_cmd_alloc(&req_header, &req_data, sizeof(req_data));
|
||
|
|
if (!cmd_ret) {
|
||
|
|
- self->err_no=-EINVAL;
|
||
|
|
+ self->err_no = -EINVAL;
|
||
|
|
HIKP_ERROR_PRINT("hikp_cmd_alloc\n");
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
--
|
||
|
|
2.25.1
|
||
|
|
|