Commit 9ccc2eb4 authored by Allan Stephens's avatar Allan Stephens Committed by David S. Miller

tipc: Eliminate unnecessary initialization in native API send routines

Eliminate a couple of instances where TIPC's native API send routines
were doing pointless initialization of local variables.
Signed-off-by: default avatarAllan Stephens <allan.stephens@windriver.com>
Signed-off-by: default avatarPaul Gortmaker <paul.gortmaker@windriver.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 289464e4
...@@ -1452,7 +1452,7 @@ int tipc_forward2name(u32 ref, ...@@ -1452,7 +1452,7 @@ int tipc_forward2name(u32 ref,
struct port *p_ptr; struct port *p_ptr;
struct tipc_msg *msg; struct tipc_msg *msg;
u32 destnode = domain; u32 destnode = domain;
u32 destport = 0; u32 destport;
int res; int res;
p_ptr = tipc_port_deref(ref); p_ptr = tipc_port_deref(ref);
...@@ -1524,7 +1524,7 @@ int tipc_forward_buf2name(u32 ref, ...@@ -1524,7 +1524,7 @@ int tipc_forward_buf2name(u32 ref,
struct port *p_ptr; struct port *p_ptr;
struct tipc_msg *msg; struct tipc_msg *msg;
u32 destnode = domain; u32 destnode = domain;
u32 destport = 0; u32 destport;
int res; int res;
p_ptr = (struct port *)tipc_ref_deref(ref); p_ptr = (struct port *)tipc_ref_deref(ref);
......
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