The branch main has been updated by manu:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=90a5fc326e6484f02f9889ea7a356342f36731f4

commit 90a5fc326e6484f02f9889ea7a356342f36731f4
Author:     Emmanuel Vadot <[email protected]>
AuthorDate: 2022-01-11 09:50:05 +0000
Commit:     Emmanuel Vadot <[email protected]>
CommitDate: 2022-02-21 16:29:00 +0000

    imx_gpio: Make ext_resources non-optional
    
    EXT_RESOURCES have been introduced in 12-CURRENT and all supported
    releases have it enabled in their kernel config.
    
    MFC after:      1 month
    Differential Revision:  https://reviews.freebsd.org/D33831
---
 sys/arm/freescale/imx/imx_gpio.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/arm/freescale/imx/imx_gpio.c b/sys/arm/freescale/imx/imx_gpio.c
index ef4c7917f342..7c86a78a15cc 100644
--- a/sys/arm/freescale/imx/imx_gpio.c
+++ b/sys/arm/freescale/imx/imx_gpio.c
@@ -56,7 +56,7 @@ __FBSDID("$FreeBSD$");
 #include <dev/ofw/ofw_bus.h>
 #include <dev/ofw/ofw_bus_subr.h>
 
-#if defined(EXT_RESOURCES) && defined(__aarch64__)
+#if defined(__aarch64__)
 #define        IMX_ENABLE_CLOCKS
 #endif
 

Reply via email to