dm: core: Drop a few early returns
authorSimon Glass <sjg@chromium.org>
Wed, 25 Sep 2019 14:55:47 +0000 (08:55 -0600)
committerBin Meng <bmeng.cn@gmail.com>
Tue, 8 Oct 2019 05:57:37 +0000 (13:57 +0800)
commitc8b31cce45477dea51b3c65b2c0e12ea9cced9f0
tree45ebb133b861267c2c98062d1dc7970d8cb7185c
parentd3e773613b6d159204de4894a4e0d191717ce318
dm: core: Drop a few early returns

Two functions in this file return early for no good reason. Adjust the
code to match the standard DM style of returning 0 at the end of the
function on success.

Oddly enough this save 12 bytes of code size on ARM.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
drivers/core/uclass.c