git: 5e1a684c4c8b - stable/13 - uart_dev_imx: Make ext_resources non-optional
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 16 May 2022 12:09:43 UTC
The branch stable/13 has been updated by manu:
URL: https://cgit.FreeBSD.org/src/commit/?id=5e1a684c4c8baa47e66e16de16f14bb71578fd5b
commit 5e1a684c4c8baa47e66e16de16f14bb71578fd5b
Author: Emmanuel Vadot <manu@FreeBSD.org>
AuthorDate: 2022-01-11 09:43:40 +0000
Commit: Emmanuel Vadot <manu@FreeBSD.org>
CommitDate: 2022-05-16 11:45:36 +0000
uart_dev_imx: 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/D33826
(cherry picked from commit 4f64df4e32a7c14c5862b5f866bae2b090d25edb)
---
sys/dev/uart/uart_dev_imx.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/dev/uart/uart_dev_imx.c b/sys/dev/uart/uart_dev_imx.c
index 24b2e4c65f75..813b30a539c0 100644
--- a/sys/dev/uart/uart_dev_imx.c
+++ b/sys/dev/uart/uart_dev_imx.c
@@ -46,7 +46,7 @@ __FBSDID("$FreeBSD$");
#include <dev/uart/uart_bus.h>
#include <dev/uart/uart_dev_imx.h>
-#if defined(EXT_RESOURCES) && defined(__aarch64__)
+#if defined(__aarch64__)
#define IMX_ENABLE_CLOCKS
#endif