]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
common/log_syslog.c: Add missing include of <env.h>
authorTom Rini <trini@konsulko.com>
Wed, 2 Jul 2025 01:05:54 +0000 (19:05 -0600)
committerTom Rini <trini@konsulko.com>
Thu, 10 Jul 2025 14:41:12 +0000 (08:41 -0600)
This file was making environment calls without including <env.h> and so
relying on an indirect inclusion from elsewhere. Add the missing include
directly.

Signed-off-by: Tom Rini <trini@konsulko.com>
common/log_syslog.c

index 0dcb5f7cdeae11acc68534c133423b0956fe3192..73bd3aca07e0bdb546289cd24ca690cac0032673 100644 (file)
@@ -5,6 +5,7 @@
  * Copyright (c) 2020, Heinrich Schuchardt <xypron.glpk@gmx.de>
  */
 
+#include <env.h>
 #include <log.h>
 #include <net.h>
 #include <asm/global_data.h>