From 0f5a50f919749c65a247a783c593f6a3c74ff5d9 Mon Sep 17 00:00:00 2001 From: morrownr Date: Sun, 24 Sep 2023 14:58:10 -0500 Subject: [PATCH] fix (again) the -am_NOT_a_driver problem- --- os_dep/linux/os_intfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/os_dep/linux/os_intfs.c b/os_dep/linux/os_intfs.c index 26bb2f8..c1c22d2 100644 --- a/os_dep/linux/os_intfs.c +++ b/os_dep/linux/os_intfs.c @@ -27,7 +27,7 @@ MODULE_VERSION(DRIVERVERSION); * This declaration was created to resolve an error on Rockchip. * You can modify or add flags in the fs/Makefile. */ -#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 4, 0) +#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 10, 0) MODULE_IMPORT_NS(VFS_internal_I_am_really_a_filesystem_and_am_NOT_a_driver); #endif