Skip to content

Commit ea1323d

Browse files
committed
CodeGen/Common/shv: fix params and results of manager and fwStable nodes
Signed-off-by: Stepan Pressl <pressl.stepan@gmail.com>
1 parent 014551b commit ea1323d

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

CodeGen/Common/shv/shv_fwstable_node.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ static const struct shv_method_des shv_dmap_item_get =
6565
{
6666
.name = "get",
6767
.flags = SHV_METHOD_GETTER,
68-
.result = "i",
68+
.result = "i(0,)|n",
6969
.access = SHV_ACCESS_READ,
7070
.method = shv_get
7171
};

CodeGen/Common/shv/shv_manager_node.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ static const struct shv_method_des shv_dmap_item_pausectrl =
7272
{
7373
.name = "pause",
7474
.flags = 0,
75-
.param = "n",
7675
.result = "",
7776
.access = SHV_ACCESS_COMMAND,
7877
.method = shv_pausectrl
@@ -82,7 +81,6 @@ static const struct shv_method_des shv_dmap_item_resumectrl =
8281
{
8382
.name = "resume",
8483
.flags = 0,
85-
.param = "n",
8684
.result = "",
8785
.access = SHV_ACCESS_COMMAND,
8886
.method = shv_resumectrl

0 commit comments

Comments
 (0)