diff options
author | Simon Glass | 2019-12-28 10:44:40 -0700 |
---|---|---|
committer | Jagan Teki | 2020-01-24 23:06:47 +0530 |
commit | 9dfbc24459ccb0623c76f33b359e8fedb0e6d0a7 (patch) | |
tree | 591912b120ec5d4cb26a1755a6a2af107a0051ee /net | |
parent | 930c57ed9654f9fd53fe9bb0fc7d46d2e0317bbd (diff) |
common: Move flash_perror() to flash.h
This function belongs more in flash.h than common.h so move it.
Also remove the space before the bracket in some calls.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'net')
-rw-r--r-- | net/nfs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/nfs.c b/net/nfs.c index 97e62f1dceb..f4101eb17c3 100644 --- a/net/nfs.c +++ b/net/nfs.c @@ -28,6 +28,7 @@ #include <common.h> #include <command.h> +#include <flash.h> #include <net.h> #include <malloc.h> #include <mapmem.h> |