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:
Rupesh Gujare 2013-08-15 12:00:21 +01:00 committed by Greg Kroah-Hartman
parent 35cf904593
commit 3bc0d88243

View file

@ -663,7 +663,7 @@ static inline void oz_hcd_put(struct oz_hcd *ozhcd)
struct oz_port *oz_hcd_pd_arrived(void *hpd) struct oz_port *oz_hcd_pd_arrived(void *hpd)
{ {
int i; int i;
struct oz_port *hport = NULL; struct oz_port *hport;
struct oz_hcd *ozhcd; struct oz_hcd *ozhcd;
struct oz_endpoint *ep; struct oz_endpoint *ep;