diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/board_f.c | 5 | ||||
-rw-r--r-- | common/hash.c | 1 |
2 files changed, 3 insertions, 3 deletions
diff --git a/common/board_f.c b/common/board_f.c index 7d2c380e91..50edac5b7a 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -148,11 +148,12 @@ static int print_resetinfo(void) bool status_printed = false; int ret; - /* Not all boards have sysreset drivers available during early + /* + * Not all boards have sysreset drivers available during early * boot, so don't fail if one can't be found. */ for (ret = uclass_first_device_check(UCLASS_SYSRESET, &dev); dev; - ret = uclass_next_device_check(&dev)) { + ret = uclass_next_device_check(&dev)) { if (ret) { debug("%s: %s sysreset device (error: %d)\n", __func__, dev->name, ret); diff --git a/common/hash.c b/common/hash.c index cbffdfd6db..159179e7f2 100644 --- a/common/hash.c +++ b/common/hash.c @@ -21,7 +21,6 @@ #include <asm/global_data.h> #include <asm/io.h> #include <linux/errno.h> -#include <u-boot/crc.h> #else #include "mkimage.h" #include <linux/compiler_attributes.h> |