summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorAndrey Smirnov <andrew.smirnov@gmail.com>2018-08-23 19:52:40 -0700
committerSascha Hauer <s.hauer@pengutronix.de>2018-08-31 08:30:08 +0200
commita4b7204f40888d87f4a2c48522bb0264a05fc960 (patch)
tree001a21d5c41e715597efcb22671a0136f53ad956 /common
parentea3da394e0effa45569e99d0ba3496a496a0948b (diff)
downloadbarebox-a4b7204f40888d87f4a2c48522bb0264a05fc960.tar.gz
barebox-a4b7204f40888d87f4a2c48522bb0264a05fc960.tar.xz
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 <andrew.smirnov@gmail.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'common')
-rw-r--r--common/bbu.c2
1 files changed, 1 insertions, 1 deletions
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)