git: 90a5fc326e64 - main - imx_gpio: Make ext_resources non-optional
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 21 Feb 2022 16:29:56 UTC
The branch main has been updated by manu: URL: https://cgit.FreeBSD.org/src/commit/?id=90a5fc326e6484f02f9889ea7a356342f36731f4 commit 90a5fc326e6484f02f9889ea7a356342f36731f4 Author: Emmanuel Vadot <manu@FreeBSD.org> AuthorDate: 2022-01-11 09:50:05 +0000 Commit: Emmanuel Vadot <manu@FreeBSD.org> 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