mirror of https://gitee.com/openkylin/linux.git
staging: ozwpan: Remove unneeded variable initializer
We are assigning value to hport before returning, there is no need to initialize it. Signed-off-by: Rupesh Gujare <rupesh.gujare@atmel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
35cf904593
commit
3bc0d88243
|
@ -663,7 +663,7 @@ static inline void oz_hcd_put(struct oz_hcd *ozhcd)
|
|||
struct oz_port *oz_hcd_pd_arrived(void *hpd)
|
||||
{
|
||||
int i;
|
||||
struct oz_port *hport = NULL;
|
||||
struct oz_port *hport;
|
||||
struct oz_hcd *ozhcd;
|
||||
struct oz_endpoint *ep;
|
||||
|
||||
|
|
Loading…
Reference in New Issue