diff options
| author | Greg Malysa <[email protected]> | 2025-09-03 19:42:01 -0400 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-09-16 13:44:07 -0600 |
| commit | 56aa947c2ad6cbdf4e7a4281e83689ac3fbc8498 (patch) | |
| tree | 0e8fbdd635e2718464d4f193b72d8c2da3964444 /drivers | |
| parent | 76b8edbc732e327d1e56f08c641f51fdefdbff06 (diff) | |
net: dwc_eth_qos_adi: Add missing header
Following header dependency cleanups, an implicit dependence on env.h
was exposed in dwc_eth_qos_adi. However because this driver is not (yet)
enabled in any defconfigs, build tests did not identify the missing
header. This adds the missing #include so that the driver builds
correctly when enabled.
Signed-off-by: Greg Malysa <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/net/dwc_eth_qos_adi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/dwc_eth_qos_adi.c b/drivers/net/dwc_eth_qos_adi.c index 0e6a901e303..fee50a88156 100644 --- a/drivers/net/dwc_eth_qos_adi.c +++ b/drivers/net/dwc_eth_qos_adi.c @@ -10,6 +10,7 @@ #include <clk.h> #include <dm.h> +#include <env.h> #include <net.h> #include <phy.h> #include <reset.h> |
