git: 39ba7253da4a - stable/13 - imx_i2c: Make ext_resources non-optional
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 16 May 2022 12:09:48 UTC
The branch stable/13 has been updated by manu:
URL: https://cgit.FreeBSD.org/src/commit/?id=39ba7253da4ab4598caade8b33c784145188d0c2
commit 39ba7253da4ab4598caade8b33c784145188d0c2
Author: Emmanuel Vadot <manu@FreeBSD.org>
AuthorDate: 2022-01-11 09:49:32 +0000
Commit: Emmanuel Vadot <manu@FreeBSD.org>
CommitDate: 2022-05-16 11:45:37 +0000
imx_i2c: 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/D33830
(cherry picked from commit 774a4b6a51532b1a63530973d5bf8d798bc16669)
---
sys/arm/freescale/imx/imx_i2c.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/arm/freescale/imx/imx_i2c.c b/sys/arm/freescale/imx/imx_i2c.c
index 6f1d69a00a05..c3eb5f8b4e2f 100644
--- a/sys/arm/freescale/imx/imx_i2c.c
+++ b/sys/arm/freescale/imx/imx_i2c.c
@@ -73,7 +73,7 @@ __FBSDID("$FreeBSD$");
#include <dev/fdt/fdt_pinctrl.h>
#include <dev/gpio/gpiobusvar.h>
-#if defined(EXT_RESOURCES) && defined(__aarch64__)
+#if defined(__aarch64__)
#define IMX_ENABLE_CLOCKS
#endif