diff options
author | Rasmus Villemoes <rasmus.villemoes@prevas.dk> | 2020-09-21 09:48:24 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-09-22 11:05:32 -0400 |
commit | 24e8c0e3b3d2facee9d3c473aff41e0a20d7cf39 (patch) | |
tree | 0ef134ed5e8492b37407b6f074763f1e6001dedc | |
parent | 10a6aa963c1542724d9ca370386be6164914fc76 (diff) | |
download | u-boot-24e8c0e3b3d2facee9d3c473aff41e0a20d7cf39.zip u-boot-24e8c0e3b3d2facee9d3c473aff41e0a20d7cf39.tar.gz u-boot-24e8c0e3b3d2facee9d3c473aff41e0a20d7cf39.tar.bz2 |
gpio/mpc83xx_spisel_boot.c: include log.h
Fix build failure, it used to get this implicitly through common.h
until f7ae49fc4f (common: Drop log.h from common header).
Signed-off-by: Rasmus Villemoes <rasmus.villemoes@prevas.dk>
Reviewed-by: Heiko Schocher <hs@denx.de>
-rw-r--r-- | drivers/gpio/mpc83xx_spisel_boot.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpio/mpc83xx_spisel_boot.c b/drivers/gpio/mpc83xx_spisel_boot.c index c7b0840..54dc437 100644 --- a/drivers/gpio/mpc83xx_spisel_boot.c +++ b/drivers/gpio/mpc83xx_spisel_boot.c @@ -6,6 +6,7 @@ */ #include <common.h> +#include <log.h> #include <dm.h> #include <mapmem.h> #include <asm/gpio.h> |