staging: comedi: use !x in place of NULL comparison
Challenge suggested by coccinelle. Avoid NULL comparison, compare using boolean operator. Signed-off-by: Payal Kshirsagar <payal.s.kshirsagar.98@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
198980e079
commit
643cd0a25d
|
@ -282,7 +282,7 @@ void test_ni_sort_device_routes(void)
|
|||
|
||||
void test_ni_find_route_set(void)
|
||||
{
|
||||
unittest(ni_find_route_set(bad_dest, &DR) == NULL,
|
||||
unittest(!ni_find_route_set(bad_dest, &DR),
|
||||
"check for nonexistent route_set\n");
|
||||
unittest(ni_find_route_set(dest0, &DR) == &DR.routes[0],
|
||||
"find first route_set\n");
|
||||
|
|
Loading…
Reference in New Issue