From a4b7204f40888d87f4a2c48522bb0264a05fc960 Mon Sep 17 00:00:00 2001 From: Andrey Smirnov Date: Thu, 23 Aug 2018 19:52:40 -0700 Subject: bbu: Remove logical negation in barebox_update_handler_exists() Returning !bbu_find_handler() from barebox_update_handler_exists() would return the opposite result from what the name of that funciton implies. Drop the "!" to make it behave as expected. Signed-off-by: Andrey Smirnov Signed-off-by: Sascha Hauer --- common/bbu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'common/bbu.c') diff --git a/common/bbu.c b/common/bbu.c index 11e44f4a7d..9e206227a7 100644 --- a/common/bbu.c +++ b/common/bbu.c @@ -151,7 +151,7 @@ bool barebox_update_handler_exists(struct bbu_data *data) if (!data->handler_name) return false; - return !bbu_find_handler(data->handler_name); + return bbu_find_handler(data->handler_name) != NULL; } static int bbu_check_of_compat(struct bbu_data *data) -- cgit v1.2.3