Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
xcap
xcap-capability-linux
Commits
273a998f
Commit
273a998f
authored
Apr 13, 2018
by
Vikram Narayanan
Browse files
lcd/nullnet: Remove extra argument
Signed-off-by:
Vikram Narayanan
<
vikram186@gmail.com
>
parent
d58e082a
Changes
1
Hide whitespace changes
Inline
Side-by-side
lcd-domains/test_mods/nullnet/dummy_lcd/glue/nullnet_caller.c
View file @
273a998f
...
...
@@ -338,7 +338,7 @@ int create_one_async_channel(struct thc_channel **chnl, cptr_t *tx, cptr_t *rx)
xmit_ch_item
=
kzalloc
(
sizeof
(
*
xmit_ch_item
),
GFP_KERNEL
);
thc_channel_group_item_init
(
xmit_ch_item
,
*
chnl
,
NULL
,
false
);
thc_channel_group_item_init
(
xmit_ch_item
,
*
chnl
,
NULL
);
thc_channel_group_item_add
(
&
ch_grp
,
xmit_ch_item
);
...
...
@@ -376,7 +376,7 @@ int __rtnl_link_register(struct rtnl_link_ops *ops)
ch_item
=
kzalloc
(
sizeof
(
*
ch_item
),
GFP_KERNEL
);
thc_channel_group_item_init
(
ch_item
,
chnl
,
NULL
,
true
);
thc_channel_group_item_init
(
ch_item
,
chnl
,
NULL
);
thc_channel_group_item_add
(
&
ch_grp
,
ch_item
);
...
...
@@ -389,7 +389,7 @@ int __rtnl_link_register(struct rtnl_link_ops *ops)
xmit_ch_item
=
kzalloc
(
sizeof
(
*
xmit_ch_item
),
GFP_KERNEL
);
thc_channel_group_item_init
(
xmit_ch_item
,
xmit_chnl
,
NULL
,
false
);
xmit_chnl
,
NULL
);
thc_channel_group_item_add
(
&
ch_grp
,
xmit_ch_item
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment