thunderbolt: Use NULL instead of 0 in switch.c
The function returns a pointer. Hence return NULL instead of 0. Signed-off-by: Sachin Kamat <sachin.kamat@samsung.com> Acked-by: Andreas Noever <andreas.noever@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
10fefe56bb
commit
c9c2deef45
@@ -260,11 +260,11 @@ struct tb_switch *get_switch_at_route(struct tb_switch *sw, u64 route)
|
|||||||
if (route == 0)
|
if (route == 0)
|
||||||
return sw;
|
return sw;
|
||||||
if (next_port > sw->config.max_port_number)
|
if (next_port > sw->config.max_port_number)
|
||||||
return 0;
|
return NULL;
|
||||||
if (tb_is_upstream_port(&sw->ports[next_port]))
|
if (tb_is_upstream_port(&sw->ports[next_port]))
|
||||||
return 0;
|
return NULL;
|
||||||
if (!sw->ports[next_port].remote)
|
if (!sw->ports[next_port].remote)
|
||||||
return 0;
|
return NULL;
|
||||||
return get_switch_at_route(sw->ports[next_port].remote->sw,
|
return get_switch_at_route(sw->ports[next_port].remote->sw,
|
||||||
route >> TB_ROUTE_SHIFT);
|
route >> TB_ROUTE_SHIFT);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user