From 56aa947c2ad6cbdf4e7a4281e83689ac3fbc8498 Mon Sep 17 00:00:00 2001 From: Greg Malysa Date: Wed, 3 Sep 2025 19:42:01 -0400 Subject: [PATCH 1/2] 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 --- drivers/net/dwc_eth_qos_adi.c | 1 + 1 file changed, 1 insertion(+) 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 #include +#include #include #include #include From 2941e4c0476c69ef10e0900a8d9cac40a6dcc831 Mon Sep 17 00:00:00 2001 From: Greg Malysa Date: Wed, 3 Sep 2025 19:42:02 -0400 Subject: [PATCH 2/2] mmc: adi_sdhci: Update headers As part of the header dependency cleanup between 2025.07 and 2025.10, an implicit route to obtain SZ_128M from linux/sizes.h was removed. This adds an explicit reference to linux/sizes.h to fix build failures for this driver. Signed-off-by: Greg Malysa Reviewed-by: Peng Fan --- drivers/mmc/adi_sdhci.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/mmc/adi_sdhci.c b/drivers/mmc/adi_sdhci.c index 65a22cefb71..f58897b5218 100644 --- a/drivers/mmc/adi_sdhci.c +++ b/drivers/mmc/adi_sdhci.c @@ -15,6 +15,7 @@ #include #include #include +#include /* 400KHz is max freq for card ID etc. Use that as min */ #define EMMC_MIN_FREQ 400000