All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 0/3] kbuild: allow symbol whitelisting with TRIM_UNUSED_KSYM
@ 2020-02-07 18:07 Quentin Perret
  2020-02-07 18:07 ` [PATCH v3 1/3] kbuild: allow symbol whitelisting with TRIM_UNUSED_KSYMS Quentin Perret
                   ` (2 more replies)
  0 siblings, 3 replies; 20+ messages in thread
From: Quentin Perret @ 2020-02-07 18:07 UTC (permalink / raw)
  To: masahiroy, nico
  Cc: linux-kernel, linux-kbuild, maennich, kernel-team, jeyu, hch, qperret

The current norm on Android and many other systems is for vendors to
introduce significant changes to their downstream kernels, and to
contribute very little (if any) code back upstream. The Generic Kernel
Image (GKI) project in Android attempts to improve the status-quo by
having a unique kernel for all android devices of the same architecture,
regardless of the SoC vendor. The key idea is to make all interested
parties agree on a common solution, and contribute their code upstream
to make it available to use by the wider community.

The kernel-to-drivers ABI on Android devices varies significantly from
one vendor kernel to another today because of changes to exported
symbols, dependencies on vendor symbols, and surely other things. The
first step for GKI is to try and put some order into this by agreeing on
one version of the ABI that works for everybody.

For practical reasons, we need to reduce the ABI surface to a subset of
the exported symbols, simply to make the problem realistically solvable,
but there is currently no upstream support for this use-case.

As such, this series attempts to improve the situation by enabling users
to specify a symbol 'whitelist' at compile time. Any symbol specified in
this whitelist will be kept exported when CONFIG_TRIM_UNUSED_KSYMS is
set, even if it has no in-tree user. The whitelist is defined as a
simple text file, listing symbols, one per line.

v2 -> v3:
 - added a cover letter to explain why this is in fact an attempt to
   help usptream in the long term (Christoph)
 - made path relative to the kernel source tree (Matthias)
 - made the Kconfig help text less confusing (Jessica)
 - added patch 02 and 03 to optimize build time when a whitelist is
   provided

v2:
 - make sure to quote the whitelist path properly (Nicolas)

Quentin Perret (3):
  kbuild: allow symbol whitelisting with TRIM_UNUSED_KSYMS
  kbuild: split adjust_autoksyms.sh in two parts
  kbuild: generate autoksyms.h early

 Makefile                    |  2 +-
 init/Kconfig                | 13 +++++++++++
 scripts/adjust_autoksyms.sh | 27 ++++------------------
 scripts/gen_autoksyms.sh    | 45 +++++++++++++++++++++++++++++++++++++
 4 files changed, 63 insertions(+), 24 deletions(-)
 create mode 100755 scripts/gen_autoksyms.sh

-- 
2.25.0.341.g760bfbb309-goog


^ permalink raw reply	[flat|nested] 20+ messages in thread

* [PATCH v3 1/3] kbuild: allow symbol whitelisting with TRIM_UNUSED_KSYMS
  2020-02-07 18:07 [PATCH v3 0/3] kbuild: allow symbol whitelisting with TRIM_UNUSED_KSYM Quentin Perret
@ 2020-02-07 18:07 ` Quentin Perret
  2020-02-07 18:22   ` Nicolas Pitre
  2020-02-08  5:05   ` Masahiro Yamada
  2020-02-07 18:07 ` [PATCH v3 2/3] kbuild: split adjust_autoksyms.sh in two parts Quentin Perret
  2020-02-07 18:07 ` [PATCH v3 3/3] kbuild: generate autoksyms.h early Quentin Perret
  2 siblings, 2 replies; 20+ messages in thread
From: Quentin Perret @ 2020-02-07 18:07 UTC (permalink / raw)
  To: masahiroy, nico
  Cc: linux-kernel, linux-kbuild, maennich, kernel-team, jeyu, hch, qperret

CONFIG_TRIM_UNUSED_KSYMS currently removes all unused exported symbols
from ksymtab. This works really well when using in-tree drivers, but
cannot be used in its current form if some of them are out-of-tree.

Indeed, even if the list of symbols required by out-of-tree drivers is
known at compile time, the only solution today to guarantee these don't
get trimmed is to set CONFIG_TRIM_UNUSED_KSYMS=n. This not only wastes
space, but also makes it difficult to control the ABI usable by vendor
modules in distribution kernels such as Android. Being able to control
the kernel ABI surface is particularly useful to ship a unique Generic
Kernel Image (GKI) for all vendors, which is a first step in the
direction of getting all vendors to contribute their code upstream.

As such, attempt to improve the situation by enabling users to specify a
symbol 'whitelist' at compile time. Any symbol specified in this
whitelist will be kept exported when CONFIG_TRIM_UNUSED_KSYMS is set,
even if it has no in-tree user. The whitelist is defined as a simple
text file, listing symbols, one per line.

Acked-by: Jessica Yu <jeyu@kernel.org>
Signed-off-by: Quentin Perret <qperret@google.com>
---
@Nicolas: I left your Reviewed-by behind as the code has changed a bit
but let me know what you think
---
 init/Kconfig                | 13 +++++++++++++
 scripts/adjust_autoksyms.sh |  5 +++++
 2 files changed, 18 insertions(+)

diff --git a/init/Kconfig b/init/Kconfig
index a34064a031a5..79fd976ce031 100644
--- a/init/Kconfig
+++ b/init/Kconfig
@@ -2180,6 +2180,19 @@ config TRIM_UNUSED_KSYMS
 
 	  If unsure, or if you need to build out-of-tree modules, say N.
 
+config UNUSED_KSYMS_WHITELIST
+	string "Whitelist of symbols to keep in ksymtab"
+	depends on TRIM_UNUSED_KSYMS
+	help
+	  By default, all unused exported symbols will be un-exported from the
+	  build when TRIM_UNUSED_KSYMS is selected.
+
+	  UNUSED_KSYMS_WHITELIST allows to whitelist symbols that must be kept
+	  exported at all times, even in absence of in-tree users. The value to
+	  set here is the path to a text file containing the list of symbols,
+	  one per line. The path can be absolute, or relative to the kernel
+	  source tree.
+
 endif # MODULES
 
 config MODULES_TREE_LOOKUP
diff --git a/scripts/adjust_autoksyms.sh b/scripts/adjust_autoksyms.sh
index a904bf1f5e67..58335eee4b38 100755
--- a/scripts/adjust_autoksyms.sh
+++ b/scripts/adjust_autoksyms.sh
@@ -38,6 +38,10 @@ esac
 # We need access to CONFIG_ symbols
 . include/config/auto.conf
 
+# The symbol whitelist, relative to the source tree
+eval ksym_wl="${CONFIG_UNUSED_KSYMS_WHITELIST:-/dev/null}"
+[[ "$ksym_wl" =~ ^/ ]] || ksym_wl="$abs_srctree/$ksym_wl"
+
 # Generate a new ksym list file with symbols needed by the current
 # set of modules.
 cat > "$new_ksyms_file" << EOT
@@ -48,6 +52,7 @@ cat > "$new_ksyms_file" << EOT
 EOT
 sed 's/ko$/mod/' modules.order |
 xargs -n1 sed -n -e '2{s/ /\n/g;/^$/!p;}' -- |
+cat - "$ksym_wl" |
 sort -u |
 sed -e 's/\(.*\)/#define __KSYM_\1 1/' >> "$new_ksyms_file"
 
-- 
2.25.0.341.g760bfbb309-goog


^ permalink raw reply related	[flat|nested] 20+ messages in thread

* [PATCH v3 2/3] kbuild: split adjust_autoksyms.sh in two parts
  2020-02-07 18:07 [PATCH v3 0/3] kbuild: allow symbol whitelisting with TRIM_UNUSED_KSYM Quentin Perret
  2020-02-07 18:07 ` [PATCH v3 1/3] kbuild: allow symbol whitelisting with TRIM_UNUSED_KSYMS Quentin Perret
@ 2020-02-07 18:07 ` Quentin Perret
  2020-02-08  5:08   ` Masahiro Yamada
  2020-02-07 18:07 ` [PATCH v3 3/3] kbuild: generate autoksyms.h early Quentin Perret
  2 siblings, 1 reply; 20+ messages in thread
From: Quentin Perret @ 2020-02-07 18:07 UTC (permalink / raw)
  To: masahiroy, nico
  Cc: linux-kernel, linux-kbuild, maennich, kernel-team, jeyu, hch, qperret

In order to prepare the ground for a build-time optimization, split
adjust_autoksyms.sh into two scripts: one that generates autoksyms.h
based on all currently available information (whitelist, and .mod
files), and the other to inspect the diff between two versions of
autoksyms.h and trigger appropriate rebuilds.

Signed-off-by: Quentin Perret <qperret@google.com>
---
 scripts/adjust_autoksyms.sh | 32 ++++-----------------------
 scripts/gen_autoksyms.sh    | 44 +++++++++++++++++++++++++++++++++++++
 2 files changed, 48 insertions(+), 28 deletions(-)
 create mode 100755 scripts/gen_autoksyms.sh

diff --git a/scripts/adjust_autoksyms.sh b/scripts/adjust_autoksyms.sh
index 58335eee4b38..ae1e65e9009c 100755
--- a/scripts/adjust_autoksyms.sh
+++ b/scripts/adjust_autoksyms.sh
@@ -1,14 +1,13 @@
 #!/bin/sh
 # SPDX-License-Identifier: GPL-2.0-only
 
-# Script to create/update include/generated/autoksyms.h and dependency files
+# Script to update include/generated/autoksyms.h and dependency files
 #
 # Copyright:	(C) 2016  Linaro Limited
 # Created by:	Nicolas Pitre, January 2016
 #
 
-# Create/update the include/generated/autoksyms.h file from the list
-# of all module's needed symbols as recorded on the second line of *.mod files.
+# Update the include/generated/autoksyms.h file.
 #
 # For each symbol being added or removed, the corresponding dependency
 # file's timestamp is updated to force a rebuild of the affected source
@@ -35,31 +34,8 @@ case "$KBUILD_VERBOSE" in
 	;;
 esac
 
-# We need access to CONFIG_ symbols
-. include/config/auto.conf
-
-# The symbol whitelist, relative to the source tree
-eval ksym_wl="${CONFIG_UNUSED_KSYMS_WHITELIST:-/dev/null}"
-[[ "$ksym_wl" =~ ^/ ]] || ksym_wl="$abs_srctree/$ksym_wl"
-
-# Generate a new ksym list file with symbols needed by the current
-# set of modules.
-cat > "$new_ksyms_file" << EOT
-/*
- * Automatically generated file; DO NOT EDIT.
- */
-
-EOT
-sed 's/ko$/mod/' modules.order |
-xargs -n1 sed -n -e '2{s/ /\n/g;/^$/!p;}' -- |
-cat - "$ksym_wl" |
-sort -u |
-sed -e 's/\(.*\)/#define __KSYM_\1 1/' >> "$new_ksyms_file"
-
-# Special case for modversions (see modpost.c)
-if [ -n "$CONFIG_MODVERSIONS" ]; then
-	echo "#define __KSYM_module_layout 1" >> "$new_ksyms_file"
-fi
+# Generate a new symbol list file
+$srctree/scripts/gen_autoksyms.sh "$new_ksyms_file"
 
 # Extract changes between old and new list and touch corresponding
 # dependency files.
diff --git a/scripts/gen_autoksyms.sh b/scripts/gen_autoksyms.sh
new file mode 100755
index 000000000000..ce0919c3791a
--- /dev/null
+++ b/scripts/gen_autoksyms.sh
@@ -0,0 +1,44 @@
+#!/bin/sh
+# SPDX-License-Identifier: GPL-2.0-only
+
+# Create an autoksyms.h header file from the list of all module's needed symbols
+# as recorded on the second line of *.mod files and the user-provided symbol
+# whitelist.
+
+set -e
+
+output_file="$1"
+
+# Use "make V=1" to debug this script.
+case "$KBUILD_VERBOSE" in
+*1*)
+	set -x
+	;;
+esac
+
+# We need access to CONFIG_ symbols
+. include/config/auto.conf
+
+# The symbol whitelist, relative to the source tree
+eval ksym_wl="${CONFIG_UNUSED_KSYMS_WHITELIST:-/dev/null}"
+[[ "$ksym_wl" =~ ^/ ]] || ksym_wl="$abs_srctree/$ksym_wl"
+
+# Generate a new ksym list file with symbols needed by the current
+# set of modules.
+cat > "$output_file" << EOT
+/*
+ * Automatically generated file; DO NOT EDIT.
+ */
+
+EOT
+
+sed 's/ko$/mod/' modules.order |
+xargs -n1 sed -n -e '2{s/ /\n/g;/^$/!p;}' -- |
+cat - "$ksym_wl" |
+sort -u |
+sed -e 's/\(.*\)/#define __KSYM_\1 1/' >> "$output_file"
+
+# Special case for modversions (see modpost.c)
+if [ -n "$CONFIG_MODVERSIONS" ]; then
+	echo "#define __KSYM_module_layout 1" >> "$output_file"
+fi
-- 
2.25.0.341.g760bfbb309-goog


^ permalink raw reply related	[flat|nested] 20+ messages in thread

* [PATCH v3 3/3] kbuild: generate autoksyms.h early
  2020-02-07 18:07 [PATCH v3 0/3] kbuild: allow symbol whitelisting with TRIM_UNUSED_KSYM Quentin Perret
  2020-02-07 18:07 ` [PATCH v3 1/3] kbuild: allow symbol whitelisting with TRIM_UNUSED_KSYMS Quentin Perret
  2020-02-07 18:07 ` [PATCH v3 2/3] kbuild: split adjust_autoksyms.sh in two parts Quentin Perret
@ 2020-02-07 18:07 ` Quentin Perret
  2020-02-08  5:09   ` Masahiro Yamada
  2020-02-11  2:14     ` kbuild test robot
  2 siblings, 2 replies; 20+ messages in thread
From: Quentin Perret @ 2020-02-07 18:07 UTC (permalink / raw)
  To: masahiroy, nico
  Cc: linux-kernel, linux-kbuild, maennich, kernel-team, jeyu, hch, qperret

When doing a cold build, autoksyms.h starts empty, and is updated late
in the build process to have visibility over the symbols used by in-tree
drivers. But since the symbol whitelist is known upfront, it can be used
to pre-populate autoksyms.h and maximize the amount of code that can be
compiled to its final state in a single pass, hence reducing build time.

Do this by using gen_autoksyms.sh to initialize autoksyms.h instead of
creating an empty file.

Signed-off-by: Quentin Perret <qperret@google.com>
---
 Makefile                 | 2 +-
 scripts/gen_autoksyms.sh | 3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile
index 6a01b073915e..e5c389d189f7 100644
--- a/Makefile
+++ b/Makefile
@@ -1065,7 +1065,7 @@ autoksyms_h := $(if $(CONFIG_TRIM_UNUSED_KSYMS), include/generated/autoksyms.h)
 
 $(autoksyms_h):
 	$(Q)mkdir -p $(dir $@)
-	$(Q)touch $@
+	$(Q)$(CONFIG_SHELL) $(srctree)/scripts/gen_autoksyms.sh $@
 
 ARCH_POSTLINK := $(wildcard $(srctree)/arch/$(SRCARCH)/Makefile.postlink)
 
diff --git a/scripts/gen_autoksyms.sh b/scripts/gen_autoksyms.sh
index ce0919c3791a..ae033ab03a4a 100755
--- a/scripts/gen_autoksyms.sh
+++ b/scripts/gen_autoksyms.sh
@@ -32,7 +32,8 @@ cat > "$output_file" << EOT
 
 EOT
 
-sed 's/ko$/mod/' modules.order |
+[[ -f modules.order ]] && modlist=modules.order || modlist=/dev/null
+sed 's/ko$/mod/' $modlist |
 xargs -n1 sed -n -e '2{s/ /\n/g;/^$/!p;}' -- |
 cat - "$ksym_wl" |
 sort -u |
-- 
2.25.0.341.g760bfbb309-goog


^ permalink raw reply related	[flat|nested] 20+ messages in thread

* Re: [PATCH v3 1/3] kbuild: allow symbol whitelisting with TRIM_UNUSED_KSYMS
  2020-02-07 18:07 ` [PATCH v3 1/3] kbuild: allow symbol whitelisting with TRIM_UNUSED_KSYMS Quentin Perret
@ 2020-02-07 18:22   ` Nicolas Pitre
  2020-02-11  5:41     ` Quentin Perret
  2020-02-08  5:05   ` Masahiro Yamada
  1 sibling, 1 reply; 20+ messages in thread
From: Nicolas Pitre @ 2020-02-07 18:22 UTC (permalink / raw)
  To: Quentin Perret
  Cc: masahiroy, linux-kernel, linux-kbuild, maennich, kernel-team, jeyu, hch

On Fri, 7 Feb 2020, Quentin Perret wrote:

> @Nicolas: I left your Reviewed-by behind as the code has changed a bit
> but let me know what you think
> ---
>  init/Kconfig                | 13 +++++++++++++
>  scripts/adjust_autoksyms.sh |  5 +++++
>  2 files changed, 18 insertions(+)
> 
> diff --git a/init/Kconfig b/init/Kconfig
> index a34064a031a5..79fd976ce031 100644
> --- a/init/Kconfig
> +++ b/init/Kconfig
> @@ -2180,6 +2180,19 @@ config TRIM_UNUSED_KSYMS
>  
>  	  If unsure, or if you need to build out-of-tree modules, say N.
>  
> +config UNUSED_KSYMS_WHITELIST
> +	string "Whitelist of symbols to keep in ksymtab"
> +	depends on TRIM_UNUSED_KSYMS
> +	help
> +	  By default, all unused exported symbols will be un-exported from the
> +	  build when TRIM_UNUSED_KSYMS is selected.
> +
> +	  UNUSED_KSYMS_WHITELIST allows to whitelist symbols that must be kept
> +	  exported at all times, even in absence of in-tree users. The value to
> +	  set here is the path to a text file containing the list of symbols,
> +	  one per line. The path can be absolute, or relative to the kernel
> +	  source tree.
> +
>  endif # MODULES
>  
>  config MODULES_TREE_LOOKUP
> diff --git a/scripts/adjust_autoksyms.sh b/scripts/adjust_autoksyms.sh
> index a904bf1f5e67..58335eee4b38 100755
> --- a/scripts/adjust_autoksyms.sh
> +++ b/scripts/adjust_autoksyms.sh
> @@ -38,6 +38,10 @@ esac
>  # We need access to CONFIG_ symbols
>  . include/config/auto.conf
>  
> +# The symbol whitelist, relative to the source tree
> +eval ksym_wl="${CONFIG_UNUSED_KSYMS_WHITELIST:-/dev/null}"
> +[[ "$ksym_wl" =~ ^/ ]] || ksym_wl="$abs_srctree/$ksym_wl"

This "[[ ]]" is a bashism. I think there was an effort not to depend on 
bash for the build system. So either this needs to be changed to basic 
bourne shell, or the interpretor has to be /bin/bash not /bin/sh.


Nicolas

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH v3 1/3] kbuild: allow symbol whitelisting with TRIM_UNUSED_KSYMS
  2020-02-07 18:07 ` [PATCH v3 1/3] kbuild: allow symbol whitelisting with TRIM_UNUSED_KSYMS Quentin Perret
  2020-02-07 18:22   ` Nicolas Pitre
@ 2020-02-08  5:05   ` Masahiro Yamada
  2020-02-11  5:44     ` Quentin Perret
  1 sibling, 1 reply; 20+ messages in thread
From: Masahiro Yamada @ 2020-02-08  5:05 UTC (permalink / raw)
  To: Quentin Perret
  Cc: Nicolas Pitre, Linux Kernel Mailing List,
	Linux Kbuild mailing list, Matthias Maennich, Cc: Android Kernel,
	Jessica Yu, Christoph Hellwig

Hi.



On Fri, Feb 7, 2020 at 7:08 PM Quentin Perret <qperret@google.com> wrote:
>
> CONFIG_TRIM_UNUSED_KSYMS currently removes all unused exported symbols
> from ksymtab. This works really well when using in-tree drivers, but
> cannot be used in its current form if some of them are out-of-tree.
>
> Indeed, even if the list of symbols required by out-of-tree drivers is
> known at compile time, the only solution today to guarantee these don't
> get trimmed is to set CONFIG_TRIM_UNUSED_KSYMS=n. This not only wastes
> space, but also makes it difficult to control the ABI usable by vendor
> modules in distribution kernels such as Android. Being able to control
> the kernel ABI surface is particularly useful to ship a unique Generic
> Kernel Image (GKI) for all vendors, which is a first step in the
> direction of getting all vendors to contribute their code upstream.
>
> As such, attempt to improve the situation by enabling users to specify a
> symbol 'whitelist' at compile time. Any symbol specified in this
> whitelist will be kept exported when CONFIG_TRIM_UNUSED_KSYMS is set,
> even if it has no in-tree user. The whitelist is defined as a simple
> text file, listing symbols, one per line.
>
> Acked-by: Jessica Yu <jeyu@kernel.org>
> Signed-off-by: Quentin Perret <qperret@google.com>
> ---
> @Nicolas: I left your Reviewed-by behind as the code has changed a bit
> but let me know what you think
> ---
>  init/Kconfig                | 13 +++++++++++++
>  scripts/adjust_autoksyms.sh |  5 +++++
>  2 files changed, 18 insertions(+)
>
> diff --git a/init/Kconfig b/init/Kconfig
> index a34064a031a5..79fd976ce031 100644
> --- a/init/Kconfig
> +++ b/init/Kconfig
> @@ -2180,6 +2180,19 @@ config TRIM_UNUSED_KSYMS
>
>           If unsure, or if you need to build out-of-tree modules, say N.
>
> +config UNUSED_KSYMS_WHITELIST
> +       string "Whitelist of symbols to keep in ksymtab"
> +       depends on TRIM_UNUSED_KSYMS
> +       help
> +         By default, all unused exported symbols will be un-exported from the
> +         build when TRIM_UNUSED_KSYMS is selected.
> +
> +         UNUSED_KSYMS_WHITELIST allows to whitelist symbols that must be kept
> +         exported at all times, even in absence of in-tree users. The value to
> +         set here is the path to a text file containing the list of symbols,
> +         one per line. The path can be absolute, or relative to the kernel
> +         source tree.
> +
>  endif # MODULES
>
>  config MODULES_TREE_LOOKUP
> diff --git a/scripts/adjust_autoksyms.sh b/scripts/adjust_autoksyms.sh
> index a904bf1f5e67..58335eee4b38 100755
> --- a/scripts/adjust_autoksyms.sh
> +++ b/scripts/adjust_autoksyms.sh
> @@ -38,6 +38,10 @@ esac
>  # We need access to CONFIG_ symbols
>  . include/config/auto.conf
>
> +# The symbol whitelist, relative to the source tree
> +eval ksym_wl="${CONFIG_UNUSED_KSYMS_WHITELIST:-/dev/null}"

What is this 'eval' needed for?

This worked for me without it.





> +[[ "$ksym_wl" =~ ^/ ]] || ksym_wl="$abs_srctree/$ksym_wl"
> +
>  # Generate a new ksym list file with symbols needed by the current
>  # set of modules.
>  cat > "$new_ksyms_file" << EOT
> @@ -48,6 +52,7 @@ cat > "$new_ksyms_file" << EOT
>  EOT
>  sed 's/ko$/mod/' modules.order |
>  xargs -n1 sed -n -e '2{s/ /\n/g;/^$/!p;}' -- |
> +cat - "$ksym_wl" |
>  sort -u |
>  sed -e 's/\(.*\)/#define __KSYM_\1 1/' >> "$new_ksyms_file"
>
> --
> 2.25.0.341.g760bfbb309-goog
>


--
Best Regards
Masahiro Yamada

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH v3 2/3] kbuild: split adjust_autoksyms.sh in two parts
  2020-02-07 18:07 ` [PATCH v3 2/3] kbuild: split adjust_autoksyms.sh in two parts Quentin Perret
@ 2020-02-08  5:08   ` Masahiro Yamada
  2020-02-11  5:45     ` Quentin Perret
  0 siblings, 1 reply; 20+ messages in thread
From: Masahiro Yamada @ 2020-02-08  5:08 UTC (permalink / raw)
  To: Quentin Perret
  Cc: Nicolas Pitre, Linux Kernel Mailing List,
	Linux Kbuild mailing list, Matthias Maennich, Cc: Android Kernel,
	Jessica Yu, Christoph Hellwig

On Fri, Feb 7, 2020 at 7:08 PM Quentin Perret <qperret@google.com> wrote:
>
> In order to prepare the ground for a build-time optimization, split
> adjust_autoksyms.sh into two scripts: one that generates autoksyms.h
> based on all currently available information (whitelist, and .mod
> files), and the other to inspect the diff between two versions of
> autoksyms.h and trigger appropriate rebuilds.
>
> Signed-off-by: Quentin Perret <qperret@google.com>
> ---
>  scripts/adjust_autoksyms.sh | 32 ++++-----------------------
>  scripts/gen_autoksyms.sh    | 44 +++++++++++++++++++++++++++++++++++++
>  2 files changed, 48 insertions(+), 28 deletions(-)
>  create mode 100755 scripts/gen_autoksyms.sh
>
> diff --git a/scripts/adjust_autoksyms.sh b/scripts/adjust_autoksyms.sh
> index 58335eee4b38..ae1e65e9009c 100755
> --- a/scripts/adjust_autoksyms.sh
> +++ b/scripts/adjust_autoksyms.sh
> @@ -1,14 +1,13 @@
>  #!/bin/sh
>  # SPDX-License-Identifier: GPL-2.0-only
>
> -# Script to create/update include/generated/autoksyms.h and dependency files
> +# Script to update include/generated/autoksyms.h and dependency files
>  #
>  # Copyright:   (C) 2016  Linaro Limited
>  # Created by:  Nicolas Pitre, January 2016
>  #
>
> -# Create/update the include/generated/autoksyms.h file from the list
> -# of all module's needed symbols as recorded on the second line of *.mod files.
> +# Update the include/generated/autoksyms.h file.
>  #
>  # For each symbol being added or removed, the corresponding dependency
>  # file's timestamp is updated to force a rebuild of the affected source
> @@ -35,31 +34,8 @@ case "$KBUILD_VERBOSE" in
>         ;;
>  esac
>
> -# We need access to CONFIG_ symbols
> -. include/config/auto.conf
> -
> -# The symbol whitelist, relative to the source tree
> -eval ksym_wl="${CONFIG_UNUSED_KSYMS_WHITELIST:-/dev/null}"
> -[[ "$ksym_wl" =~ ^/ ]] || ksym_wl="$abs_srctree/$ksym_wl"
> -
> -# Generate a new ksym list file with symbols needed by the current
> -# set of modules.
> -cat > "$new_ksyms_file" << EOT
> -/*
> - * Automatically generated file; DO NOT EDIT.
> - */
> -
> -EOT
> -sed 's/ko$/mod/' modules.order |
> -xargs -n1 sed -n -e '2{s/ /\n/g;/^$/!p;}' -- |
> -cat - "$ksym_wl" |
> -sort -u |
> -sed -e 's/\(.*\)/#define __KSYM_\1 1/' >> "$new_ksyms_file"
> -
> -# Special case for modversions (see modpost.c)
> -if [ -n "$CONFIG_MODVERSIONS" ]; then
> -       echo "#define __KSYM_module_layout 1" >> "$new_ksyms_file"
> -fi
> +# Generate a new symbol list file
> +$srctree/scripts/gen_autoksyms.sh "$new_ksyms_file"

In 3/3, you will call this script with $(CONFIG_SHELL) from Makefile.

For consistency,

$CONFIG_SHELL $srctree/scripts/gen_autoksyms.sh "$new_ksyms_file"

is better.


Thanks.




>
>  # Extract changes between old and new list and touch corresponding
>  # dependency files.
> diff --git a/scripts/gen_autoksyms.sh b/scripts/gen_autoksyms.sh
> new file mode 100755
> index 000000000000..ce0919c3791a
> --- /dev/null
> +++ b/scripts/gen_autoksyms.sh
> @@ -0,0 +1,44 @@
> +#!/bin/sh
> +# SPDX-License-Identifier: GPL-2.0-only
> +
> +# Create an autoksyms.h header file from the list of all module's needed symbols
> +# as recorded on the second line of *.mod files and the user-provided symbol
> +# whitelist.
> +
> +set -e
> +
> +output_file="$1"
> +
> +# Use "make V=1" to debug this script.
> +case "$KBUILD_VERBOSE" in
> +*1*)
> +       set -x
> +       ;;
> +esac
> +
> +# We need access to CONFIG_ symbols
> +. include/config/auto.conf
> +
> +# The symbol whitelist, relative to the source tree
> +eval ksym_wl="${CONFIG_UNUSED_KSYMS_WHITELIST:-/dev/null}"
> +[[ "$ksym_wl" =~ ^/ ]] || ksym_wl="$abs_srctree/$ksym_wl"
> +
> +# Generate a new ksym list file with symbols needed by the current
> +# set of modules.
> +cat > "$output_file" << EOT
> +/*
> + * Automatically generated file; DO NOT EDIT.
> + */
> +
> +EOT
> +
> +sed 's/ko$/mod/' modules.order |
> +xargs -n1 sed -n -e '2{s/ /\n/g;/^$/!p;}' -- |
> +cat - "$ksym_wl" |
> +sort -u |
> +sed -e 's/\(.*\)/#define __KSYM_\1 1/' >> "$output_file"
> +
> +# Special case for modversions (see modpost.c)
> +if [ -n "$CONFIG_MODVERSIONS" ]; then
> +       echo "#define __KSYM_module_layout 1" >> "$output_file"
> +fi
> --
> 2.25.0.341.g760bfbb309-goog
>


--
Best Regards
Masahiro Yamada

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH v3 3/3] kbuild: generate autoksyms.h early
  2020-02-07 18:07 ` [PATCH v3 3/3] kbuild: generate autoksyms.h early Quentin Perret
@ 2020-02-08  5:09   ` Masahiro Yamada
  2020-02-11  5:46     ` Quentin Perret
  2020-02-11  2:14     ` kbuild test robot
  1 sibling, 1 reply; 20+ messages in thread
From: Masahiro Yamada @ 2020-02-08  5:09 UTC (permalink / raw)
  To: Quentin Perret
  Cc: Nicolas Pitre, Linux Kernel Mailing List,
	Linux Kbuild mailing list, Matthias Maennich, Cc: Android Kernel,
	Jessica Yu, Christoph Hellwig

On Fri, Feb 7, 2020 at 7:08 PM Quentin Perret <qperret@google.com> wrote:
>
> When doing a cold build, autoksyms.h starts empty, and is updated late
> in the build process to have visibility over the symbols used by in-tree
> drivers. But since the symbol whitelist is known upfront, it can be used
> to pre-populate autoksyms.h and maximize the amount of code that can be
> compiled to its final state in a single pass, hence reducing build time.
>
> Do this by using gen_autoksyms.sh to initialize autoksyms.h instead of
> creating an empty file.
>
> Signed-off-by: Quentin Perret <qperret@google.com>
> ---
>  Makefile                 | 2 +-
>  scripts/gen_autoksyms.sh | 3 ++-
>  2 files changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/Makefile b/Makefile
> index 6a01b073915e..e5c389d189f7 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -1065,7 +1065,7 @@ autoksyms_h := $(if $(CONFIG_TRIM_UNUSED_KSYMS), include/generated/autoksyms.h)
>
>  $(autoksyms_h):
>         $(Q)mkdir -p $(dir $@)
> -       $(Q)touch $@
> +       $(Q)$(CONFIG_SHELL) $(srctree)/scripts/gen_autoksyms.sh $@


Now that this line is doing a non-trivial task,
it might be a good idea to show a short log, like this:

  GEN     include/generated/autoksyms.h



You can do it like this:


quiet_cmd_autoksyms_h = GEN     $@
      cmd_autoksyms_h = mkdir -p $(dir $@); $(BASH)
$(srctree)/scripts/gen_autoksyms.sh $@

$(autoksyms_h):
        $(call cmd,autoksyms_h)





>
>  ARCH_POSTLINK := $(wildcard $(srctree)/arch/$(SRCARCH)/Makefile.postlink)
>
> diff --git a/scripts/gen_autoksyms.sh b/scripts/gen_autoksyms.sh
> index ce0919c3791a..ae033ab03a4a 100755
> --- a/scripts/gen_autoksyms.sh
> +++ b/scripts/gen_autoksyms.sh
> @@ -32,7 +32,8 @@ cat > "$output_file" << EOT
>
>  EOT
>
> -sed 's/ko$/mod/' modules.order |
> +[[ -f modules.order ]] && modlist=modules.order || modlist=/dev/null
> +sed 's/ko$/mod/' $modlist |
>  xargs -n1 sed -n -e '2{s/ /\n/g;/^$/!p;}' -- |
>  cat - "$ksym_wl" |
>  sort -u |
> --
> 2.25.0.341.g760bfbb309-goog
>


--
Best Regards

Masahiro Yamada

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH v3 3/3] kbuild: generate autoksyms.h early
  2020-02-07 18:07 ` [PATCH v3 3/3] kbuild: generate autoksyms.h early Quentin Perret
  2020-02-08  5:09   ` Masahiro Yamada
@ 2020-02-11  2:14     ` kbuild test robot
  1 sibling, 0 replies; 20+ messages in thread
From: kbuild test robot @ 2020-02-11  2:14 UTC (permalink / raw)
  To: Quentin Perret
  Cc: kbuild-all, masahiroy, nico, linux-kernel, linux-kbuild,
	maennich, kernel-team, jeyu, hch, qperret

[-- Attachment #1: Type: text/plain, Size: 2216 bytes --]

Hi Quentin,

Thank you for the patch! Yet something to improve:

[auto build test ERROR on kbuild/for-next]
[also build test ERROR on linux/master linus/master v5.6-rc1 next-20200210]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]

url:    https://github.com/0day-ci/linux/commits/Quentin-Perret/kbuild-allow-symbol-whitelisting-with-TRIM_UNUSED_KSYM/20200211-020659
base:   https://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git for-next
config: i386-randconfig-c002-20200211 (attached as .config)
compiler: gcc-7 (Debian 7.5.0-4) 7.5.0
reproduce:
        # save the attached .config to linux build tree
        make ARCH=i386 

If you fix the issue, kindly add following tag
Reported-by: kbuild test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

>> ERROR: "trace_event_raw_init" [lib/objagg.ko] undefined!
>> ERROR: "trace_event_reg" [lib/objagg.ko] undefined!
>> ERROR: "ida_destroy" [lib/objagg.ko] undefined!
>> ERROR: "rhashtable_destroy" [lib/objagg.ko] undefined!
>> ERROR: "kmalloc_order_trace" [lib/objagg.ko] undefined!
>> ERROR: "sort" [lib/objagg.ko] undefined!
>> ERROR: "__raw_spin_lock_init" [lib/objagg.ko] undefined!
>> ERROR: "rhashtable_init" [lib/objagg.ko] undefined!
>> ERROR: "rht_bucket_nested" [lib/objagg.ko] undefined!
>> ERROR: "__list_del_entry_valid" [lib/objagg.ko] undefined!
>> ERROR: "__rht_bucket_nested" [lib/objagg.ko] undefined!
>> ERROR: "kmem_cache_alloc_trace" [lib/objagg.ko] undefined!
>> ERROR: "kmalloc_caches" [lib/objagg.ko] undefined!
>> ERROR: "queue_work_on" [lib/objagg.ko] undefined!
>> ERROR: "system_wq" [lib/objagg.ko] undefined!
>> ERROR: "kfree" [lib/objagg.ko] undefined!
>> ERROR: "__list_add_valid" [lib/objagg.ko] undefined!
>> ERROR: "lockdep_rht_bucket_is_held" [lib/objagg.ko] undefined!
>> ERROR: "rhashtable_insert_slow" [lib/objagg.ko] undefined!
>> ERROR: "__local_bh_enable_ip" [lib/objagg.ko] undefined!

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 39984 bytes --]

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH v3 3/3] kbuild: generate autoksyms.h early
@ 2020-02-11  2:14     ` kbuild test robot
  0 siblings, 0 replies; 20+ messages in thread
From: kbuild test robot @ 2020-02-11  2:14 UTC (permalink / raw)
  To: Quentin Perret
  Cc: kbuild-all, masahiroy, nico, linux-kernel, linux-kbuild,
	maennich, kernel-team, jeyu, hch

[-- Attachment #1: Type: text/plain, Size: 2216 bytes --]

Hi Quentin,

Thank you for the patch! Yet something to improve:

[auto build test ERROR on kbuild/for-next]
[also build test ERROR on linux/master linus/master v5.6-rc1 next-20200210]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]

url:    https://github.com/0day-ci/linux/commits/Quentin-Perret/kbuild-allow-symbol-whitelisting-with-TRIM_UNUSED_KSYM/20200211-020659
base:   https://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git for-next
config: i386-randconfig-c002-20200211 (attached as .config)
compiler: gcc-7 (Debian 7.5.0-4) 7.5.0
reproduce:
        # save the attached .config to linux build tree
        make ARCH=i386 

If you fix the issue, kindly add following tag
Reported-by: kbuild test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

>> ERROR: "trace_event_raw_init" [lib/objagg.ko] undefined!
>> ERROR: "trace_event_reg" [lib/objagg.ko] undefined!
>> ERROR: "ida_destroy" [lib/objagg.ko] undefined!
>> ERROR: "rhashtable_destroy" [lib/objagg.ko] undefined!
>> ERROR: "kmalloc_order_trace" [lib/objagg.ko] undefined!
>> ERROR: "sort" [lib/objagg.ko] undefined!
>> ERROR: "__raw_spin_lock_init" [lib/objagg.ko] undefined!
>> ERROR: "rhashtable_init" [lib/objagg.ko] undefined!
>> ERROR: "rht_bucket_nested" [lib/objagg.ko] undefined!
>> ERROR: "__list_del_entry_valid" [lib/objagg.ko] undefined!
>> ERROR: "__rht_bucket_nested" [lib/objagg.ko] undefined!
>> ERROR: "kmem_cache_alloc_trace" [lib/objagg.ko] undefined!
>> ERROR: "kmalloc_caches" [lib/objagg.ko] undefined!
>> ERROR: "queue_work_on" [lib/objagg.ko] undefined!
>> ERROR: "system_wq" [lib/objagg.ko] undefined!
>> ERROR: "kfree" [lib/objagg.ko] undefined!
>> ERROR: "__list_add_valid" [lib/objagg.ko] undefined!
>> ERROR: "lockdep_rht_bucket_is_held" [lib/objagg.ko] undefined!
>> ERROR: "rhashtable_insert_slow" [lib/objagg.ko] undefined!
>> ERROR: "__local_bh_enable_ip" [lib/objagg.ko] undefined!

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 39984 bytes --]

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH v3 3/3] kbuild: generate autoksyms.h early
@ 2020-02-11  2:14     ` kbuild test robot
  0 siblings, 0 replies; 20+ messages in thread
From: kbuild test robot @ 2020-02-11  2:14 UTC (permalink / raw)
  To: kbuild-all

[-- Attachment #1: Type: text/plain, Size: 2265 bytes --]

Hi Quentin,

Thank you for the patch! Yet something to improve:

[auto build test ERROR on kbuild/for-next]
[also build test ERROR on linux/master linus/master v5.6-rc1 next-20200210]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]

url:    https://github.com/0day-ci/linux/commits/Quentin-Perret/kbuild-allow-symbol-whitelisting-with-TRIM_UNUSED_KSYM/20200211-020659
base:   https://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git for-next
config: i386-randconfig-c002-20200211 (attached as .config)
compiler: gcc-7 (Debian 7.5.0-4) 7.5.0
reproduce:
        # save the attached .config to linux build tree
        make ARCH=i386 

If you fix the issue, kindly add following tag
Reported-by: kbuild test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

>> ERROR: "trace_event_raw_init" [lib/objagg.ko] undefined!
>> ERROR: "trace_event_reg" [lib/objagg.ko] undefined!
>> ERROR: "ida_destroy" [lib/objagg.ko] undefined!
>> ERROR: "rhashtable_destroy" [lib/objagg.ko] undefined!
>> ERROR: "kmalloc_order_trace" [lib/objagg.ko] undefined!
>> ERROR: "sort" [lib/objagg.ko] undefined!
>> ERROR: "__raw_spin_lock_init" [lib/objagg.ko] undefined!
>> ERROR: "rhashtable_init" [lib/objagg.ko] undefined!
>> ERROR: "rht_bucket_nested" [lib/objagg.ko] undefined!
>> ERROR: "__list_del_entry_valid" [lib/objagg.ko] undefined!
>> ERROR: "__rht_bucket_nested" [lib/objagg.ko] undefined!
>> ERROR: "kmem_cache_alloc_trace" [lib/objagg.ko] undefined!
>> ERROR: "kmalloc_caches" [lib/objagg.ko] undefined!
>> ERROR: "queue_work_on" [lib/objagg.ko] undefined!
>> ERROR: "system_wq" [lib/objagg.ko] undefined!
>> ERROR: "kfree" [lib/objagg.ko] undefined!
>> ERROR: "__list_add_valid" [lib/objagg.ko] undefined!
>> ERROR: "lockdep_rht_bucket_is_held" [lib/objagg.ko] undefined!
>> ERROR: "rhashtable_insert_slow" [lib/objagg.ko] undefined!
>> ERROR: "__local_bh_enable_ip" [lib/objagg.ko] undefined!

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org

[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 39984 bytes --]

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH v3 1/3] kbuild: allow symbol whitelisting with TRIM_UNUSED_KSYMS
  2020-02-07 18:22   ` Nicolas Pitre
@ 2020-02-11  5:41     ` Quentin Perret
  0 siblings, 0 replies; 20+ messages in thread
From: Quentin Perret @ 2020-02-11  5:41 UTC (permalink / raw)
  To: Nicolas Pitre
  Cc: masahiroy, linux-kernel, linux-kbuild, maennich, kernel-team, jeyu, hch

On Friday 07 Feb 2020 at 13:22:12 (-0500), Nicolas Pitre wrote:
> This "[[ ]]" is a bashism. I think there was an effort not to depend on 
> bash for the build system.

OK, I see.

> So either this needs to be changed to basic 
> bourne shell, or the interpretor has to be /bin/bash not /bin/sh.

So, as per the above, the basic bourne shell option sounds preferable,
I'll go fix this for v4.

Thanks,
Quentin

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH v3 1/3] kbuild: allow symbol whitelisting with TRIM_UNUSED_KSYMS
  2020-02-08  5:05   ` Masahiro Yamada
@ 2020-02-11  5:44     ` Quentin Perret
  0 siblings, 0 replies; 20+ messages in thread
From: Quentin Perret @ 2020-02-11  5:44 UTC (permalink / raw)
  To: Masahiro Yamada
  Cc: Nicolas Pitre, Linux Kernel Mailing List,
	Linux Kbuild mailing list, Matthias Maennich, Cc: Android Kernel,
	Jessica Yu, Christoph Hellwig

On Saturday 08 Feb 2020 at 06:05:02 (+0100), Masahiro Yamada wrote:
> On Fri, Feb 7, 2020 at 7:08 PM Quentin Perret <qperret@google.com> wrote:
> > diff --git a/scripts/adjust_autoksyms.sh b/scripts/adjust_autoksyms.sh
> > index a904bf1f5e67..58335eee4b38 100755
> > --- a/scripts/adjust_autoksyms.sh
> > +++ b/scripts/adjust_autoksyms.sh
> > @@ -38,6 +38,10 @@ esac
> >  # We need access to CONFIG_ symbols
> >  . include/config/auto.conf
> >
> > +# The symbol whitelist, relative to the source tree
> > +eval ksym_wl="${CONFIG_UNUSED_KSYMS_WHITELIST:-/dev/null}"
> 
> What is this 'eval' needed for?
> 
> This worked for me without it.

Right, it is there to expand the path in cases where the user sets the
option to "~/my_whitelist" for instance. That could most certainly use a
comment, though.

Thanks,
Quentin

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH v3 2/3] kbuild: split adjust_autoksyms.sh in two parts
  2020-02-08  5:08   ` Masahiro Yamada
@ 2020-02-11  5:45     ` Quentin Perret
  0 siblings, 0 replies; 20+ messages in thread
From: Quentin Perret @ 2020-02-11  5:45 UTC (permalink / raw)
  To: Masahiro Yamada
  Cc: Nicolas Pitre, Linux Kernel Mailing List,
	Linux Kbuild mailing list, Matthias Maennich, Cc: Android Kernel,
	Jessica Yu, Christoph Hellwig

On Saturday 08 Feb 2020 at 06:08:08 (+0100), Masahiro Yamada wrote:
> In 3/3, you will call this script with $(CONFIG_SHELL) from Makefile.
> 
> For consistency,
> 
> $CONFIG_SHELL $srctree/scripts/gen_autoksyms.sh "$new_ksyms_file"
> 
> is better.

Agreed, I'll fix this in v4.

Thanks,
Quentin

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH v3 3/3] kbuild: generate autoksyms.h early
  2020-02-08  5:09   ` Masahiro Yamada
@ 2020-02-11  5:46     ` Quentin Perret
  0 siblings, 0 replies; 20+ messages in thread
From: Quentin Perret @ 2020-02-11  5:46 UTC (permalink / raw)
  To: Masahiro Yamada
  Cc: Nicolas Pitre, Linux Kernel Mailing List,
	Linux Kbuild mailing list, Matthias Maennich, Cc: Android Kernel,
	Jessica Yu, Christoph Hellwig

On Saturday 08 Feb 2020 at 06:09:06 (+0100), Masahiro Yamada wrote:
> Now that this line is doing a non-trivial task,
> it might be a good idea to show a short log, like this:
> 
>   GEN     include/generated/autoksyms.h

Sounds good.

> You can do it like this:
> 
> 
> quiet_cmd_autoksyms_h = GEN     $@
>       cmd_autoksyms_h = mkdir -p $(dir $@); $(BASH)
> $(srctree)/scripts/gen_autoksyms.sh $@
> 
> $(autoksyms_h):
>         $(call cmd,autoksyms_h)

Nice, thanks for sharing!
Quentin

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH v3 3/3] kbuild: generate autoksyms.h early
  2020-02-11  2:14     ` kbuild test robot
@ 2020-02-12 19:56       ` Quentin Perret
  -1 siblings, 0 replies; 20+ messages in thread
From: Quentin Perret @ 2020-02-12 19:56 UTC (permalink / raw)
  To: kbuild test robot
  Cc: kbuild-all, masahiroy, nico, linux-kernel, linux-kbuild,
	maennich, kernel-team, jeyu, hch

On Tuesday 11 Feb 2020 at 10:14:14 (+0800), kbuild test robot wrote:
> Hi Quentin,
> 
> Thank you for the patch! Yet something to improve:
> 
> [auto build test ERROR on kbuild/for-next]
> [also build test ERROR on linux/master linus/master v5.6-rc1 next-20200210]
> [if your patch is applied to the wrong git tree, please drop us a note to help
> improve the system. BTW, we also suggest to use '--base' option to specify the
> base tree in git format-patch, please see https://stackoverflow.com/a/37406982]
> 
> url:    https://github.com/0day-ci/linux/commits/Quentin-Perret/kbuild-allow-symbol-whitelisting-with-TRIM_UNUSED_KSYM/20200211-020659
> base:   https://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git for-next
> config: i386-randconfig-c002-20200211 (attached as .config)
> compiler: gcc-7 (Debian 7.5.0-4) 7.5.0
> reproduce:
>         # save the attached .config to linux build tree
>         make ARCH=i386 
> 
> If you fix the issue, kindly add following tag
> Reported-by: kbuild test robot <lkp@intel.com>
> 
> All errors (new ones prefixed by >>):
> 
> >> ERROR: "trace_event_raw_init" [lib/objagg.ko] undefined!
> >> ERROR: "trace_event_reg" [lib/objagg.ko] undefined!
> >> ERROR: "ida_destroy" [lib/objagg.ko] undefined!
> >> ERROR: "rhashtable_destroy" [lib/objagg.ko] undefined!
> >> ERROR: "kmalloc_order_trace" [lib/objagg.ko] undefined!
> >> ERROR: "sort" [lib/objagg.ko] undefined!
> >> ERROR: "__raw_spin_lock_init" [lib/objagg.ko] undefined!
> >> ERROR: "rhashtable_init" [lib/objagg.ko] undefined!
> >> ERROR: "rht_bucket_nested" [lib/objagg.ko] undefined!
> >> ERROR: "__list_del_entry_valid" [lib/objagg.ko] undefined!
> >> ERROR: "__rht_bucket_nested" [lib/objagg.ko] undefined!
> >> ERROR: "kmem_cache_alloc_trace" [lib/objagg.ko] undefined!
> >> ERROR: "kmalloc_caches" [lib/objagg.ko] undefined!
> >> ERROR: "queue_work_on" [lib/objagg.ko] undefined!
> >> ERROR: "system_wq" [lib/objagg.ko] undefined!
> >> ERROR: "kfree" [lib/objagg.ko] undefined!
> >> ERROR: "__list_add_valid" [lib/objagg.ko] undefined!
> >> ERROR: "lockdep_rht_bucket_is_held" [lib/objagg.ko] undefined!
> >> ERROR: "rhashtable_insert_slow" [lib/objagg.ko] undefined!
> >> ERROR: "__local_bh_enable_ip" [lib/objagg.ko] undefined!

I find myself unable to reproduce this error on my box. Could you please
provide the full build log ?

In the meantime I'll proceed to send a v4.

Thanks,
Quentin

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH v3 3/3] kbuild: generate autoksyms.h early
@ 2020-02-12 19:56       ` Quentin Perret
  0 siblings, 0 replies; 20+ messages in thread
From: Quentin Perret @ 2020-02-12 19:56 UTC (permalink / raw)
  To: kbuild-all

[-- Attachment #1: Type: text/plain, Size: 2471 bytes --]

On Tuesday 11 Feb 2020 at 10:14:14 (+0800), kbuild test robot wrote:
> Hi Quentin,
> 
> Thank you for the patch! Yet something to improve:
> 
> [auto build test ERROR on kbuild/for-next]
> [also build test ERROR on linux/master linus/master v5.6-rc1 next-20200210]
> [if your patch is applied to the wrong git tree, please drop us a note to help
> improve the system. BTW, we also suggest to use '--base' option to specify the
> base tree in git format-patch, please see https://stackoverflow.com/a/37406982]
> 
> url:    https://github.com/0day-ci/linux/commits/Quentin-Perret/kbuild-allow-symbol-whitelisting-with-TRIM_UNUSED_KSYM/20200211-020659
> base:   https://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git for-next
> config: i386-randconfig-c002-20200211 (attached as .config)
> compiler: gcc-7 (Debian 7.5.0-4) 7.5.0
> reproduce:
>         # save the attached .config to linux build tree
>         make ARCH=i386 
> 
> If you fix the issue, kindly add following tag
> Reported-by: kbuild test robot <lkp@intel.com>
> 
> All errors (new ones prefixed by >>):
> 
> >> ERROR: "trace_event_raw_init" [lib/objagg.ko] undefined!
> >> ERROR: "trace_event_reg" [lib/objagg.ko] undefined!
> >> ERROR: "ida_destroy" [lib/objagg.ko] undefined!
> >> ERROR: "rhashtable_destroy" [lib/objagg.ko] undefined!
> >> ERROR: "kmalloc_order_trace" [lib/objagg.ko] undefined!
> >> ERROR: "sort" [lib/objagg.ko] undefined!
> >> ERROR: "__raw_spin_lock_init" [lib/objagg.ko] undefined!
> >> ERROR: "rhashtable_init" [lib/objagg.ko] undefined!
> >> ERROR: "rht_bucket_nested" [lib/objagg.ko] undefined!
> >> ERROR: "__list_del_entry_valid" [lib/objagg.ko] undefined!
> >> ERROR: "__rht_bucket_nested" [lib/objagg.ko] undefined!
> >> ERROR: "kmem_cache_alloc_trace" [lib/objagg.ko] undefined!
> >> ERROR: "kmalloc_caches" [lib/objagg.ko] undefined!
> >> ERROR: "queue_work_on" [lib/objagg.ko] undefined!
> >> ERROR: "system_wq" [lib/objagg.ko] undefined!
> >> ERROR: "kfree" [lib/objagg.ko] undefined!
> >> ERROR: "__list_add_valid" [lib/objagg.ko] undefined!
> >> ERROR: "lockdep_rht_bucket_is_held" [lib/objagg.ko] undefined!
> >> ERROR: "rhashtable_insert_slow" [lib/objagg.ko] undefined!
> >> ERROR: "__local_bh_enable_ip" [lib/objagg.ko] undefined!

I find myself unable to reproduce this error on my box. Could you please
provide the full build log ?

In the meantime I'll proceed to send a v4.

Thanks,
Quentin

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH v3 3/3] kbuild: generate autoksyms.h early
  2020-02-12 19:56       ` Quentin Perret
  (?)
@ 2020-02-13  8:46       ` kernel test robot
  2020-02-13 18:07           ` Quentin Perret
  -1 siblings, 1 reply; 20+ messages in thread
From: kernel test robot @ 2020-02-13  8:46 UTC (permalink / raw)
  To: kbuild-all

[-- Attachment #1: Type: text/plain, Size: 2909 bytes --]

On Wed, Feb 12, 2020 at 07:56:28PM +0000, Quentin Perret wrote:
> On Tuesday 11 Feb 2020 at 10:14:14 (+0800), kbuild test robot wrote:
> > Hi Quentin,
> > 
> > Thank you for the patch! Yet something to improve:
> > 
> > [auto build test ERROR on kbuild/for-next]
> > [also build test ERROR on linux/master linus/master v5.6-rc1 next-20200210]
> > [if your patch is applied to the wrong git tree, please drop us a note to help
> > improve the system. BTW, we also suggest to use '--base' option to specify the
> > base tree in git format-patch, please see https://stackoverflow.com/a/37406982]
> > 
> > url:    https://github.com/0day-ci/linux/commits/Quentin-Perret/kbuild-allow-symbol-whitelisting-with-TRIM_UNUSED_KSYM/20200211-020659
> > base:   https://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git for-next
> > config: i386-randconfig-c002-20200211 (attached as .config)
> > compiler: gcc-7 (Debian 7.5.0-4) 7.5.0
> > reproduce:
> >         # save the attached .config to linux build tree
> >         make ARCH=i386 
> > 
> > If you fix the issue, kindly add following tag
> > Reported-by: kbuild test robot <lkp@intel.com>
> > 
> > All errors (new ones prefixed by >>):
> > 
> > >> ERROR: "trace_event_raw_init" [lib/objagg.ko] undefined!
> > >> ERROR: "trace_event_reg" [lib/objagg.ko] undefined!
> > >> ERROR: "ida_destroy" [lib/objagg.ko] undefined!
> > >> ERROR: "rhashtable_destroy" [lib/objagg.ko] undefined!
> > >> ERROR: "kmalloc_order_trace" [lib/objagg.ko] undefined!
> > >> ERROR: "sort" [lib/objagg.ko] undefined!
> > >> ERROR: "__raw_spin_lock_init" [lib/objagg.ko] undefined!
> > >> ERROR: "rhashtable_init" [lib/objagg.ko] undefined!
> > >> ERROR: "rht_bucket_nested" [lib/objagg.ko] undefined!
> > >> ERROR: "__list_del_entry_valid" [lib/objagg.ko] undefined!
> > >> ERROR: "__rht_bucket_nested" [lib/objagg.ko] undefined!
> > >> ERROR: "kmem_cache_alloc_trace" [lib/objagg.ko] undefined!
> > >> ERROR: "kmalloc_caches" [lib/objagg.ko] undefined!
> > >> ERROR: "queue_work_on" [lib/objagg.ko] undefined!
> > >> ERROR: "system_wq" [lib/objagg.ko] undefined!
> > >> ERROR: "kfree" [lib/objagg.ko] undefined!
> > >> ERROR: "__list_add_valid" [lib/objagg.ko] undefined!
> > >> ERROR: "lockdep_rht_bucket_is_held" [lib/objagg.ko] undefined!
> > >> ERROR: "rhashtable_insert_slow" [lib/objagg.ko] undefined!
> > >> ERROR: "__local_bh_enable_ip" [lib/objagg.ko] undefined!
> 
> I find myself unable to reproduce this error on my box. Could you please
> provide the full build log ?

Hi Quentin,

I attached the build log for your reference.

Best Regards,
Rong Chen

> 
> In the meantime I'll proceed to send a v4.
> 
> Thanks,
> Quentin
> _______________________________________________
> kbuild-all mailing list -- kbuild-all(a)lists.01.org
> To unsubscribe send an email to kbuild-all-leave(a)lists.01.org

[-- Attachment #2: build.log --]
[-- Type: text/plain, Size: 2198325 bytes --]

scripts/kconfig/conf  --syncconfig Kconfig
  SYSTBL  arch/x86/include/generated/asm/syscalls_32.h
  SYSHDR  arch/x86/include/generated/uapi/asm/unistd_32.h
  UPD     include/config/kernel.release
  SYSHDR  arch/x86/include/generated/uapi/asm/unistd_64.h
  SYSHDR  arch/x86/include/generated/uapi/asm/unistd_x32.h
  UPD     include/generated/utsrelease.h
  HOSTCC  scripts/dtc/dtc.o
  HOSTCC  scripts/dtc/flattree.o
./scripts/gen_autoksyms.sh: 24: ./scripts/gen_autoksyms.sh: [[: not found
./scripts/gen_autoksyms.sh: 35: ./scripts/gen_autoksyms.sh: [[: not found
cat: /home/nfs/linux//dev/null: No such file or directory
  HOSTCC  scripts/dtc/fstree.o
  HOSTCC  scripts/dtc/data.o
  HOSTCC  scripts/dtc/livetree.o
  HOSTCC  scripts/dtc/treesource.o
  HOSTCC  scripts/dtc/srcpos.o
  HOSTCC  scripts/dtc/checks.o
  HOSTCC  scripts/dtc/util.o
  YACC    scripts/dtc/dtc-parser.tab.[ch]
  HOSTCC  scripts/dtc/dtc-lexer.lex.o
  HOSTCC  scripts/dtc/dtc-parser.tab.o
  HOSTLD  scripts/dtc/dtc
  HOSTCC  scripts/kallsyms
  HOSTCC  scripts/sorttable
  HOSTCC  scripts/extract-cert
  CC      scripts/mod/devicetable-offsets.s
  CC      scripts/mod/empty.o
  MKELF   scripts/mod/elfconfig.h
  HOSTCC  scripts/mod/modpost.o
  HOSTCC  scripts/mod/sumversion.o
  HOSTCC  scripts/mod/file2alias.o
  HOSTLD  scripts/mod/modpost
  CC      kernel/bounds.s
  CALL    scripts/atomic/check-atomics.sh
  UPD     include/generated/timeconst.h
  UPD     include/generated/bounds.h
  CC      arch/x86/kernel/asm-offsets.s
  UPD     include/generated/asm-offsets.h
  CALL    scripts/checksyscalls.sh
  GEN     usr/initramfs_data.cpio
  SHIPPED usr/initramfs_inc_data
  AS      usr/initramfs_data.o
  AR      usr/built-in.a
  AS      arch/x86/entry/entry_32.o
  AS      arch/x86/entry/thunk_32.o
  CC      arch/x86/entry/syscall_32.o
  CC      arch/x86/entry/common.o
  CC      init/main.o
  CC      certs/system_keyring.o
  EXTRACT_CERTS   
  AS      certs/system_certificates.o
  AR      certs/built-in.a
  CC      kernel/fork.o
  CC      arch/x86/entry/vdso/vma.o
  CHK     include/generated/compile.h
  CC      arch/x86/entry/vdso/vdso32-setup.o
  LDS     arch/x86/entry/vdso/vdso32/vdso32.lds
  CC      arch/x86/entry/vdso/vdso32/vclock_gettime.o
  CC      mm/filemap.o
  UPD     include/generated/compile.h
  CC      init/do_mounts.o
  AS      arch/x86/entry/vdso/vdso32/note.o
  AS      arch/x86/entry/vdso/vdso32/system_call.o
  AS      arch/x86/entry/vdso/vdso32/sigreturn.o
  HOSTCC  arch/x86/entry/vdso/vdso2c
  VDSO    arch/x86/entry/vdso/vdso32.so.dbg
  OBJCOPY arch/x86/entry/vdso/vdso32.so
  VDSO2C  arch/x86/entry/vdso/vdso-image-32.c
  CC      arch/x86/entry/vdso/vdso-image-32.o
  AR      arch/x86/entry/vdso/built-in.a
  CC      mm/mempool.o
  AR      arch/x86/entry/built-in.a
  CC      kernel/exec_domain.o
  CC      arch/x86/events/core.o
  CC      init/do_mounts_initrd.o
  CC      kernel/panic.o
  CC      mm/oom_kill.o
  CC      init/initramfs.o
  CC      kernel/cpu.o
  CC      arch/x86/events/probe.o
  CC      init/calibrate.o
  CC      mm/fadvise.o
  CC      init/init_task.o
  CC      arch/x86/events/amd/core.o
  CC      kernel/exit.o
  CC      mm/maccess.o
  CC      init/version.o
  CC      arch/x86/events/amd/uncore.o
  AR      init/built-in.a
  CC      kernel/softirq.o
  CC      mm/page-writeback.o
  CC      arch/x86/events/amd/ibs.o
  CC      mm/readahead.o
  CC      kernel/resource.o
  CC [M]  arch/x86/events/amd/power.o
  CC      mm/swap.o
  CC      kernel/sysctl.o
  CC      kernel/sysctl_binary.o
  AR      arch/x86/events/amd/built-in.a
  CC      arch/x86/events/msr.o
  CC      mm/truncate.o
  CC      arch/x86/events/intel/core.o
  CC      kernel/capability.o
  CC      mm/vmscan.o
  CC      fs/open.o
  CC      kernel/ptrace.o
  CC      arch/x86/events/intel/bts.o
  CC      kernel/user.o
  CC      fs/read_write.o
  CC      kernel/signal.o
  CC      arch/x86/events/intel/ds.o
  CC      mm/shmem.o
  CC      arch/x86/events/intel/knc.o
  CC      fs/file_table.o
  CC      arch/x86/events/intel/lbr.o
  CC      kernel/sys.o
  CC      fs/super.o
  CC      arch/x86/events/intel/p4.o
  CC      fs/char_dev.o
  CC      arch/x86/events/intel/p6.o
  CC      mm/util.o
  CC      kernel/umh.o
  CC      arch/x86/events/intel/pt.o
  CC      fs/stat.o
  CC      mm/mmzone.o
  CC      kernel/workqueue.o
  CC      mm/vmstat.o
  CC      fs/exec.o
  CC      arch/x86/events/intel/uncore.o
  CC      mm/backing-dev.o
  CC      arch/x86/events/intel/uncore_nhmex.o
  CC      fs/pipe.o
  CC      mm/mm_init.o
  CC      kernel/pid.o
  CC      mm/mmu_context.o
  CC      arch/x86/events/intel/uncore_snb.o
  CC      fs/namei.o
  CC      mm/percpu.o
  CC      kernel/task_work.o
  CC      arch/x86/events/intel/uncore_snbep.o
  CC      kernel/extable.o
  CC      kernel/params.o
  CC [M]  arch/x86/events/intel/rapl.o
  CC      mm/slab_common.o
  CC [M]  arch/x86/events/intel/cstate.o
  CC      kernel/kthread.o
  CC      fs/fcntl.o
  LD [M]  arch/x86/events/intel/intel-rapl-perf.o
  LD [M]  arch/x86/events/intel/intel-cstate.o
  AR      arch/x86/events/intel/built-in.a
  AR      arch/x86/events/built-in.a
  CC      mm/compaction.o
  CC      arch/x86/realmode/init.o
  CC      fs/ioctl.o
  CC      kernel/sys_ni.o
  CC      kernel/nsproxy.o
  AS      arch/x86/realmode/rm/header.o
  AS      arch/x86/realmode/rm/trampoline_32.o
  AS      arch/x86/realmode/rm/stack.o
  AS      arch/x86/realmode/rm/reboot.o
  AS      arch/x86/realmode/rm/wakeup_asm.o
  CC      arch/x86/realmode/rm/wakemain.o
  CC      arch/x86/realmode/rm/video-mode.o
  CC      kernel/notifier.o
  CC      fs/readdir.o
  AS      arch/x86/realmode/rm/copy.o
  AS      arch/x86/realmode/rm/bioscall.o
  CC      arch/x86/realmode/rm/regs.o
  CC      arch/x86/realmode/rm/video-vga.o
  CC      arch/x86/realmode/rm/video-vesa.o
  CC      arch/x86/realmode/rm/video-bios.o
  PASYMS  arch/x86/realmode/rm/pasyms.h
  CC      kernel/ksysfs.o
  LDS     arch/x86/realmode/rm/realmode.lds
  LD      arch/x86/realmode/rm/realmode.elf
  RELOCS  arch/x86/realmode/rm/realmode.relocs
  OBJCOPY arch/x86/realmode/rm/realmode.bin
  AS      arch/x86/realmode/rmpiggy.o
  CC      fs/select.o
  AR      arch/x86/realmode/built-in.a
  CC      mm/vmacache.o
  CC      kernel/cred.o
  CC      mm/interval_tree.o
  CC      kernel/reboot.o
  CC      mm/list_lru.o
  CC      fs/dcache.o
  CC      kernel/async.o
  CC      arch/x86/kernel/process_32.o
  CC      kernel/range.o
  CC      mm/workingset.o
  CC      kernel/smpboot.o
  CC      mm/debug.o
  CC      arch/x86/kernel/signal.o
  CC      kernel/ucount.o
  CC      fs/inode.o
  CC      kernel/kmod.o
  CC      mm/gup.o
  CC      arch/x86/kernel/traps.o
  CC      kernel/groups.o
  CC      arch/x86/kernel/idt.o
  CC      fs/attr.o
  CC      mm/highmem.o
  CC      kernel/sched/core.o
  CC      arch/x86/kernel/irq.o
  CC      fs/bad_inode.o
  CC      mm/memory.o
  CC      fs/file.o
  CC      arch/x86/kernel/irq_32.o
  CC      fs/filesystems.o
  CC      arch/x86/kernel/dumpstack_32.o
  CC      arch/x86/kernel/time.o
  CC      fs/namespace.o
  CC      arch/x86/kernel/ioport.o
  CC      arch/x86/kernel/dumpstack.o
  CC      mm/mincore.o
  CC      kernel/sched/loadavg.o
  CC      arch/x86/kernel/nmi.o
  CC      mm/mlock.o
  CC      kernel/sched/clock.o
  CC      arch/x86/kernel/setup.o
  CC      fs/seq_file.o
  CC      mm/mmap.o
  CC      kernel/sched/cputime.o
  CC      arch/x86/kernel/x86_init.o
  CC      fs/xattr.o
  CC      arch/x86/kernel/i8259.o
  CC      kernel/sched/idle.o
  CC      fs/libfs.o
  CC      arch/x86/kernel/irqinit.o
  CC      mm/mmu_gather.o
  CC      kernel/sched/fair.o
  CC      arch/x86/kernel/irq_work.o
  CC      arch/x86/kernel/probe_roms.o
  CC      mm/mprotect.o
  CC      fs/fs-writeback.o
  CC      arch/x86/kernel/ksysfs.o
  CC      mm/mremap.o
  CC      arch/x86/kernel/bootflag.o
  CC      arch/x86/kernel/e820.o
  CC      kernel/sched/rt.o
  CC      mm/msync.o
  CC      fs/pnode.o
  CC      mm/page_vma_mapped.o
  CC      arch/x86/kernel/pci-dma.o
  CC      fs/splice.o
  CC      kernel/sched/deadline.o
  CC      arch/x86/kernel/quirks.o
  CC      mm/pagewalk.o
  CC      arch/x86/kernel/topology.o
  CC      mm/pgtable-generic.o
  CC      arch/x86/kernel/kdebugfs.o
  CC      fs/sync.o
  CC      mm/rmap.o
  CC      arch/x86/kernel/alternative.o
  CC      kernel/sched/wait.o
  CC      fs/utimes.o
  CC      arch/x86/kernel/i8253.o
  CC      kernel/sched/wait_bit.o
  CC      fs/d_path.o
  CC      arch/x86/kernel/hw_breakpoint.o
  CC      mm/vmalloc.o
  CC      arch/x86/kernel/tsc.o
  CC      kernel/sched/swait.o
  CC      fs/stack.o
  CC      fs/fs_struct.o
  CC      fs/statfs.o
  CC      kernel/sched/completion.o
  CC      arch/x86/kernel/tsc_msr.o
  CC      mm/page_alloc.o
  CC      arch/x86/kernel/io_delay.o
  CC      arch/x86/kernel/rtc.o
  CC      fs/fs_pin.o
  CC      kernel/sched/stats.o
  CC      fs/nsfs.o
  CC      arch/x86/kernel/pci-iommu_table.o
  CC      fs/fs_types.o
  CC      arch/x86/kernel/resource.o
  CC      kernel/sched/debug.o
  AS      arch/x86/kernel/irqflags.o
  CC      arch/x86/kernel/process.o
  CC      fs/fs_context.o
  CC      fs/fs_parser.o
  CC      arch/x86/kernel/fpu/init.o
  CC      fs/fsopen.o
  CC      mm/init-mm.o
  CC      arch/x86/kernel/fpu/bugs.o
  CC      mm/memblock.o
  CC      fs/buffer.o
  CC      arch/x86/kernel/fpu/core.o
  CC      kernel/sched/cpufreq.o
  CC      mm/madvise.o
  CC      arch/x86/kernel/fpu/regset.o
  CC      kernel/sched/membarrier.o
  CC      arch/x86/kernel/fpu/signal.o
  CC      mm/page_io.o
  CC      kernel/sched/psi.o
  CC      arch/x86/kernel/fpu/xstate.o
  CC      fs/block_dev.o
  CC      mm/swap_state.o
  AR      arch/x86/kernel/fpu/built-in.a
  CC      arch/x86/kernel/ptrace.o
  CC      kernel/sched/autogroup.o
  CC      fs/direct-io.o
  CC      mm/swapfile.o
  CC      arch/x86/kernel/tls.o
  CC      kernel/sched/isolation.o
  CC      arch/x86/kernel/step.o
  AR      kernel/sched/built-in.a
  CC      arch/x86/kernel/i8237.o
  CC      fs/mpage.o
  CC      kernel/locking/mutex.o
  CC      arch/x86/kernel/stacktrace.o
  CC      mm/swap_slots.o
  CC      kernel/locking/semaphore.o
  CC      fs/proc_namespace.o
  CC      mm/dmapool.o
  CC      arch/x86/kernel/cpu/cacheinfo.o
  CC      kernel/locking/rwsem.o
  CC      fs/notify/fsnotify.o
  CC      mm/sparse.o
  CC      arch/x86/kernel/cpu/scattered.o
  CC      kernel/locking/percpu-rwsem.o
  CC      fs/notify/notification.o
  CC      arch/x86/kernel/cpu/topology.o
  CC      kernel/locking/mutex-debug.o
  CC      mm/ksm.o
  CC      arch/x86/kernel/cpu/common.o
  CC      fs/notify/group.o
  CC      kernel/locking/lockdep.o
  CC      fs/notify/mark.o
  CC      arch/x86/kernel/cpu/rdrand.o
  CC      arch/x86/kernel/cpu/match.o
  CC      arch/x86/kernel/cpu/bugs.o
  CC      mm/migrate.o
  CC      fs/notify/fdinfo.o
  CC      fs/notify/dnotify/dnotify.o
  CC      arch/x86/kernel/cpu/aperfmperf.o
  AR      fs/notify/dnotify/built-in.a
  CC      fs/notify/inotify/inotify_fsnotify.o
  CC      arch/x86/kernel/cpu/cpuid-deps.o
  CC      kernel/locking/lockdep_proc.o
  CC      mm/huge_memory.o
  CC      arch/x86/kernel/cpu/umwait.o
  CC      fs/notify/inotify/inotify_user.o
  CC      kernel/locking/spinlock.o
  CC      arch/x86/kernel/cpu/proc.o
  CC      kernel/locking/rtmutex.o
  AR      fs/notify/inotify/built-in.a
  AR      fs/notify/built-in.a
  MKCAP   arch/x86/kernel/cpu/capflags.c
  CC      fs/eventpoll.o
  CC      kernel/locking/rtmutex-debug.o
  CC      mm/khugepaged.o
  CC      kernel/locking/spinlock_debug.o
  CC [M]  kernel/locking/locktorture.o
  CC      fs/anon_inodes.o
  CC [M]  kernel/locking/test-ww_mutex.o
  CC      fs/signalfd.o
  AR      kernel/locking/built-in.a
  CC      kernel/power/qos.o
  CC      mm/rodata_test.o
  CC      fs/timerfd.o
  CC      mm/page_owner.o
  CC      arch/x86/kernel/cpu/powerflags.o
  CC      arch/x86/kernel/cpu/intel.o
  CC      kernel/power/poweroff.o
  CC      fs/eventfd.o
  CC      kernel/power/main.o
  CC      mm/early_ioremap.o
  CC      arch/x86/kernel/cpu/intel_pconfig.o
  CC      mm/page_ext.o
  CC      arch/x86/kernel/cpu/tsx.o
  CC      fs/userfaultfd.o
  CC      arch/x86/kernel/cpu/amd.o
  CC      kernel/power/process.o
  CC      mm/userfaultfd.o
  CC      arch/x86/kernel/cpu/hygon.o
  CC      kernel/power/suspend.o
  CC      mm/page_idle.o
  CC      fs/io_uring.o
  CC      arch/x86/kernel/cpu/cyrix.o
  CC      mm/frame_vector.o
  CC      kernel/power/autosleep.o
  CC      arch/x86/kernel/cpu/centaur.o
  CC      arch/x86/kernel/cpu/transmeta.o
  CC      mm/memfd.o
  CC      kernel/power/wakelock.o
  CC      arch/x86/kernel/cpu/umc.o
  CC      arch/x86/kernel/cpu/zhaoxin.o
  CC      arch/x86/kernel/cpu/mce/core.o
  AR      kernel/power/built-in.a
  CC      mm/hugetlb.o
  CC      kernel/printk/printk.o
  CC      arch/x86/kernel/cpu/mce/severity.o
  CC      arch/x86/kernel/cpu/mce/genpool.o
  CC      kernel/printk/printk_safe.o
  CC      fs/io-wq.o
  AR      kernel/printk/built-in.a
  CC      arch/x86/kernel/cpu/mce/winchip.o
  CC      kernel/irq/irqdesc.o
  CC      mm/page_poison.o
  CC      arch/x86/kernel/cpu/mce/p5.o
  CC      mm/slub.o
  CC      kernel/irq/handle.o
  CC      fs/crypto/crypto.o
  CC      arch/x86/kernel/cpu/mce/intel.o
  CC      kernel/irq/manage.o
  CC      arch/x86/kernel/cpu/mce/threshold.o
  CC      fs/crypto/fname.o
  CC      arch/x86/kernel/cpu/mce/inject.o
  CC      kernel/irq/spurious.o
  CC      fs/crypto/hkdf.o
  CC      kernel/irq/resend.o
  CC      fs/crypto/hooks.o
  CC      arch/x86/kernel/cpu/mce/therm_throt.o
  CC      kernel/irq/chip.o
  CC      fs/crypto/keyring.o
  CC      arch/x86/kernel/cpu/mce/apei.o
  CC      mm/memtest.o
  CC      fs/crypto/keysetup.o
  CC      mm/page_counter.o
  CC      arch/x86/kernel/cpu/mce/dev-mcelog.o
  CC      kernel/irq/dummychip.o
  CC      fs/crypto/keysetup_v1.o
  CC      mm/hugetlb_cgroup.o
  CC      kernel/irq/devres.o
  AR      arch/x86/kernel/cpu/mce/built-in.a
  CC      arch/x86/kernel/cpu/microcode/core.o
  CC      fs/crypto/policy.o
  CC      mm/gup_benchmark.o
  CC      kernel/irq/generic-chip.o
  CC      arch/x86/kernel/cpu/microcode/intel.o
  CC      fs/crypto/bio.o
  CC [M]  mm/zpool.o
  CC      kernel/irq/autoprobe.o
  AR      fs/crypto/built-in.a
  CC [M]  mm/z3fold.o
  AR      arch/x86/kernel/cpu/microcode/built-in.a
  CC      kernel/irq/irqdomain.o
  CC      fs/verity/enable.o
  CC      arch/x86/kernel/cpu/resctrl/core.o
  CC      fs/verity/hash_algs.o
  CC      arch/x86/kernel/cpu/resctrl/rdtgroup.o
  CC      kernel/irq/irq_sim.o
  AR      mm/built-in.a
  CC      arch/x86/kernel/cpu/perfctr-watchdog.o
  CC      fs/verity/init.o
  CC      kernel/irq/proc.o
  CC      fs/verity/measure.o
  CC      kernel/irq/matrix.o
  CC      arch/x86/kernel/cpu/vmware.o
  CC      fs/verity/open.o
  CC      arch/x86/kernel/cpu/resctrl/monitor.o
  CC      arch/x86/kernel/cpu/resctrl/ctrlmondata.o
  CC      fs/verity/verify.o
  CC      kernel/irq/pm.o
  CC      arch/x86/kernel/cpu/resctrl/pseudo_lock.o
  CC      ipc/util.o
  AR      fs/verity/built-in.a
  CC      fs/locks.o
  AR      kernel/irq/built-in.a
  CC      kernel/rcu/update.o
  AR      arch/x86/kernel/cpu/resctrl/built-in.a
  CC      arch/x86/kernel/cpu/hypervisor.o
  CC      ipc/msgutil.o
  CC      arch/x86/kernel/cpu/mshyperv.o
  CC      ipc/msg.o
  CC      arch/x86/kernel/cpu/feat_ctl.o
  CC      kernel/rcu/sync.o
  CC      arch/x86/kernel/cpu/intel_epb.o
  CC      kernel/rcu/srcutiny.o
  CC      arch/x86/kernel/cpu/capflags.o
  AR      arch/x86/kernel/cpu/built-in.a
  CC      fs/binfmt_misc.o
  CC      kernel/rcu/rcutorture.o
  CC      arch/x86/kernel/acpi/boot.o
  CC      ipc/sem.o
  CC      fs/binfmt_script.o
  CC      arch/x86/kernel/acpi/apei.o
  CC      fs/binfmt_elf.o
  CC      kernel/rcu/tiny.o
  CC      ipc/shm.o
  CC      arch/x86/kernel/acpi/cstate.o
  CC [M]  kernel/rcu/rcuperf.o
  CC      fs/posix_acl.o
  CC      arch/x86/kernel/acpi/sleep.o
  AR      kernel/rcu/built-in.a
  AS      arch/x86/kernel/acpi/wakeup_32.o
  AR      arch/x86/kernel/acpi/built-in.a
  CC      ipc/syscall.o
  CC      kernel/dma/mapping.o
  CC      arch/x86/kernel/reboot.o
  CC      fs/drop_caches.o
  CC      ipc/ipc_sysctl.o
  CC      fs/fhandle.o
  CC      kernel/dma/direct.o
  CC      arch/x86/kernel/early-quirks.o
  CC      ipc/mqueue.o
  CC      kernel/dma/dummy.o
  CC      fs/iomap/trace.o
  AR      kernel/dma/built-in.a
  CC      kernel/kcmp.o
  CC      arch/x86/kernel/tsc_sync.o
  CC      fs/iomap/apply.o
  CC      kernel/stacktrace.o
  CC      ipc/mq_sysctl.o
  CC      arch/x86/kernel/apic/apic.o
  AR      ipc/built-in.a
  CC      arch/x86/kernel/apic/apic_common.o
  CC      fs/iomap/buffered-io.o
  CC      security/keys/gc.o
  CC      kernel/time/time.o
  CC      arch/x86/kernel/apic/apic_noop.o
  CC      arch/x86/kernel/apic/ipi.o
  CC      security/keys/key.o
  CC      arch/x86/kernel/apic/vector.o
  CC      fs/iomap/direct-io.o
  CC      kernel/time/timer.o
  CC      security/keys/keyring.o
  CC      fs/iomap/fiemap.o
  CC      arch/x86/kernel/apic/hw_nmi.o
  CC      fs/iomap/seek.o
  CC      kernel/time/hrtimer.o
  CC      arch/x86/kernel/apic/io_apic.o
  CC      security/keys/keyctl.o
  CC      fs/iomap/swapfile.o
  CC      kernel/time/timekeeping.o
  AR      fs/iomap/built-in.a
  CC      security/keys/permission.o
  CC      fs/quota/dquot.o
  CC      arch/x86/kernel/apic/probe_32.o
  CC      security/keys/process_keys.o
  AR      arch/x86/kernel/apic/built-in.a
  CC      arch/x86/kernel/reboot_fixups_32.o
  CC      arch/x86/kernel/trace_clock.o
  CC      security/keys/request_key.o
  CC      arch/x86/kernel/kprobes/core.o
  CC      kernel/time/ntp.o
  CC      fs/quota/quota_v1.o
  CC      security/keys/request_key_auth.o
  CC      arch/x86/kernel/kprobes/opt.o
  CC      fs/quota/quota_v2.o
  CC      security/keys/user_defined.o
  CC      kernel/time/clocksource.o
  AR      arch/x86/kernel/kprobes/built-in.a
  CC      arch/x86/kernel/module.o
  CC      fs/quota/quota_tree.o
  CC      security/keys/proc.o
  CC      arch/x86/kernel/hpet.o
  CC      kernel/time/jiffies.o
  CC      security/keys/sysctl.o
  CC      fs/quota/quota.o
  CC      kernel/time/timer_list.o
  CC      security/keys/dh.o
  CC      arch/x86/kernel/amd_nb.o
  CC      kernel/time/timeconv.o
  CC      security/keys/keyctl_pkey.o
  CC      arch/x86/kernel/kvm.o
  CC      fs/quota/kqid.o
  CC      kernel/time/timecounter.o
  CC      kernel/time/alarmtimer.o
  AR      fs/quota/built-in.a
  AR      security/keys/built-in.a
  CC      security/commoncap.o
  CC      arch/x86/kernel/kvmclock.o
  CC      fs/proc/task_mmu.o
  CC      kernel/time/posix-timers.o
  CC      arch/x86/kernel/paravirt.o
  CC      security/min_addr.o
  CC      security/inode.o
  CC      kernel/time/posix-cpu-timers.o
  CC      arch/x86/kernel/paravirt_patch.o
  CC      fs/proc/inode.o
  CC      arch/x86/kernel/pvclock.o
  AR      security/built-in.a
  CC      arch/x86/kernel/eisa.o
  CC      fs/proc/root.o
  CC      fs/kernfs/mount.o
  CC      kernel/time/posix-clock.o
  CC      arch/x86/kernel/devicetree.o
  CC      fs/kernfs/inode.o
  CC      fs/proc/base.o
  CC      kernel/time/itimer.o
  CC      arch/x86/kernel/sysfb.o
  CC      fs/kernfs/dir.o
  CC      kernel/time/clockevents.o
  CC      arch/x86/kernel/sysfb_efi.o
  CC      kernel/time/tick-common.o
  CC      fs/kernfs/file.o
  CC      fs/proc/generic.o
  CC      arch/x86/kernel/perf_regs.o
  CC      arch/x86/kernel/tracepoint.o
  CC      kernel/time/tick-broadcast.o
  CC      fs/kernfs/symlink.o
  CC      fs/proc/array.o
  CC      arch/x86/kernel/unwind_frame.o
  CC      kernel/time/tick-broadcast-hrtimer.o
  AR      fs/kernfs/built-in.a
  CC      fs/proc/fd.o
  CC      arch/x86/kernel/ldt.o
  CC      kernel/time/tick-oneshot.o
  CC      arch/x86/kernel/jump_label.o
  CC      fs/proc/proc_tty.o
  CC      kernel/time/tick-sched.o
  CC      fs/proc/cmdline.o
  CC      arch/x86/kernel/apm_32.o
  CC      fs/sysfs/file.o
  CC      kernel/time/vsyscall.o
  CC      fs/proc/consoles.o
  CC      kernel/time/timekeeping_debug.o
  CC      fs/proc/cpuinfo.o
  CC      fs/sysfs/dir.o
  CC      fs/proc/devices.o
  CC      fs/sysfs/symlink.o
  CC      arch/x86/kernel/crash_core_32.o
  AR      kernel/time/built-in.a
  CC      kernel/futex.o
  CC      fs/proc/interrupts.o
  CC      arch/x86/kernel/doublefault_32.o
  CC      fs/sysfs/mount.o
  CC      fs/proc/loadavg.o
  CC      fs/proc/meminfo.o
  CC      arch/x86/kernel/vm86_32.o
  CC      fs/sysfs/group.o
  AR      fs/sysfs/built-in.a
  CC      arch/x86/kernel/early_printk.o
  CC      fs/proc/stat.o
  CC      kernel/dma.o
  CC      fs/proc/uptime.o
  CC      kernel/uid16.o
  CC      fs/proc/util.o
  CC      arch/x86/kernel/apb_timer.o
  CC      fs/proc/version.o
  CC      fs/proc/softirqs.o
  CC      kernel/module.o
  CC      arch/x86/kernel/pcspeaker.o
  CC      fs/proc/namespaces.o
  CC      arch/x86/kernel/uprobes.o
  CC      crypto/api.o
  CC      fs/proc/self.o
  CC      arch/x86/kernel/umip.o
  CC      fs/proc/thread_self.o
  CC      crypto/cipher.o
  AS      arch/x86/kernel/head_32.o
  CC      arch/x86/kernel/head32.o
  CC      fs/proc/proc_sysctl.o
  CC      crypto/compress.o
  CC      arch/x86/kernel/ebda.o
  CC      kernel/kallsyms.o
  CC      arch/x86/kernel/platform-quirks.o
  CC      crypto/memneq.o
  LDS     arch/x86/kernel/vmlinux.lds
  CC [M]  arch/x86/kernel/msr.o
  CC      fs/proc/proc_net.o
  CC      crypto/algapi.o
  CC      kernel/crash_core.o
  CC [M]  arch/x86/kernel/cpuid.o
  CC      fs/proc/kmsg.o
  AR      arch/x86/kernel/built-in.a
  CC      fs/proc/kcore.o
  CC      kernel/cgroup/cgroup.o
  CC      crypto/scatterwalk.o
  CC      arch/x86/mm/init.o
  CC      fs/proc/page.o
  CC      crypto/proc.o
  CC      arch/x86/mm/init_32.o
  AR      fs/proc/built-in.a
  CC      crypto/aead.o
  CC      fs/configfs/inode.o
  CC      arch/x86/mm/fault.o
  CC      crypto/geniv.o
  CC      fs/configfs/file.o
  CC      fs/configfs/dir.o
  CC      crypto/skcipher.o
  CC      arch/x86/mm/ioremap.o
  CC      kernel/cgroup/rstat.o
  CC      fs/configfs/symlink.o
  CC      crypto/seqiv.o
  CC      arch/x86/mm/extable.o
  CC      fs/configfs/mount.o
  CC      kernel/cgroup/namespace.o
  CC      crypto/ahash.o
  CC      arch/x86/mm/mmap.o
  CC      fs/configfs/item.o
  CC      kernel/cgroup/cgroup-v1.o
  AR      fs/configfs/built-in.a
  CC      arch/x86/mm/pgtable.o
  CC      crypto/shash.o
  CC      fs/devpts/inode.o
  CC      arch/x86/mm/physaddr.o
  AR      fs/devpts/built-in.a
  CC      kernel/cgroup/freezer.o
  CC      crypto/akcipher.o
  CC      fs/ramfs/inode.o
  CC      arch/x86/mm/setup_nx.o
  CC      arch/x86/mm/tlb.o
  CC      kernel/cgroup/pids.o
  CC      crypto/kpp.o
  CC      fs/ramfs/file-mmu.o
  AR      kernel/cgroup/built-in.a
  GZIP    kernel/config_data.gz
  AR      fs/ramfs/built-in.a
  CC      kernel/relay.o
  CC      fs/hugetlbfs/inode.o
  CC      crypto/acompress.o
  CC      arch/x86/mm/cpu_entry_area.o
  CC      arch/x86/mm/maccess.o
  CC      crypto/scompress.o
  CC      kernel/utsname_sysctl.o
  CC      arch/x86/mm/pat/set_memory.o
  CC      kernel/tracepoint.o
  AR      fs/hugetlbfs/built-in.a
  CC      fs/ecryptfs/dentry.o
  CC      crypto/algboss.o
  CC      kernel/latencytop.o
  CC      fs/ecryptfs/file.o
  CC      crypto/testmgr.o
  CC      arch/x86/mm/pat/memtype.o
  CC      kernel/elfcore.o
  CC      crypto/hmac.o
  CC      fs/ecryptfs/inode.o
  AR      arch/x86/mm/pat/built-in.a
  CC      arch/x86/mm/pgtable_32.o
  CC      kernel/trace/trace_clock.o
  CC      crypto/xcbc.o
  CC      arch/x86/mm/iomap_32.o
  CC      kernel/trace/ring_buffer.o
  CC      fs/ecryptfs/main.o
  CC      arch/x86/mm/highmem_32.o
  CC      crypto/crypto_null.o
  CC      fs/ecryptfs/super.o
  CC      crypto/md5.o
  CC      arch/x86/mm/hugetlbpage.o
  CC      fs/ecryptfs/mmap.o
  CC      arch/x86/mm/dump_pagetables.o
  CC      kernel/trace/trace.o
  CC      crypto/rmd256.o
  CC      fs/ecryptfs/read_write.o
  AR      arch/x86/mm/built-in.a
  CC      crypto/rmd320.o
  AS      arch/x86/crypto/aesni-intel_asm.o
  CC      arch/x86/crypto/aesni-intel_glue.o
  CC      fs/ecryptfs/crypto.o
  CC      crypto/sha1_generic.o
  CC [M]  arch/x86/crypto/glue_helper.o
  CC      crypto/sha256_generic.o
  AS [M]  arch/x86/crypto/twofish-i586-asm_32.o
  CC      fs/ecryptfs/keystore.o
  CC [M]  arch/x86/crypto/twofish_glue.o
  CC      crypto/sha512_generic.o
  AS [M]  arch/x86/crypto/serpent-sse2-i586-asm_32.o
  CC [M]  arch/x86/crypto/serpent_sse2_glue.o
  CC      kernel/trace/trace_output.o
  AS [M]  arch/x86/crypto/crc32-pclmul_asm.o
  CC [M]  arch/x86/crypto/crc32-pclmul_glue.o
  CC      crypto/sm3_generic.o
  CC      fs/ecryptfs/kthread.o
  CC      kernel/trace/trace_seq.o
  LD [M]  arch/x86/crypto/twofish-i586.o
  LD [M]  arch/x86/crypto/serpent-sse2-i586.o
  CC      crypto/gf128mul.o
  LD [M]  arch/x86/crypto/crc32-pclmul.o
  AR      arch/x86/crypto/built-in.a
  AR      arch/x86/platform/atom/built-in.a
  CC [M]  arch/x86/platform/atom/punit_atom_debug.o
  CC      kernel/trace/trace_stat.o
  CC      fs/ecryptfs/debug.o
  CC      crypto/ecb.o
  AR      arch/x86/platform/ce4100/built-in.a
  CC      kernel/trace/trace_printk.o
  AR      fs/ecryptfs/built-in.a
  CC      arch/x86/platform/efi/quirks.o
  CC      fs/exportfs/expfs.o
  CC      crypto/cbc.o
  AR      fs/exportfs/built-in.a
  CC      kernel/trace/tracing_map.o
  CC      crypto/xts.o
  CC      arch/x86/platform/efi/efi.o
  CC      fs/nls/nls_base.o
  CC      fs/nls/nls_cp864.o
  CC      crypto/ctr.o
  CC      kernel/trace/trace_sched_switch.o
  CC      arch/x86/platform/efi/efi_32.o
  CC      fs/nls/nls_cp866.o
  CC      crypto/adiantum.o
  CC      fs/nls/nls_ascii.o
  AS      arch/x86/platform/efi/efi_stub_32.o
  AR      arch/x86/platform/efi/built-in.a
  CC      kernel/trace/trace_nop.o
  AR      arch/x86/platform/geode/built-in.a
  CC      arch/x86/platform/goldfish/goldfish.o
  CC      fs/nls/nls_iso8859-6.o
  CC      fs/nls/nls_iso8859-14.o
  AR      arch/x86/platform/goldfish/built-in.a
  CC      crypto/nhpoly1305.o
  AR      arch/x86/platform/iris/built-in.a
  CC [M]  arch/x86/platform/iris/iris.o
  CC      kernel/trace/blktrace.o
  CC      fs/nls/nls_koi8-r.o
  CC      arch/x86/platform/intel/iosf_mbi.o
  CC      fs/nls/nls_cp862.o
  CC      crypto/gcm.o
  CC      kernel/trace/trace_events.o
  CC      fs/nls/nls_cp950.o
  AR      arch/x86/platform/intel/built-in.a
  CC      arch/x86/platform/intel-mid/device_libs/platform_mrfld_pinctrl.o
  CC      fs/nls/nls_cp1255.o
  CC      crypto/cryptd.o
  CC      arch/x86/platform/intel-mid/device_libs/platform_msic.o
  CC      fs/nls/mac-croatian.o
  CC      arch/x86/platform/intel-mid/device_libs/platform_msic_ocd.o
  CC      fs/nls/mac-greek.o
  CC      crypto/fcrypt.o
  CC      fs/nls/mac-inuit.o
  CC      kernel/trace/trace_export.o
  CC      arch/x86/platform/intel-mid/device_libs/platform_msic_battery.o
  CC [M]  fs/nls/nls_cp437.o
  CC      crypto/twofish_common.o
  CC      kernel/trace/trace_event_perf.o
  CC      arch/x86/platform/intel-mid/device_libs/platform_msic_power_btn.o
  CC [M]  fs/nls/nls_cp737.o
  CC      crypto/serpent_generic.o
  CC [M]  fs/nls/nls_cp775.o
  CC      arch/x86/platform/intel-mid/device_libs/platform_lis331.o
  CC      kernel/trace/trace_events_filter.o
  CC [M]  fs/nls/nls_cp857.o
  CC [M]  fs/nls/nls_cp860.o
  CC      arch/x86/platform/intel-mid/device_libs/platform_mpu3050.o
  CC [M]  fs/nls/nls_cp874.o
  CC [M]  fs/nls/nls_cp936.o
  CC      arch/x86/platform/intel-mid/device_libs/platform_bma023.o
  CC      crypto/aes_generic.o
  CC      kernel/trace/trace_events_trigger.o
  CC      arch/x86/platform/intel-mid/device_libs/platform_mrfld_power_btn.o
  CC [M]  fs/nls/nls_iso8859-2.o
  CC      crypto/cast_common.o
  AR      arch/x86/platform/intel-mid/device_libs/built-in.a
  CC      arch/x86/platform/intel-mid/intel-mid.o
  CC [M]  fs/nls/nls_iso8859-3.o
  CC      crypto/cast5_generic.o
  CC [M]  fs/nls/nls_iso8859-5.o
  CC      kernel/trace/trace_events_hist.o
  CC [M]  fs/nls/nls_iso8859-9.o
  CC      arch/x86/platform/intel-mid/intel_mid_vrtc.o
  CC      crypto/arc4.o
  CC [M]  fs/nls/nls_iso8859-13.o
  CC [M]  fs/nls/mac-roman.o
  CC      arch/x86/platform/intel-mid/pwr.o
  CC      crypto/khazad.o
  CC [M]  fs/nls/mac-turkish.o
  CC [M]  fs/nls/nls_cp861.o
  CC      arch/x86/platform/intel-mid/sfi.o
  CC      crypto/seed.o
  CC [M]  fs/nls/nls_cp932.o
  CC      crypto/chacha_generic.o
  CC [M]  fs/nls/nls_euc-jp.o
  AR      arch/x86/platform/intel-mid/built-in.a
  CC      arch/x86/platform/intel-quark/imr.o
  CC [M]  fs/nls/nls_iso8859-4.o
  CC      crypto/poly1305_generic.o
  CC [M]  fs/nls/nls_iso8859-15.o
  CC      arch/x86/platform/intel-quark/imr_selftest.o
  CC      kernel/trace/power-traces.o
  CC      crypto/deflate.o
  CC [M]  fs/nls/nls_koi8-u.o
  AR      arch/x86/platform/intel-quark/built-in.a
  CC      arch/x86/platform/olpc/olpc.o
  CC [M]  fs/nls/nls_koi8-ru.o
  CC      crypto/crc32c_generic.o
  CC      arch/x86/platform/olpc/olpc_ofw.o
  CC [M]  fs/nls/nls_utf8.o
  CC [M]  fs/nls/mac-gaelic.o
  CC      arch/x86/platform/olpc/olpc_dt.o
  CC      crypto/lz4hc.o
  CC      kernel/trace/trace_dynevent.o
  AR      fs/nls/built-in.a
  SHIPPED fs/unicode/utf8data.h
  CC      fs/unicode/utf8-core.o
  CC      crypto/842.o
  AR      arch/x86/platform/olpc/built-in.a
  AR      arch/x86/platform/scx200/built-in.a
  CC [M]  arch/x86/platform/scx200/scx200_32.o
  CC      kernel/trace/trace_preemptirq.o
  CC      crypto/rng.o
  CC      fs/unicode/utf8-norm.o
  LD [M]  arch/x86/platform/scx200/scx200.o
  CC      arch/x86/platform/sfi/sfi.o
  CC      kernel/trace/bpf_trace.o
  CC      crypto/drbg.o
  AR      arch/x86/platform/sfi/built-in.a
  AR      arch/x86/platform/built-in.a
  CC      arch/x86/net/bpf_jit_comp32.o
  AR      fs/unicode/built-in.a
  CC      fs/overlayfs/super.o
  CC      crypto/jitterentropy.o
  CC      crypto/jitterentropy-kcapi.o
  CC      fs/overlayfs/namei.o
  CC      kernel/trace/trace_kprobe.o
  CC      crypto/ghash-generic.o
  AR      arch/x86/net/built-in.a
  AR      arch/x86/built-in.a
  CC      crypto/zstd.o
  CC      fs/overlayfs/util.o
  CC      fs/debugfs/inode.o
  CC      crypto/ofb.o
  CC      fs/overlayfs/inode.o
  CC      kernel/trace/rpm-traces.o
  CC      fs/debugfs/file.o
  CC      crypto/asymmetric_keys/asymmetric_type.o
  CC      fs/overlayfs/file.o
  CC      kernel/trace/trace_probe.o
  CC      crypto/asymmetric_keys/restrict.o
  CC      fs/overlayfs/dir.o
  AR      fs/debugfs/built-in.a
  CC      kernel/trace/trace_uprobe.o
  CC      crypto/asymmetric_keys/signature.o
  CC      crypto/asymmetric_keys/public_key.o
  CC      fs/overlayfs/readdir.o
  CC      fs/tracefs/inode.o
  ASN.1   crypto/asymmetric_keys/x509.asn1.[ch]
  ASN.1   crypto/asymmetric_keys/x509_akid.asn1.[ch]
  CC      crypto/asymmetric_keys/x509_public_key.o
  AR      kernel/trace/built-in.a
  CC      kernel/irq_work.o
  AR      fs/tracefs/built-in.a
  ASN.1   crypto/asymmetric_keys/pkcs7.asn1.[ch]
  CC      fs/overlayfs/copy_up.o
  CC      fs/pstore/inode.o
  CC      crypto/asymmetric_keys/pkcs7_trust.o
  CC      crypto/asymmetric_keys/pkcs7_verify.o
  CC      fs/pstore/platform.o
  CC      kernel/bpf/core.o
  CC      fs/overlayfs/export.o
  CC      crypto/asymmetric_keys/x509.asn1.o
  CC      crypto/asymmetric_keys/x509_akid.asn1.o
  CC      crypto/asymmetric_keys/x509_cert_parser.o
  CC      fs/pstore/pmsg.o
  AR      fs/overlayfs/built-in.a
  CC      crypto/asymmetric_keys/pkcs7.asn1.o
  CC      crypto/asymmetric_keys/pkcs7_parser.o
  CC      kernel/events/core.o
  CC [M]  fs/pstore/ram.o
  AR      crypto/asymmetric_keys/built-in.a
  CC      crypto/hash_info.o
  CC      crypto/simd.o
  CC      kernel/bpf/syscall.o
  CC      crypto/echainiv.o
  CC [M]  fs/pstore/ram_core.o
  CC      crypto/dh.o
  CC      crypto/dh_helper.o
  CC      kernel/bpf/verifier.o
  ASN.1   crypto/rsapubkey.asn1.[ch]
  AR      fs/pstore/built-in.a
  LD [M]  fs/pstore/ramoops.o
  ASN.1   crypto/rsaprivkey.asn1.[ch]
  CC      crypto/rsa.o
  CC      crypto/rsa_helper.o
  CC      crypto/rsa-pkcs1pad.o
  CC      kernel/events/ring_buffer.o
  CC [M]  fs/btrfs/super.o
  CC      crypto/vmac.o
  CC      kernel/events/callchain.o
  CC      crypto/rmd128.o
  CC      kernel/events/hw_breakpoint.o
  CC      crypto/sha3_generic.o
  CC      kernel/events/uprobes.o
  CC      crypto/cfb.o
  CC      crypto/pcbc.o
  AR      kernel/events/built-in.a
  CC      crypto/lrw.o
  CC      kernel/bpf/inode.o
  CC      kernel/torture.o
  CC      crypto/twofish_generic.o
  CC      crypto/sm4_generic.o
  CC [M]  fs/btrfs/ctree.o
  CC      kernel/bpf/helpers.o
  CC      kernel/bpf/tnum.o
  CC      crypto/aes_ti.o
  CC      crypto/tea.o
  CC      kernel/iomem.o
  CC      kernel/bpf/hashtab.o
  CC      crypto/anubis.o
  CC      crypto/salsa20_generic.o
  CC      kernel/rseq.o
  CC      crypto/michael_mic.o
  CC [M]  fs/cramfs/inode.o
  CC      kernel/bpf/arraymap.o
  CC      crypto/authenc.o
  CC [M]  fs/btrfs/extent-tree.o
  CC      crypto/authencesn.o
  CC [M]  fs/cramfs/uncompress.o
  LD [M]  fs/cramfs/cramfs.o
  CC      kernel/bpf/percpu_freelist.o
  CC [M]  fs/btrfs/print-tree.o
  CC      kernel/bpf/bpf_lru_list.o
  CC      crypto/af_alg.o
  CC      kernel/bpf/lpm_trie.o
  CC      kernel/bpf/map_in_map.o
  CC [M]  fs/efivarfs/inode.o
  CC      kernel/bpf/local_storage.o
  CC      crypto/algif_hash.o
  CC [M]  fs/efivarfs/file.o
  CC [M]  fs/efivarfs/super.o
  CC      kernel/bpf/queue_stack_maps.o
  CC [M]  fs/btrfs/root-tree.o
  CC      crypto/algif_skcipher.o
  LD [M]  fs/efivarfs/efivarfs.o
  CC      kernel/bpf/disasm.o
  CC [M]  crypto/cmac.o
  CC      kernel/bpf/btf.o
  CC      kernel/bpf/devmap.o
  CC [M]  fs/btrfs/dir-item.o
  CC [M]  crypto/streebog_generic.o
  CC [M]  crypto/blake2b_generic.o
  CC [M]  fs/btrfs/file-item.o
  CC [M]  fs/btrfs/inode-item.o
  CC      kernel/bpf/cpumap.o
  CC [M]  crypto/cts.o
  CC [M]  fs/btrfs/inode-map.o
  CC [M]  fs/fscache/cache.o
  CC [M]  crypto/ccm.o
  CC      kernel/bpf/offload.o
  CC [M]  fs/fscache/cookie.o
  CC [M]  fs/btrfs/disk-io.o
  CC [M]  crypto/des_generic.o
  CC [M]  crypto/blowfish_generic.o
  CC      kernel/bpf/stackmap.o
  CC [M]  fs/fscache/fsdef.o
  CC [M]  crypto/blowfish_common.o
  CC [M]  fs/fscache/main.o
  CC [M]  crypto/lzo.o
  CC      kernel/bpf/cgroup.o
  CC [M]  crypto/lzo-rle.o
  CC [M]  fs/btrfs/transaction.o
  CC [M]  fs/fscache/netfs.o
  CC [M]  crypto/lz4.o
  CC [M]  fs/fscache/object.o
  CC [M]  crypto/xxhash_generic.o
  CC      kernel/bpf/reuseport_array.o
  CC [M]  crypto/ansi_cprng.o
  CC [M]  fs/fscache/operation.o
  CC [M]  fs/btrfs/inode.o
  CC [M]  crypto/ecc.o
  CC      kernel/bpf/trampoline.o
  CC [M]  fs/fscache/page.o
  CC      kernel/bpf/dispatcher.o
  CC [M]  crypto/curve25519-generic.o
  CC [M]  fs/fscache/proc.o
  CC      kernel/bpf/bpf_struct_ops.o
  CC [M]  crypto/xor.o
  LD [M]  fs/fscache/fscache.o
  CC [M]  fs/btrfs/file.o
  CC [M]  crypto/crypto_engine.o
kernel/bpf/bpf_struct_ops.c: In function ‘bpf_struct_ops_init’:
kernel/bpf/bpf_struct_ops.c:197:1: warning: the frame size of 1188 bytes is larger than 1024 bytes [-Wframe-larger-than=]
 }
 ^
  AR      kernel/bpf/built-in.a
  CC      kernel/freezer.o
  CC [M]  crypto/blake2s_generic.o
  CC      kernel/up.o
  CC [M]  crypto/camellia_generic.o
  CC      kernel/kprobes.o
  CC      kernel/watchdog.o
  CC [M]  crypto/crc32_generic.o
  CC [M]  fs/btrfs/tree-defrag.o
  CC [M]  crypto/tcrypt.o
  CC      kernel/seccomp.o
  CC [M]  fs/fuse/dev.o
  CC [M]  fs/btrfs/extent_map.o
  CC      kernel/jump_label.o
  CC [M]  fs/btrfs/sysfs.o
  CC [M]  crypto/algif_aead.o
  CC [M]  fs/fuse/dir.o
  CC      kernel/configs.o
  AR      kernel/built-in.a
  CC [M]  fs/btrfs/struct-funcs.o
  CC [M]  crypto/essiv.o
  CC [M]  fs/fuse/file.o
  CC [M]  fs/btrfs/xattr.o
  CC      block/bio.o
  CC [M]  crypto/ecrdsa.o
  CC [M]  fs/btrfs/ordered-data.o
  CC [M]  crypto/ecrdsa_params.asn1.o
  CC [M]  crypto/ecrdsa_pub_key.asn1.o
  LD [M]  crypto/ecrdsa_generic.o
  CC      crypto/rsapubkey.asn1.o
  CC      crypto/rsaprivkey.asn1.o
  AR      crypto/built-in.a
  CC      block/elevator.o
  CC [M]  fs/fuse/inode.o
  CC      drivers/irqchip/irqchip.o
  CC [M]  fs/btrfs/extent_io.o
  CC      block/blk-core.o
  CC      drivers/irqchip/irq-al-fic.o
  CC [M]  fs/fuse/control.o
  CC      drivers/irqchip/irq-madera.o
  CC [M]  fs/fuse/xattr.o
  CC [M]  drivers/irqchip/irq-ts4800.o
  CC [M]  fs/fuse/acl.o
  CC      block/blk-sysfs.o
  AR      drivers/irqchip/built-in.a
  CC      drivers/bus/simple-pm-bus.o
  CC [M]  fs/fuse/readdir.o
  AR      drivers/bus/built-in.a
  CC      drivers/phy/phy-core.o
  CC      block/blk-flush.o
  CC [M]  fs/btrfs/volumes.o
  CC [M]  fs/fuse/cuse.o
  CC      drivers/phy/phy-core-mipi-dphy.o
  CC      block/blk-settings.o
  CC      drivers/phy/broadcom/phy-bcm-kona-usb2.o
  CC [M]  fs/fuse/virtio_fs.o
  CC      block/blk-ioc.o
  CC      drivers/phy/broadcom/phy-bcm-ns2-usbdrd.o
  CC      drivers/phy/broadcom/phy-brcm-sata.o
  CC      block/blk-map.o
  LD [M]  fs/fuse/fuse.o
  LD [M]  fs/fuse/virtiofs.o
  CC [M]  fs/btrfs/async-thread.o
  CC [M]  drivers/phy/broadcom/phy-bcm-sr-pcie.o
  CC      block/blk-exec.o
  AR      drivers/phy/broadcom/built-in.a
  CC      drivers/phy/cadence/phy-cadence-sierra.o
  CC      block/blk-merge.o
  CC      block/blk-softirq.o
  CC      drivers/phy/cadence/phy-cadence-dp.o
  CC [M]  fs/btrfs/ioctl.o
  CC [M]  drivers/phy/cadence/cdns-dphy.o
  CC      block/blk-timeout.o
  AR      drivers/phy/cadence/built-in.a
  CC      drivers/phy/freescale/phy-fsl-imx8-mipi-dphy.o
  CC [M]  fs/xfs/xfs_trace.o
  CC [M]  drivers/phy/freescale/phy-fsl-imx8mq-usb.o
  CC      block/blk-lib.o
  AR      drivers/phy/freescale/built-in.a
  CC      drivers/phy/hisilicon/phy-histb-combphy.o
  CC      block/blk-mq.o
  CC [M]  drivers/phy/hisilicon/phy-hisi-inno-usb2.o
  AR      drivers/phy/hisilicon/built-in.a
  AR      drivers/phy/intel/built-in.a
  CC [M]  drivers/phy/intel/phy-intel-emmc.o
  CC [M]  fs/btrfs/locking.o
  CC      drivers/phy/lantiq/phy-lantiq-rcu-usb2.o
  CC [M]  drivers/phy/lantiq/phy-lantiq-vrx200-pcie.o
  AR      drivers/phy/lantiq/built-in.a
  CC [M]  fs/btrfs/orphan.o
  CC      drivers/phy/marvell/phy-pxa-28nm-usb2.o
  CC      block/blk-mq-tag.o
  CC      drivers/phy/marvell/phy-armada375-usb2.o
  CC      drivers/phy/marvell/phy-mmp3-usb.o
  CC      block/blk-stat.o
  CC [M]  drivers/phy/marvell/phy-pxa-28nm-hsic.o
  CC [M]  fs/btrfs/export.o
  CC [M]  drivers/phy/marvell/phy-berlin-sata.o
  CC      block/blk-mq-sysfs.o
  CC [M]  fs/btrfs/tree-log.o
  CC [M]  drivers/phy/marvell/phy-pxa-usb.o
  CC [M]  fs/xfs/libxfs/xfs_ag.o
  CC      block/blk-mq-cpumap.o
  AR      drivers/phy/marvell/built-in.a
  CC [M]  drivers/phy/motorola/phy-cpcap-usb.o
  CC      block/blk-mq-sched.o
  CC [M]  fs/xfs/libxfs/xfs_alloc.o
  AR      drivers/phy/mscc/built-in.a
  CC [M]  drivers/phy/mscc/phy-ocelot-serdes.o
  CC      block/ioctl.o
  CC      drivers/phy/qualcomm/phy-ath79-usb.o
  CC      drivers/phy/qualcomm/phy-qcom-usb-hs.o
  CC      block/genhd.o
  CC [M]  drivers/phy/qualcomm/phy-qcom-pcie2.o
  CC [M]  fs/btrfs/free-space-cache.o
  CC [M]  fs/xfs/libxfs/xfs_alloc_btree.o
  CC [M]  drivers/phy/qualcomm/phy-qcom-qusb2.o
  CC      block/partition-generic.o
  CC [M]  drivers/phy/qualcomm/phy-qcom-usb-hsic.o
  AR      drivers/phy/qualcomm/built-in.a
  CC [M]  drivers/phy/ralink/phy-ralink-usb.o
  CC      block/ioprio.o
  CC [M]  fs/xfs/libxfs/xfs_attr.o
  CC      drivers/phy/samsung/phy-exynos-mipi-video.o
  CC      drivers/phy/samsung/phy-samsung-usb2.o
  CC [M]  fs/btrfs/zlib.o
  CC      block/badblocks.o
  CC      drivers/phy/samsung/phy-s5pv210-usb2.o
  AR      drivers/phy/samsung/built-in.a
  CC      drivers/phy/socionext/phy-uniphier-usb3hs.o
  CC [M]  fs/btrfs/lzo.o
  CC      block/partitions/check.o
  CC [M]  fs/xfs/libxfs/xfs_attr_leaf.o
  CC      drivers/phy/socionext/phy-uniphier-usb3ss.o
  CC [M]  fs/btrfs/zstd.o
  CC      block/partitions/msdos.o
  CC      drivers/phy/socionext/phy-uniphier-pcie.o
  AR      drivers/phy/socionext/built-in.a
  CC      drivers/phy/st/phy-stih407-usb.o
  CC [M]  fs/btrfs/compression.o
  CC      block/partitions/efi.o
  CC      drivers/phy/st/phy-stm32-usbphyc.o
  AR      block/partitions/built-in.a
  CC      block/blk-rq-qos.o
  CC [M]  drivers/phy/st/phy-spear1310-miphy.o
  CC [M]  fs/xfs/libxfs/xfs_attr_remote.o
  CC [M]  drivers/phy/st/phy-spear1340-miphy.o
  CC [M]  fs/btrfs/delayed-ref.o
  CC      block/bounce.o
  AR      drivers/phy/st/built-in.a
  CC      drivers/phy/ti/phy-da8xx-usb.o
  CC      drivers/phy/ti/phy-omap-control.o
  CC      block/scsi_ioctl.o
  CC [M]  fs/xfs/libxfs/xfs_bit.o
  CC [M]  fs/btrfs/relocation.o
  CC      drivers/phy/ti/phy-ti-pipe3.o
  CC      block/bsg.o
  CC [M]  fs/xfs/libxfs/xfs_bmap.o
  CC [M]  drivers/phy/ti/phy-dm816x-usb.o
  CC [M]  drivers/phy/ti/phy-am654-serdes.o
  CC      block/mq-deadline.o
  CC [M]  drivers/phy/ti/phy-gmii-sel.o
  CC      block/kyber-iosched.o
  CC [M]  drivers/phy/ti/phy-j721e-wiz.o
  CC [M]  fs/btrfs/delayed-inode.o
  AR      drivers/phy/ti/built-in.a
  CC [M]  drivers/phy/phy-xgene.o
  CC      block/blk-mq-pci.o
  AR      drivers/phy/built-in.a
  CC      block/blk-mq-virtio.o
  CC      drivers/pinctrl/core.o
  CC [M]  fs/xfs/libxfs/xfs_bmap_btree.o
  CC      block/blk-mq-debugfs.o
  CC [M]  fs/btrfs/scrub.o
  CC      block/blk-pm.o
  CC      drivers/pinctrl/pinctrl-utils.o
  AR      block/built-in.a
  CC [M]  fs/btrfs/reada.o
  CC      drivers/pinctrl/pinmux.o
  CC [M]  fs/xfs/libxfs/xfs_btree.o
  CC      drivers/pinctrl/pinconf.o
  CC      drivers/pinctrl/devicetree.o
  CC [M]  fs/btrfs/backref.o
  AR      sound/built-in.a
  CC [M]  sound/sound_core.o
  CC      drivers/pinctrl/pinconf-generic.o
  LD [M]  sound/soundcore.o
  CC      drivers/pinctrl/pinctrl-as3722.o
  CC [M]  fs/btrfs/ulist.o
  CC      drivers/pinctrl/pinctrl-equilibrium.o
  CC      drivers/pinctrl/actions/pinctrl-owl.o
  CC [M]  fs/xfs/libxfs/xfs_da_btree.o
  CC [M]  fs/btrfs/qgroup.o
  CC [M]  fs/xfs/libxfs/xfs_defer.o
  CC      drivers/pinctrl/actions/pinctrl-s900.o
  AR      drivers/pinctrl/actions/built-in.a
  CC      drivers/pinctrl/bcm/pinctrl-bcm2835.o
  CC [M]  fs/btrfs/send.o
  CC [M]  fs/xfs/libxfs/xfs_dir2.o
  CC      drivers/pinctrl/bcm/pinctrl-iproc-gpio.o
  CC      drivers/pinctrl/bcm/pinctrl-cygnus-mux.o
  CC [M]  fs/btrfs/dev-replace.o
  CC      drivers/pinctrl/bcm/pinctrl-nsp-mux.o
  AR      drivers/pinctrl/bcm/built-in.a
  CC      drivers/pinctrl/intel/pinctrl-baytrail.o
  CC [M]  fs/xfs/libxfs/xfs_dir2_block.o
  CC      arch/x86/pci/i386.o
  CC      drivers/pinctrl/intel/pinctrl-intel.o
  CC      arch/x86/pci/init.o
  CC [M]  fs/btrfs/raid56.o
  CC      arch/x86/pci/direct.o
  CC [M]  fs/xfs/libxfs/xfs_dir2_data.o
  CC      drivers/pinctrl/intel/pinctrl-denverton.o
  CC      arch/x86/pci/fixup.o
  CC      drivers/pinctrl/intel/pinctrl-lynxpoint.o
  CC      arch/x86/pci/acpi.o
  CC [M]  fs/xfs/libxfs/xfs_dir2_leaf.o
  CC      drivers/pinctrl/intel/pinctrl-merrifield.o
  CC [M]  fs/btrfs/uuid-tree.o
  CC      arch/x86/pci/legacy.o
  CC      drivers/pinctrl/intel/pinctrl-geminilake.o
  CC      arch/x86/pci/irq.o
  CC [M]  drivers/pinctrl/intel/pinctrl-lewisburg.o
  CC [M]  fs/btrfs/props.o
  CC [M]  drivers/pinctrl/intel/pinctrl-sunrisepoint.o
  CC      arch/x86/pci/common.o
  CC [M]  fs/xfs/libxfs/xfs_dir2_node.o
  AR      drivers/pinctrl/intel/built-in.a
  CC [M]  fs/btrfs/free-space-tree.o
  CC      drivers/pinctrl/pxa/pinctrl-pxa2xx.o
  CC      arch/x86/pci/early.o
  CC      drivers/pinctrl/pxa/pinctrl-pxa27x.o
  CC      arch/x86/pci/bus_numa.o
  CC [M]  drivers/pinctrl/pxa/pinctrl-pxa25x.o
  CC [M]  fs/btrfs/tree-checker.o
  CC      arch/x86/pci/amd_bus.o
  AR      drivers/pinctrl/pxa/built-in.a
  CC      drivers/pinctrl/samsung/pinctrl-samsung.o
  CC [M]  fs/xfs/libxfs/xfs_dir2_sf.o
  CC      arch/x86/pci/pcbios.o
  CC      drivers/pinctrl/samsung/pinctrl-s3c24xx.o
  CC      arch/x86/pci/mmconfig_32.o
  CC [M]  fs/btrfs/space-info.o
  CC      drivers/pinctrl/samsung/pinctrl-s3c64xx.o
  CC      arch/x86/pci/mmconfig-shared.o
  AR      drivers/pinctrl/samsung/built-in.a
  CC      drivers/pinctrl/sh-pfc/core.o
  CC [M]  fs/xfs/libxfs/xfs_dquot_buf.o
  CC      arch/x86/pci/olpc.o
  CC [M]  fs/btrfs/block-rsv.o
  CC      drivers/pinctrl/sh-pfc/pinctrl.o
  CC [M]  fs/xfs/libxfs/xfs_ialloc.o
  CC      arch/x86/pci/intel_mid_pci.o
  CC      drivers/pinctrl/sh-pfc/gpio.o
  CC      arch/x86/pci/broadcom_bus.o
  CC [M]  fs/btrfs/delalloc-space.o
  CC      drivers/pinctrl/sh-pfc/pfc-r8a7740.o
  AR      arch/x86/pci/built-in.a
  CC [M]  fs/xfs/libxfs/xfs_ialloc_btree.o
  CC      drivers/pinctrl/sh-pfc/pfc-r8a7794.o
  CC [M]  fs/btrfs/block-group.o
  CC      drivers/pinctrl/sh-pfc/pfc-r8a77470.o
  CC [M]  fs/btrfs/discard.o
  CC      drivers/pinctrl/sh-pfc/pfc-r8a77965.o
  CC [M]  fs/xfs/libxfs/xfs_iext_tree.o
  CC      drivers/pinctrl/sh-pfc/pfc-r8a77990.o
  CC      drivers/pinctrl/sh-pfc/pfc-r8a7778.o
  CC      arch/x86/power/cpu.o
  CC      drivers/pinctrl/sh-pfc/pfc-r8a7779.o
  LD [M]  fs/btrfs/btrfs.o
  CC      drivers/pinctrl/sh-pfc/pfc-r8a77950.o
  AR      arch/x86/power/built-in.a
  CC      drivers/pinctrl/sh-pfc/pfc-r8a77970.o
  CC      drivers/pinctrl/stm32/pinctrl-stm32.o
  CC      arch/x86/video/fbdev.o
  CC      drivers/pinctrl/sh-pfc/pfc-r8a77980.o
  CC [M]  fs/xfs/libxfs/xfs_inode_fork.o
  CC      drivers/pinctrl/sh-pfc/pfc-sh7720.o
  CC      drivers/pinctrl/stm32/pinctrl-stm32f429.o
  AR      arch/x86/video/built-in.a
  CC      drivers/pinctrl/sh-pfc/pfc-sh7722.o
  CC [M]  fs/xfs/libxfs/xfs_inode_buf.o
  CC      drivers/pinctrl/stm32/pinctrl-stm32f746.o
  CC      drivers/pinctrl/sh-pfc/pfc-sh7724.o
  CC      drivers/pinctrl/stm32/pinctrl-stm32f769.o
  CC      drivers/pinctrl/sh-pfc/pfc-sh7734.o
  CC      drivers/pinctrl/stm32/pinctrl-stm32mp157.o
  CC      drivers/pinctrl/sh-pfc/pfc-sh7786.o
  CC [M]  fs/xfs/libxfs/xfs_log_rlimit.o
  CC [M]  fs/xfs/libxfs/xfs_ag_resv.o
  AR      drivers/pinctrl/stm32/built-in.a
  CC [M]  fs/xfs/libxfs/xfs_rmap.o
  CC      drivers/pinctrl/sh-pfc/pfc-shx3.o
  AR      drivers/pinctrl/sh-pfc/built-in.a
  CC      drivers/pinctrl/ti/pinctrl-ti-iodelay.o
  CC      net/socket.o
  AR      drivers/pinctrl/ti/built-in.a
  CC      drivers/pinctrl/mediatek/mtk-eint.o
  CC      drivers/pinctrl/cirrus/pinctrl-madera-core.o
  CC      drivers/pinctrl/mediatek/pinctrl-mtk-common.o
  CC      drivers/pinctrl/cirrus/pinctrl-cs47l85.o
  CC [M]  fs/xfs/libxfs/xfs_rmap_btree.o
  CC      drivers/pinctrl/mediatek/pinctrl-moore.o
  CC      drivers/pinctrl/cirrus/pinctrl-cs47l92.o
  CC      drivers/pinctrl/mediatek/pinctrl-mtk-common-v2.o
  AR      drivers/pinctrl/cirrus/built-in.a
  AR      fs/built-in.a
  CC [M]  fs/xfs/libxfs/xfs_refcount.o
  CC      net/core/sock.o
  CC      drivers/pinctrl/mediatek/pinctrl-paris.o
  CC      net/llc/llc_core.o
  CC      net/llc/llc_input.o
  CC      drivers/pinctrl/mediatek/pinctrl-mt2701.o
  CC      drivers/pinctrl/mediatek/pinctrl-mt8127.o
  CC      net/llc/llc_output.o
  CC      drivers/pinctrl/mediatek/pinctrl-mt6797.o
  CC [M]  fs/xfs/libxfs/xfs_refcount_btree.o
  CC      net/llc/llc_if.o
  CC      drivers/pinctrl/mediatek/pinctrl-mt7629.o
  CC      net/core/request_sock.o
  CC      drivers/pinctrl/mediatek/pinctrl-mt8516.o
  CC      net/llc/llc_c_ev.o
  CC      drivers/pinctrl/mediatek/pinctrl-mt6397.o
  CC [M]  fs/xfs/libxfs/xfs_sb.o
  CC      net/core/skbuff.o
  AR      drivers/pinctrl/mediatek/built-in.a
  CC      drivers/pinctrl/pinctrl-rza1.o
  CC      net/llc/llc_c_ac.o
  CC      drivers/pinctrl/pinctrl-rzn1.o
  CC [M]  fs/xfs/libxfs/xfs_symlink_remote.o
  CC      drivers/pinctrl/pinctrl-sx150x.o
  CC      net/llc/llc_conn.o
  CC      drivers/pinctrl/pinctrl-stmfx.o
  CC [M]  fs/xfs/libxfs/xfs_trans_inode.o
  CC [M]  drivers/pinctrl/pinctrl-axp209.o
  CC      net/llc/llc_c_st.o
  CC [M]  fs/xfs/libxfs/xfs_trans_resv.o
  CC [M]  drivers/pinctrl/pinctrl-max77620.o
  CC      net/llc/llc_pdu.o
  CC [M]  fs/xfs/libxfs/xfs_types.o
  CC [M]  drivers/pinctrl/pinctrl-single.o
  CC      net/llc/llc_sap.o
  CC      net/core/datagram.o
  CC [M]  fs/xfs/xfs_aops.o
  CC [M]  drivers/pinctrl/pinctrl-rk805.o
  CC      net/llc/llc_s_ac.o
  AR      drivers/pinctrl/built-in.a
  CC      net/core/stream.o
  CC      net/llc/llc_s_ev.o
  CC [M]  fs/xfs/xfs_attr_inactive.o
  CC      drivers/gpio/gpiolib.o
  CC [M]  fs/xfs/xfs_attr_list.o
  CC      net/core/scm.o
  CC      net/llc/llc_s_st.o
  CC      net/llc/af_llc.o
  CC      net/core/gen_stats.o
  CC [M]  fs/xfs/xfs_bmap_util.o
  CC      net/core/gen_estimator.o
  CC      net/llc/llc_station.o
  CC      drivers/gpio/gpiolib-devres.o
  CC      drivers/gpio/gpiolib-legacy.o
  CC      net/core/net_namespace.o
  CC      net/llc/llc_proc.o
  CC      drivers/gpio/gpiolib-devprop.o
  CC [M]  fs/xfs/xfs_bio_io.o
  CC      drivers/gpio/gpiolib-of.o
  CC      net/llc/sysctl_net_llc.o
  CC      net/core/secure_seq.o
  CC [M]  fs/xfs/xfs_buf.o
  CC      drivers/gpio/gpiolib-acpi.o
  AR      net/llc/built-in.a
  CC      net/core/flow_dissector.o
  CC      drivers/gpio/gpio-mmio.o
  CC      net/ethernet/eth.o
  CC      drivers/gpio/gpio-adp5588.o
  AR      net/ethernet/built-in.a
  CC      drivers/gpio/gpio-amdpt.o
  CC      net/core/sysctl_net_core.o
  CC      drivers/pwm/core.o
  CC [M]  fs/xfs/xfs_dir2_readdir.o
  CC      drivers/gpio/gpio-cadence.o
  CC      net/core/dev.o
  CC      drivers/pwm/sysfs.o
  CC      drivers/gpio/gpio-it87.o
  CC      drivers/pwm/pwm-pca9685.o
  CC      drivers/gpio/gpio-mockup.o
  CC [M]  fs/xfs/xfs_discard.o
  CC      drivers/pwm/pwm-stmpe.o
  CC      drivers/gpio/gpio-pcf857x.o
  CC      drivers/pwm/pwm-clps711x.o
  CC      drivers/gpio/gpio-pcie-idio-24.o
  CC      drivers/pwm/pwm-hibvt.o
  CC [M]  fs/xfs/xfs_error.o
  CC      drivers/gpio/gpio-stmpe.o
  CC      drivers/pwm/pwm-imx-tpm.o
  CC      drivers/gpio/gpio-tc3589x.o
  CC [M]  fs/xfs/xfs_export.o
  CC      drivers/pwm/pwm-mediatek.o
  CC      drivers/gpio/gpio-ws16c48.o
  CC      drivers/pwm/pwm-rcar.o
  CC [M]  fs/xfs/xfs_extent_busy.o
  CC      drivers/gpio/gpiolib-sysfs.o
  CC      drivers/pwm/pwm-sun4i.o
  CC      drivers/gpio/gpio-aspeed.o
  CC [M]  drivers/pwm/pwm-cros-ec.o
  CC [M]  drivers/pwm/pwm-lpss.o
  CC [M]  fs/xfs/xfs_file.o
  CC      net/core/dev_addr_lists.o
  CC      drivers/gpio/gpio-bcm-kona.o
  CC [M]  drivers/pwm/pwm-lpss-platform.o
  CC      drivers/gpio/gpio-creg-snps.o
  CC [M]  drivers/pwm/pwm-bcm-iproc.o
  CC      net/core/dst.o
  CC      drivers/gpio/gpio-dln2.o
  CC [M]  drivers/pwm/pwm-fsl-ftm.o
  CC [M]  fs/xfs/xfs_filestream.o
  CC      drivers/gpio/gpio-eic-sprd.o
  CC [M]  drivers/pwm/pwm-sifive.o
  CC      net/core/netevent.o
  CC [M]  drivers/pwm/pwm-sprd.o
  CC      drivers/gpio/gpio-ftgpio010.o
  CC      net/core/neighbour.o
  CC [M]  drivers/pwm/pwm-twl.o
  CC      drivers/gpio/gpio-iop.o
  CC [M]  fs/xfs/xfs_fsmap.o
  AR      drivers/pwm/built-in.a
  CC [M]  fs/xfs/xfs_fsops.o
  CC      drivers/gpio/gpio-logicvc.o
  CC      drivers/gpio/gpio-max7300.o
  CC      drivers/gpio/gpio-max730x.o
  CC [M]  fs/xfs/xfs_globals.o
  CC      drivers/gpio/gpio-mb86s7x.o
  CC      drivers/gpio/gpio-menz127.o
  CC [M]  fs/xfs/xfs_health.o
  CC      net/802/p8022.o
  CC      drivers/gpio/gpio-ml-ioh.o
  CC      net/core/rtnetlink.o
  CC      net/802/psnap.o
  CC      drivers/gpio/gpio-mpc8xxx.o
  CC [M]  fs/xfs/xfs_icache.o
  CC      drivers/gpio/gpio-mt7621.o
  CC [M]  net/802/stp.o
  CC      drivers/gpio/gpio-raspberrypi-exp.o
  CC [M]  net/802/garp.o
  CC      drivers/gpio/gpio-rda.o
  CC      drivers/gpio/gpio-sama5d2-piobu.o
  AR      net/802/built-in.a
  CC      drivers/gpio/gpio-sifive.o
  CC [M]  fs/xfs/xfs_ioctl.o
  CC      net/sched/sch_generic.o
  CC      drivers/gpio/gpio-sprd.o
  CC      net/core/utils.o
  CC      drivers/gpio/gpio-stp-xway.o
  CC      drivers/gpio/gpio-syscon.o
  CC      net/core/link_watch.o
  CC      drivers/gpio/gpio-tegra186.o
  CC      net/sched/sch_mq.o
  CC [M]  fs/xfs/xfs_iomap.o
  CC      drivers/gpio/gpio-tpic2810.o
  CC      net/core/filter.o
  AR      net/sched/built-in.a
  CC      drivers/gpio/gpio-ts4900.o
  CC      net/netlink/af_netlink.o
  CC      drivers/gpio/gpio-viperboard.o
  CC      drivers/gpio/gpio-wm8350.o
  CC [M]  fs/xfs/xfs_iops.o
  CC      drivers/gpio/gpio-zx.o
  CC [M]  drivers/gpio/gpio-74xx-mmio.o
  CC      net/netlink/genetlink.o
  CC [M]  fs/xfs/xfs_inode.o
  CC [M]  drivers/gpio/gpio-adnp.o
  CC [M]  drivers/gpio/gpio-altera.o
  AR      net/netlink/built-in.a
  CC [M]  fs/xfs/xfs_itable.o
  CC [M]  drivers/gpio/gpio-amd8111.o
  CC      net/core/sock_diag.o
  CC [M]  drivers/gpio/gpio-amd-fch.o
  CC      net/bpf/test_run.o
  CC [M]  drivers/gpio/gpio-grgpio.o
  CC [M]  fs/xfs/xfs_iwalk.o
  CC      net/core/dev_ioctl.o
  CC [M]  drivers/gpio/gpio-lp873x.o
  AR      net/bpf/built-in.a
  CC      net/core/tso.o
  CC [M]  drivers/gpio/gpio-lp87565.o
  CC      drivers/pci/access.o
  CC [M]  fs/xfs/xfs_message.o
  CC [M]  drivers/gpio/gpio-max77620.o
  CC      drivers/pci/bus.o
  CC      net/core/sock_reuseport.o
  CC [M]  drivers/gpio/gpio-sch.o
  CC [M]  fs/xfs/xfs_mount.o
  CC      drivers/pci/probe.o
  CC [M]  drivers/gpio/gpio-siox.o
  CC      net/core/fib_notifier.o
  CC [M]  drivers/gpio/gpio-tps65086.o
  CC [M]  drivers/gpio/gpio-tps65218.o
  CC      net/core/xdp.o
  CC      drivers/pci/host-bridge.o
  CC [M]  fs/xfs/xfs_mru_cache.o
  CC [M]  drivers/gpio/gpio-tqmx86.o
  CC      drivers/pci/remove.o
  CC [M]  fs/xfs/xfs_pwork.o
  CC [M]  drivers/gpio/gpio-104-idi-48.o
  CC      net/core/flow_offload.o
  CC      drivers/pci/pci.o
  CC [M]  drivers/gpio/gpio-adp5520.o
  CC [M]  drivers/gpio/gpio-ath79.o
  CC      net/core/net-sysfs.o
  CC [M]  fs/xfs/xfs_reflink.o
  CC [M]  drivers/gpio/gpio-bd71828.o
  CC [M]  drivers/gpio/gpio-brcmstb.o
  CC      net/core/net-procfs.o
  CC [M]  drivers/gpio/gpio-dwapb.o
  CC      drivers/pci/pci-driver.o
  CC [M]  fs/xfs/xfs_stats.o
  CC      net/core/skmsg.o
  CC [M]  drivers/gpio/gpio-lpc18xx.o
  CC      drivers/pci/search.o
  CC [M]  fs/xfs/xfs_super.o
  CC [M]  drivers/gpio/gpio-lpc32xx.o
  CC      drivers/pci/pci-sysfs.o
  CC [M]  drivers/gpio/gpio-max77650.o
  CC      net/core/fib_rules.o
  CC [M]  drivers/gpio/gpio-pmic-eic-sprd.o
  CC      drivers/pci/rom.o
  CC [M]  drivers/gpio/gpio-rcar.o
  CC [M]  fs/xfs/xfs_symlink.o
  CC      drivers/pci/setup-res.o
  CC [M]  drivers/gpio/gpio-ts5500.o
  CC      net/core/net-traces.o
  CC      drivers/pci/irq.o
  CC [M]  drivers/gpio/gpio-winbond.o
  CC      drivers/pci/vpd.o
  CC [M]  fs/xfs/xfs_sysfs.o
  CC [M]  drivers/gpio/gpio-wm8994.o
  CC      drivers/pci/setup-bus.o
  CC [M]  fs/xfs/xfs_trans.o
  AR      drivers/gpio/built-in.a
  CC [M]  fs/xfs/xfs_xattr.o
  CC      net/core/lwtunnel.o
  CC      drivers/pci/vc.o
  CC      drivers/video/vgastate.o
  CC [M]  fs/xfs/kmem.o
  CC      drivers/pci/mmap.o
  CC      net/core/lwt_bpf.o
  CC      drivers/pci/setup-irq.o
  CC      drivers/video/logo/logo.o
  HOSTCC  drivers/video/logo/pnmtologo
  CC      drivers/pci/pcie/portdrv_core.o
  LOGO    drivers/video/logo/logo_linux_clut224.c
  CC [M]  fs/xfs/xfs_log.o
  CC      drivers/video/logo/logo_linux_clut224.o
  AR      drivers/video/logo/built-in.a
  CC      net/core/sock_map.o
  CC      drivers/video/backlight/adp8860_bl.o
  CC      drivers/pci/pcie/portdrv_pci.o
  CC      drivers/pci/pcie/err.o
  CC      drivers/video/backlight/apple_bl.o
  CC      drivers/pci/pcie/aspm.o
  CC      net/core/dst_cache.o
  CC      drivers/video/backlight/backlight.o
  CC      drivers/pci/pcie/aer.o
  CC      drivers/video/backlight/lp855x_bl.o
  CC      net/core/gro_cells.o
  CC [M]  fs/xfs/xfs_log_cil.o
  CC      drivers/video/backlight/lcd.o
  CC      drivers/pci/pcie/aer_inject.o
  CC      net/core/bpf_sk_storage.o
  CC      drivers/video/backlight/as3711_bl.o
  CC      drivers/pci/pcie/pme.o
  CC [M]  fs/xfs/xfs_bmap_item.o
  CC      drivers/video/backlight/lv5207lp.o
  CC      drivers/pci/pcie/dpc.o
  CC      net/core/ptp_classifier.o
  CC [M]  drivers/video/backlight/sky81452-backlight.o
  CC [M]  fs/xfs/xfs_buf_item.o
  CC      drivers/pci/pcie/ptm.o
  CC [M]  drivers/video/backlight/adp5520_bl.o
  CC      net/core/netclassid_cgroup.o
  CC      drivers/pci/pcie/bw_notification.o
  CC [M]  drivers/video/backlight/bd6107.o
  AR      drivers/pci/pcie/built-in.a
  CC      drivers/pci/proc.o
  CC [M]  net/core/failover.o
  CC [M]  drivers/video/backlight/cr_bllcd.o
  CC [M]  fs/xfs/xfs_extfree_item.o
  CC      drivers/pci/slot.o
  CC [M]  drivers/video/backlight/generic_bl.o
  AR      net/core/built-in.a
  CC      net/ethtool/ioctl.o
  CC      drivers/pci/pci-acpi.o
  CC [M]  drivers/video/backlight/lm3630a_bl.o
  CC [M]  fs/xfs/xfs_icreate_item.o
  CC [M]  drivers/video/backlight/pandora_bl.o
  CC      drivers/pci/of.o
  CC [M]  drivers/video/backlight/pcf50633-backlight.o
  CC [M]  fs/xfs/xfs_inode_item.o
  CC      drivers/pci/quirks.o
  CC      net/ethtool/common.o
  AR      drivers/video/backlight/built-in.a
  AR      net/ethtool/built-in.a
  CC      net/netfilter/core.o
  CC      drivers/video/fbdev/core/fb_cmdline.o
  CC [M]  fs/xfs/xfs_refcount_item.o
  CC      drivers/video/fbdev/core/fb_notify.o
  CC      drivers/pci/hotplug/pci_hotplug_core.o
  CC      drivers/video/fbdev/core/fbmem.o
  CC [M]  fs/xfs/xfs_rmap_item.o
  CC      net/netfilter/nf_log.o
  CC      drivers/pci/hotplug/acpi_pcihp.o
  CC [M]  fs/xfs/xfs_log_recover.o
  CC      drivers/pci/hotplug/acpiphp_core.o
  CC      net/netfilter/nf_queue.o
  CC      drivers/video/fbdev/core/fbmon.o
  CC      drivers/pci/hotplug/acpiphp_glue.o
  CC      net/netfilter/nf_sockopt.o
  CC      drivers/video/fbdev/core/fbcmap.o
  CC      drivers/pci/hotplug/acpiphp_ibm.o
  CC      drivers/video/fbdev/core/fbsysfs.o
  CC      net/netfilter/utils.o
  CC [M]  drivers/pci/hotplug/cpqphp_core.o
  CC [M]  fs/xfs/xfs_trans_ail.o
  CC      drivers/video/fbdev/core/modedb.o
  AR      net/netfilter/built-in.a
  CC [M]  drivers/pci/hotplug/cpqphp_ctrl.o
  CC      drivers/video/fbdev/core/fbcvt.o
  CC      drivers/video/fbdev/core/fb_defio.o
  CC [M]  fs/xfs/xfs_trans_buf.o
  CC      drivers/video/fbdev/core/cfbfillrect.o
  CC [M]  drivers/pci/hotplug/cpqphp_sysfs.o
  CC      net/ipv4/route.o
  CC      drivers/video/fbdev/core/cfbcopyarea.o
  CC [M]  drivers/pci/hotplug/cpqphp_pci.o
  CC [M]  fs/xfs/xfs_sysctl.o
  CC      drivers/video/fbdev/core/cfbimgblt.o
  CC [M]  fs/xfs/xfs_pnfs.o
  CC      drivers/video/fbdev/core/sysfillrect.o
  CC [M]  drivers/pci/hotplug/ibmphp_core.o
  LD [M]  fs/xfs/xfs.o
  CC      drivers/video/fbdev/core/syscopyarea.o
  CC      net/xfrm/xfrm_policy.o
  CC      drivers/video/fbdev/core/sysimgblt.o
  CC      net/ipv4/inetpeer.o
  CC [M]  drivers/pci/hotplug/ibmphp_ebda.o
  CC      drivers/video/fbdev/core/fb_sys_fops.o
  CC      drivers/video/fbdev/core/svgalib.o
  CC      net/ipv4/protocol.o
  CC [M]  drivers/pci/hotplug/ibmphp_pci.o
  CC      drivers/video/fbdev/core/fb_ddc.o
  CC      net/ipv4/ip_input.o
  CC [M]  drivers/pci/hotplug/ibmphp_res.o
  AR      drivers/video/fbdev/core/built-in.a
  CC      drivers/video/fbdev/cyber2000fb.o
  CC      net/xfrm/xfrm_state.o
  CC      net/ipv4/ip_fragment.o
  CC      drivers/video/fbdev/pm2fb.o
  CC [M]  drivers/pci/hotplug/ibmphp_hpc.o
  CC      net/ipv4/ip_forward.o
  LD [M]  drivers/pci/hotplug/cpqphp.o
  LD [M]  drivers/pci/hotplug/ibmphp.o
  AR      drivers/pci/hotplug/built-in.a
  CC      drivers/pci/ats.o
  CC      drivers/video/fbdev/i740fb.o
  CC      drivers/pci/pci-label.o
  CC      net/ipv4/ip_options.o
  CC      drivers/pci/pci-stub.o
  CC      drivers/video/fbdev/nvidia/nvidia.o
  CC      net/xfrm/xfrm_hash.o
  CC      net/xfrm/xfrm_input.o
  CC      drivers/video/fbdev/nvidia/nv_hw.o
  CC      drivers/pci/endpoint/pci-epc-core.o
  CC      drivers/video/fbdev/nvidia/nv_setup.o
  CC      net/ipv4/ip_output.o
  CC      net/xfrm/xfrm_output.o
  CC      drivers/pci/endpoint/pci-epf-core.o
  CC      drivers/video/fbdev/nvidia/nv_accel.o
  CC      net/xfrm/xfrm_sysctl.o
  CC      net/ipv4/ip_sockglue.o
  CC      drivers/pci/endpoint/pci-epc-mem.o
  CC      drivers/video/fbdev/nvidia/nv_of.o
  CC      net/xfrm/xfrm_replay.o
  CC      drivers/pci/endpoint/pci-ep-cfs.o
  CC      drivers/video/fbdev/nvidia/nv_i2c.o
  AR      drivers/video/fbdev/nvidia/built-in.a
  AR      drivers/pci/endpoint/built-in.a
  CC      net/ipv4/inet_hashtables.o
  CC      drivers/video/fbdev/aty/atyfb_base.o
  CC      net/xfrm/xfrm_device.o
  CC      drivers/pci/controller/cadence/pcie-cadence.o
  CC      drivers/pci/controller/cadence/pcie-cadence-plat.o
  AR      net/xfrm/built-in.a
  AR      drivers/pci/switch/built-in.a
  CC      drivers/pci/controller/cadence/pcie-cadence-host.o
  CC      drivers/video/fbdev/aty/mach64_accel.o
  CC      net/unix/af_unix.o
  CC      net/ipv4/inet_timewait_sock.o
  AR      drivers/pci/controller/cadence/built-in.a
  CC      drivers/pci/controller/dwc/pcie-designware.o
  CC      drivers/video/fbdev/aty/mach64_cursor.o
  CC      drivers/video/fbdev/aty/mach64_gx.o
  CC      drivers/pci/controller/dwc/pcie-designware-ep.o
  CC      net/ipv4/inet_connection_sock.o
  AR      drivers/video/fbdev/aty/built-in.a
  CC      drivers/video/fbdev/macmodes.o
  CC      drivers/pci/controller/dwc/pci-layerscape-ep.o
  CC      net/unix/garbage.o
  AR      drivers/pci/controller/dwc/built-in.a
  CC      drivers/pci/controller/pci-host-common.o
  CC      drivers/video/fbdev/s3fb.o
  CC      drivers/pci/controller/pci-versatile.o
  CC      net/ipv4/tcp.o
  CC      net/unix/sysctl_net_unix.o
  CC      drivers/pci/controller/pcie-rockchip.o
  CC      drivers/video/fbdev/hecubafb.o
  CC      drivers/pci/controller/pcie-rockchip-ep.o
  CC      net/unix/scm.o
  CC      drivers/video/fbdev/n411.o
  CC [M]  drivers/pci/controller/pcie-altera.o
  CC      drivers/video/fbdev/asiliantfb.o
  AR      net/unix/built-in.a
  AR      drivers/pci/controller/built-in.a
  CC      drivers/pci/iov.o
  CC      net/ipv4/tcp_input.o
  AR      drivers/video/fbdev/mmp/hw/built-in.a
  AR      drivers/video/fbdev/mmp/panel/built-in.a
  AR      drivers/video/fbdev/mmp/fb/built-in.a
  CC [M]  drivers/video/fbdev/mmp/fb/mmpfb.o
  CC      drivers/pci/pci-mid.o
  CC      drivers/video/fbdev/mmp/core.o
  CC      lib/lockref.o
  CC      drivers/pci/ecam.o
  CC      lib/bcd.o
  CC      lib/sort.o
  AR      drivers/video/fbdev/mmp/built-in.a
  CC      drivers/video/fbdev/gxt4500.o
  CC      lib/parser.o
  CC [M]  drivers/pci/pci-pf-stub.o
  CC      lib/debug_locks.o
  CC      lib/random32.o
  AR      drivers/pci/built-in.a
  CC      net/ipv4/tcp_output.o
  CC      lib/bust_spinlocks.o
  CC      drivers/video/fbdev/omap2/omapfb/dss/omapdss-boot-init.o
  CC [M]  drivers/video/fbdev/omap2/omapfb/dss/core.o
  CC      lib/kasprintf.o
  CC      lib/bitmap.o
  CC [M]  drivers/video/fbdev/omap2/omapfb/dss/dss.o
  CC      lib/scatterlist.o
  CC [M]  drivers/video/fbdev/omap2/omapfb/dss/dss_features.o
  CC [M]  drivers/video/fbdev/omap2/omapfb/displays/encoder-opa362.o
  CC [M]  drivers/video/fbdev/omap2/omapfb/dss/dispc.o
  CC      lib/list_sort.o
  CC [M]  drivers/video/fbdev/omap2/omapfb/displays/encoder-tfp410.o
  CC      lib/uuid.o
  CC      net/ipv4/tcp_timer.o
  CC      lib/iov_iter.o
  CC [M]  drivers/video/fbdev/omap2/omapfb/displays/encoder-tpd12s015.o
  CC [M]  drivers/video/fbdev/omap2/omapfb/displays/connector-hdmi.o
  CC [M]  drivers/video/fbdev/omap2/omapfb/displays/connector-analog-tv.o
  CC      net/ipv4/tcp_ipv4.o
  CC [M]  drivers/video/fbdev/omap2/omapfb/displays/panel-dpi.o
  CC [M]  drivers/video/fbdev/omap2/omapfb/dss/dispc_coefs.o
  CC      lib/clz_ctz.o
  CC [M]  drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.o
  CC      lib/bsearch.o
  CC [M]  drivers/video/fbdev/omap2/omapfb/dss/display.o
  CC      lib/find_bit.o
  CC [M]  drivers/video/fbdev/omap2/omapfb/dss/output.o
  CC      lib/llist.o
  CC [M]  drivers/video/fbdev/omap2/omapfb/displays/panel-sharp-ls037v7dw01.o
  CC      lib/memweight.o
  CC      lib/kfifo.o
  CC [M]  drivers/video/fbdev/omap2/omapfb/dss/dss-of.o
  CC      net/ipv4/tcp_minisocks.o
  CC      lib/percpu-refcount.o
  CC [M]  drivers/video/fbdev/omap2/omapfb/dss/pll.o
  CC [M]  drivers/video/fbdev/omap2/omapfb/dss/video-pll.o
  CC      lib/rhashtable.o
  CC [M]  drivers/video/fbdev/omap2/omapfb/omapfb-main.o
  CC [M]  drivers/video/fbdev/omap2/omapfb/dss/manager.o
  CC      net/ipv4/tcp_cong.o
  CC [M]  drivers/video/fbdev/omap2/omapfb/dss/manager-sysfs.o
  CC [M]  drivers/video/fbdev/omap2/omapfb/dss/overlay.o
  CC      lib/once.o
  CC      lib/refcount.o
  CC [M]  drivers/video/fbdev/omap2/omapfb/dss/overlay-sysfs.o
  CC      lib/usercopy.o
  CC      drivers/video/fbdev/sm712fb.o
  CC      net/ipv4/tcp_metrics.o
  CC      lib/errseq.o
  CC [M]  drivers/video/fbdev/omap2/omapfb/dss/apply.o
  CC      lib/bucket_locks.o
  CC      lib/generic-radix-tree.o
  CC [M]  drivers/video/fbdev/omap2/omapfb/dss/dispc-compat.o
  CC      drivers/video/fbdev/simplefb.o
  CC      lib/string_helpers.o
  CC      net/ipv4/tcp_fastopen.o
  CC [M]  drivers/video/fbdev/omap2/omapfb/dss/display-sysfs.o
  CC      net/ipv4/tcp_rate.o
  CC [M]  drivers/video/fbdev/omap2/omapfb/dss/hdmi_common.o
  CC      lib/hexdump.o
  CC      lib/kstrtox.o
  CC [M]  drivers/video/fbdev/omap2/omapfb/dss/hdmi_wp.o
  CC [M]  drivers/video/fbdev/omap2/omapfb/dss/hdmi_pll.o
  CC      net/ipv4/tcp_recovery.o
  CC      drivers/video/fbdev/hgafb.o
  CC      lib/kunit/test.o
  CC [M]  drivers/video/fbdev/omap2/omapfb/dss/hdmi_phy.o
  CC      lib/kunit/string-stream.o
  CC [M]  drivers/video/fbdev/omap2/omapfb/omapfb-sysfs.o
  CC [M]  drivers/video/fbdev/omap2/omapfb/dss/hdmi4.o
  CC      lib/kunit/assert.o
  CC      net/ipv4/tcp_ulp.o
  CC      lib/kunit/try-catch.o
  AR      lib/kunit/built-in.a
  CC [M]  drivers/video/fbdev/omap2/omapfb/dss/hdmi4_core.o
  CC      lib/math/div64.o
  CC      lib/crypto/chacha.o
  CC      lib/crypto/libchacha.o
  CC      lib/math/gcd.o
  CC      lib/math/lcm.o
  CC      lib/math/int_pow.o
  CC      lib/math/int_sqrt.o
  CC      net/ipv4/tcp_offload.o
  CC      lib/math/reciprocal_div.o
  CC [M]  drivers/video/fbdev/omap2/omapfb/dss/hdmi5.o
  CC      lib/crypto/aes.o
  CC      lib/math/cordic.o
  CC      lib/math/rational.o
  CC [M]  drivers/video/fbdev/omap2/omapfb/dss/hdmi5_core.o
  CC      lib/crypto/arc4.o
  AR      lib/math/built-in.a
  CC      drivers/video/fbdev/goldfishfb.o
  CC      net/ipv4/datagram.o
  CC      lib/crypto/blake2s-generic.o
  CC      net/ipv4/raw.o
  AR      drivers/video/fbdev/omap2/omapfb/dss/built-in.a
  LD [M]  drivers/video/fbdev/omap2/omapfb/dss/omapdss.o
  CC [M]  drivers/video/fbdev/omap2/omapfb/omapfb-ioctl.o
  CC      lib/crypto/blake2s.o
  CC      lib/crypto/curve25519-fiat32.o
  CC      lib/crypto/curve25519.o
  AR      drivers/video/fbdev/omap2/omapfb/built-in.a
  LD [M]  drivers/video/fbdev/omap2/omapfb/omap2fb.o
  AR      drivers/video/fbdev/omap2/built-in.a
  CC      drivers/video/fbdev/cirrusfb.o
  CC      net/ipv4/udp.o
  CC      lib/crypto/des.o
  CC      lib/iomap.o
  CC      lib/crypto/poly1305.o
  CC      lib/crypto/sha256.o
  CC      drivers/video/fbdev/tmiofb.o
  CC      drivers/video/fbdev/metronomefb.o
  CC      arch/x86/lib/msr.o
  CC      lib/crypto/curve25519-generic.o
  CC      lib/crypto/poly1305-donna32.o
  CC [M]  drivers/video/fbdev/pm3fb.o
  AS      arch/x86/lib/msr-reg.o
  CC      arch/x86/lib/msr-reg-export.o
  AR      lib/crypto/built-in.a
  AS      arch/x86/lib/hweight.o
  CC      lib/pci_iomap.o
  CC      net/ipv4/udplite.o
  CC      arch/x86/lib/iomem.o
  CC      arch/x86/lib/atomic64_32.o
  CC      lib/iomap_copy.o
  AS      arch/x86/lib/atomic64_cx8_32.o
  AS      arch/x86/lib/checksum_32.o
  CC      arch/x86/lib/cmdline.o
  CC      lib/devres.o
  CC [M]  drivers/video/fbdev/sstfb.o
  CC      arch/x86/lib/cpu.o
  CC      net/ipv4/udp_offload.o
  CC      arch/x86/lib/delay.o
  CC      lib/check_signature.o
  CC      lib/assoc_array.o
  AS      arch/x86/lib/getuser.o
  GEN     arch/x86/lib/inat-tables.c
  CC      arch/x86/lib/insn-eval.o
  CC [M]  drivers/video/fbdev/ssd1307fb.o
  CC      lib/list_debug.o
  CC      arch/x86/lib/insn.o
  CC      net/ipv4/arp.o
  CC      lib/bitrev.o
  CC      arch/x86/lib/memcpy_32.o
  CC      arch/x86/lib/misc.o
  AS      arch/x86/lib/putuser.o
  CC      lib/crc-ccitt.o
  CC      arch/x86/lib/string_32.o
  CC [M]  drivers/video/fbdev/vfb.o
  CC      arch/x86/lib/strstr_32.o
  CC      arch/x86/lib/usercopy.o
  CC      lib/crc16.o
  HOSTCC  lib/gen_crc32table
  CC      arch/x86/lib/usercopy_32.o
  CC      lib/crc4.o
  CC [M]  drivers/video/fbdev/matrox/matroxfb_base.o
  AS      arch/x86/lib/atomic64_386_32.o
  AS      arch/x86/lib/cmpxchg8b_emu.o
  CC      arch/x86/lib/error-inject.o
  CC      lib/crc7.o
  CC      lib/libcrc32c.o
  AS      arch/x86/lib/retpoline.o
  CC      arch/x86/lib/inat.o
  CC      net/ipv4/icmp.o
  AR      arch/x86/lib/lib.a
  EXPORTS arch/x86/lib/lib-ksyms.o
  AR      arch/x86/lib/built-in.a
  CC      lib/crc8.o
  CC      net/ipv4/devinet.o
  CC      lib/xxhash.o
  CC [M]  drivers/video/fbdev/matrox/matroxfb_accel.o
  CC      lib/genalloc.o
  CC [M]  drivers/video/fbdev/matrox/matroxfb_DAC1064.o
  CC      lib/842/842_compress.o
  CC      lib/zlib_inflate/inffast.o
  CC      lib/zlib_inflate/inflate.o
  CC [M]  drivers/video/fbdev/matrox/matroxfb_Ti3026.o
  CC      net/ipv4/af_inet.o
  CC      lib/zlib_inflate/infutil.o
  CC      lib/842/842_decompress.o
  CC [M]  drivers/video/fbdev/matrox/matroxfb_misc.o
  CC      lib/zlib_inflate/inftrees.o
  CC      lib/zlib_inflate/inflate_syms.o
  AR      lib/842/built-in.a
  AR      lib/zlib_inflate/built-in.a
  CC      drivers/idle/intel_idle.o
  CC      lib/zlib_deflate/deflate.o
  CC [M]  drivers/video/fbdev/matrox/i2c-matroxfb.o
  CC      lib/zlib_deflate/deftree.o
  AR      drivers/idle/built-in.a
  CC      net/ipv4/igmp.o
  CC      net/ipv4/fib_frontend.o
  CC [M]  drivers/video/fbdev/mb862xx/mb862xxfbdrv.o
  CC      lib/zlib_deflate/deflate_syms.o
  AR      lib/zlib_deflate/built-in.a
  CC      lib/lzo/lzo1x_decompress_safe.o
  CC [M]  drivers/video/fbdev/mb862xx/mb862xxfb_accel.o
  CC [M]  lib/lzo/lzo1x_compress.o
  CC      net/ipv4/fib_semantics.o
  CC [M]  drivers/video/fbdev/mb862xx/mb862xx-i2c.o
  AR      lib/lzo/built-in.a
  LD [M]  lib/lzo/lzo_compress.o
  CC      lib/lz4/lz4hc_compress.o
  LD [M]  drivers/video/fbdev/mb862xx/mb862xxfb.o
  CC [M]  drivers/video/fbdev/savage/savagefb_driver.o
  CC      net/ipv6/af_inet6.o
  CC      lib/lz4/lz4_decompress.o
  CC      net/ipv4/fib_trie.o
  CC [M]  drivers/video/fbdev/savage/savagefb_accel.o
  LD [M]  drivers/video/fbdev/savage/savagefb.o
  CC [M]  lib/lz4/lz4_compress.o
  CC      net/ipv6/anycast.o
  CC [M]  drivers/video/fbdev/sis/sis_main.o
  CC      net/ipv6/ip6_output.o
  CC      net/ipv4/fib_notifier.o
  AR      lib/lz4/built-in.a
  CC      lib/zstd/fse_compress.o
  CC      net/ipv4/inet_fragment.o
  CC      lib/zstd/huf_compress.o
  CC      lib/zstd/compress.o
  CC [M]  drivers/video/fbdev/sis/sis_accel.o
  CC      net/ipv6/ip6_input.o
  CC      net/ipv4/ping.o
  CC [M]  drivers/video/fbdev/sis/init.o
  CC      net/ipv6/addrconf.o
  CC      net/ipv4/ip_tunnel_core.o
  CC [M]  drivers/video/fbdev/sis/init301.o
  CC      net/ipv4/gre_offload.o
  CC      net/ipv4/metrics.o
  CC      net/ipv4/netlink.o
  CC      net/ipv6/addrlabel.o
  CC      net/ipv4/nexthop.o
  CC      net/ipv6/route.o
  CC [M]  drivers/video/fbdev/sis/initextlfb.o
  CC      lib/zstd/entropy_common.o
  LD [M]  drivers/video/fbdev/sis/sisfb.o
  CC      lib/zstd/fse_decompress.o
  CC [M]  drivers/video/fbdev/vermilion/vermilion.o
  CC      net/ipv4/ip_tunnel.o
  CC      lib/zstd/zstd_common.o
  CC      lib/zstd/huf_decompress.o
  CC [M]  drivers/video/fbdev/vermilion/cr_pll.o
  LD [M]  drivers/video/fbdev/vermilion/vmlfb.o
  LD [M]  drivers/video/fbdev/vermilion/crvml.o
  CC [M]  drivers/video/fbdev/arcfb.o
  CC      net/ipv4/sysctl_net_ipv4.o
  CC      lib/zstd/decompress.o
  CC [M]  drivers/video/fbdev/arkfb.o
  CC      net/ipv4/proc.o
  CC      net/ipv6/ip6_fib.o
  CC [M]  drivers/video/fbdev/broadsheetfb.o
  AR      lib/zstd/built-in.a
  CC      lib/xz/xz_dec_syms.o
  CC      lib/xz/xz_dec_stream.o
  CC      net/ipv4/fib_rules.o
  CC [M]  drivers/video/fbdev/s3c-fb.o
  CC      lib/xz/xz_dec_lzma2.o
  CC      net/ipv6/ipv6_sockglue.o
  CC      lib/xz/xz_dec_bcj.o
  CC      net/ipv4/fou.o
  CC [M]  drivers/video/fbdev/udlfb.o
  CC      lib/xz/xz_dec_test.o
  AR      lib/xz/built-in.a
  CC      lib/notifier-error-inject.o
  CC      lib/syscall.o
  CC [M]  drivers/video/fbdev/smscufx.o
  CC      net/ipv6/ndisc.o
  CC      lib/dynamic_debug.o
  CC      net/ipv4/udp_tunnel.o
  CC [M]  drivers/video/fbdev/da8xx-fb.o
  CC      net/ipv4/tunnel4.o
  CC      lib/errname.o
  CC      lib/nlattr.o
  AR      drivers/video/fbdev/built-in.a
  CC      net/ipv6/udp.o
  CC      drivers/video/hdmi.o
  CC      net/ipv4/ipconfig.o
  CC      lib/dynamic_queue_limits.o
  CC      drivers/video/display_timing.o
  CC      lib/glob.o
  CC      drivers/video/videomode.o
  CC      drivers/video/of_display_timing.o
  CC      lib/mpi/generic_mpih-lshift.o
  CC      drivers/video/of_videomode.o
  CC      lib/mpi/generic_mpih-mul1.o
  AR      net/ipv4/netfilter/built-in.a
  CC      net/ipv4/inet_diag.o
  AR      drivers/video/built-in.a
  CC      drivers/char/ipmi/ipmb_dev_int.o
  CC      net/ipv6/udplite.o
  CC      lib/mpi/generic_mpih-mul2.o
  CC      lib/mpi/generic_mpih-mul3.o
  CC      drivers/char/ipmi/kcs_bmc.o
  CC      lib/mpi/generic_mpih-rshift.o
  CC      net/ipv4/tcp_diag.o
  CC      net/ipv6/raw.o
  CC      drivers/char/ipmi/bt-bmc.o
  CC      lib/mpi/generic_mpih-sub1.o
  CC      drivers/char/ipmi/kcs_bmc_aspeed.o
  CC      lib/mpi/generic_mpih-add1.o
  CC      net/ipv4/tcp_cubic.o
  CC      drivers/char/ipmi/kcs_bmc_npcm7xx.o
  CC      lib/mpi/mpicoder.o
  AR      drivers/char/ipmi/built-in.a
  CC      net/ipv6/icmp.o
  CC      lib/mpi/mpi-bit.o
  CC      net/ipv4/tcp_bpf.o
  CC      lib/mpi/mpi-cmp.o
  CC      drivers/acpi/tables.o
  CC      lib/mpi/mpih-cmp.o
  CC      drivers/acpi/blacklist.o
  CC      net/ipv6/mcast.o
  CC      lib/mpi/mpih-div.o
  CC      net/ipv4/xfrm4_policy.o
  CC      drivers/acpi/osi.o
  CC      lib/mpi/mpih-mul.o
  CC      drivers/acpi/osl.o
  CC      lib/mpi/mpi-pow.o
  CC      net/ipv4/xfrm4_state.o
  CC      lib/mpi/mpiutil.o
  CC      drivers/acpi/utils.o
  AR      lib/mpi/built-in.a
  CC      lib/strncpy_from_user.o
  CC      net/ipv4/xfrm4_input.o
  CC      net/ipv6/reassembly.o
  CC      lib/strnlen_user.o
  CC      drivers/acpi/reboot.o
  CC      lib/net_utils.o
  CC      net/ipv4/xfrm4_output.o
  CC      drivers/acpi/nvs.o
  CC      lib/irq_poll.o
  CC      net/ipv6/tcp_ipv6.o
  CC      lib/stackdepot.o
  CC      drivers/acpi/wakeup.o
  CC      net/ipv4/xfrm4_protocol.o
  CC      drivers/acpi/sleep.o
  CC      drivers/acpi/device_sysfs.o
  CC      net/ipv4/netfilter.o
  CC      net/ipv6/ping.o
  CC      drivers/acpi/device_pm.o
  CC      lib/asn1_decoder.o
  CC      net/ipv4/bpf_tcp_ca.o
  CC      lib/fonts/fonts.o
  CC      net/ipv6/exthdrs.o
  CC      drivers/acpi/bus.o
  CC      lib/fonts/font_8x16.o
  AR      net/ipv4/built-in.a
  CC      drivers/acpi/glue.o
  AR      lib/fonts/built-in.a
  CC      lib/oid_registry.o
  CC      lib/ucs2_string.o
  CC      drivers/acpi/scan.o
  CC      net/appletalk/aarp.o
  CC      net/ipv6/datagram.o
  CC      lib/sbitmap.o
  CC      lib/argv_split.o
  CC      drivers/acpi/resource.o
  CC      net/appletalk/ddp.o
  CC      net/ipv6/ip6_flowlabel.o
  CC      lib/bug.o
  CC      drivers/acpi/acpi_processor.o
  CC      lib/cmdline.o
  CC      net/ipv6/inet6_connection_sock.o
  CC      drivers/acpi/processor_core.o
  CC      net/appletalk/dev.o
  CC      lib/ctype.o
  CC      lib/dec_and_lock.o
  CC      lib/decompress.o
  CC      drivers/acpi/processor_pdc.o
  CC      lib/decompress_bunzip2.o
  CC      net/appletalk/atalk_proc.o
  CC      net/ipv6/udp_offload.o
  CC      drivers/acpi/ec.o
  CC      lib/decompress_inflate.o
  CC      net/appletalk/sysctl_net_atalk.o
  CC      net/ipv6/seg6.o
  CC      lib/decompress_unlzma.o
  CC      drivers/acpi/pci_root.o
  CC      lib/decompress_unlzo.o
  AR      net/appletalk/built-in.a
  CC      lib/decompress_unxz.o
  CC      net/ipv6/fib6_notifier.o
  CC      drivers/acpi/pci_link.o
  CC      lib/dump_stack.o
  CC      lib/earlycpio.o
  CC      drivers/sfi/sfi_acpi.o
  CC      lib/extable.o
  CC      drivers/acpi/pci_irq.o
  CC      drivers/sfi/sfi_core.o
  CC      net/ipv6/sysctl_net_ipv6.o
  CC      lib/fdt.o
  CC      lib/fdt_empty_tree.o
  CC      lib/fdt_ro.o
  CC      drivers/acpi/acpi_lpss.o
  AR      drivers/sfi/built-in.a
  CC      lib/fdt_rw.o
  CC      lib/fdt_strerror.o
  CC      net/ipv6/xfrm6_policy.o
  CC      lib/fdt_sw.o
  CC      drivers/pnp/core.o
  CC      lib/fdt_wip.o
  CC      drivers/acpi/acpi_apd.o
  CC      lib/flex_proportions.o
  CC      lib/idr.o
  CC      drivers/pnp/card.o
  CC      drivers/acpi/acpi_platform.o
  CC      net/ipv6/xfrm6_state.o
  CC      lib/ioremap.o
  CC      drivers/pnp/driver.o
  CC      drivers/acpi/acpi_pnp.o
  CC      drivers/pnp/resource.o
  CC      lib/irq_regs.o
  CC      lib/is_single_threaded.o
  CC      drivers/acpi/power.o
  CC      net/ipv6/xfrm6_input.o
  CC      lib/klist.o
  CC      drivers/pnp/manager.o
  CC      lib/kobject.o
  CC      drivers/acpi/event.o
  CC      drivers/pnp/support.o
  CC      net/ipv6/xfrm6_output.o
  CC      lib/kobject_uevent.o
  CC      drivers/pnp/interface.o
  CC      drivers/acpi/evged.o
  CC      drivers/pnp/quirks.o
  CC      drivers/acpi/sysfs.o
  CC      net/ipv6/xfrm6_protocol.o
  CC      lib/logic_pio.o
  CC      drivers/pnp/system.o
  CC      drivers/acpi/property.o
  CC      lib/memcat_p.o
  CC      drivers/pnp/pnpacpi/core.o
  CC      lib/nmi_backtrace.o
  CC      net/ipv6/fib6_rules.o
  CC      drivers/acpi/acpi_cmos_rtc.o
  CC      drivers/pnp/pnpacpi/rsparser.o
  CC      lib/nodemask.o
  CC      lib/plist.o
  CC      drivers/acpi/x86/apple.o
  CC      lib/radix-tree.o
  CC      net/ipv6/proc.o
  AR      drivers/pnp/pnpacpi/built-in.a
  CC      drivers/acpi/x86/utils.o
  CC      drivers/pnp/isapnp/core.o
  CC      lib/ratelimit.o
  CC      lib/rbtree.o
  CC      drivers/acpi/debugfs.o
  CC      net/ipv6/seg6_iptunnel.o
  CC      drivers/pnp/isapnp/compat.o
  CC      lib/seq_buf.o
  CC      drivers/acpi/acpi_lpat.o
  CC      drivers/pnp/isapnp/proc.o
  CC      lib/sha1.o
  CC      lib/show_mem.o
  CC      net/ipv6/seg6_local.o
  CC      lib/siphash.o
  AR      drivers/pnp/isapnp/built-in.a
  AR      drivers/pnp/built-in.a
  CC      net/ipv6/tunnel6.o
  CC      lib/string.o
  CC      lib/timerqueue.o
  AR      net/ipv6/netfilter/built-in.a
  CC      net/ipv6/sit.o
  CC      lib/vsprintf.o
  CC      lib/win_minmax.o
  CC      drivers/clk/clk-devres.o
  CC      drivers/acpi/acpica/dsargs.o
  CC      drivers/clk/clk-bulk.o
  CC      drivers/acpi/acpica/dscontrol.o
  CC      net/ipv6/ip6_tunnel.o
  CC      drivers/clk/clkdev.o
  CC      drivers/acpi/acpica/dsdebug.o
  CC      lib/xarray.o
  CC      drivers/acpi/acpica/dsfield.o
  CC      drivers/clk/clk.o
  CC      drivers/acpi/acpica/dsinit.o
  CC      drivers/acpi/acpica/dsmethod.o
  CC      lib/clz_tab.o
  CC      lib/fdt_addresses.o
  CC      drivers/acpi/acpica/dsmthdat.o
  CC      lib/crc32test.o
  CC      drivers/acpi/acpica/dsobject.o
  CC      net/ipv6/fou6.o
  CC      lib/error-inject.o
  CC      drivers/acpi/acpica/dsopcode.o
  CC      lib/stmp_device.o
  CC      drivers/acpi/acpica/dspkginit.o
  CC [M]  lib/test_bpf.o
  CC      net/ipv6/addrconf_core.o
  CC      drivers/acpi/acpica/dsutils.o
  CC      drivers/clk/clk-divider.o
  CC      drivers/acpi/acpica/dswexec.o
  CC      drivers/clk/clk-fixed-factor.o
  CC      drivers/acpi/acpica/dswload.o
  CC      net/ipv6/exthdrs_core.o
  CC [M]  lib/test_firmware.o
  CC      drivers/clk/clk-fixed-rate.o
  CC      drivers/acpi/acpica/dswload2.o
  CC      drivers/clk/clk-gate.o
  CC      drivers/acpi/acpica/dswscope.o
  CC [M]  lib/test_sysctl.o
  CC      net/ipv6/ip6_checksum.o
  CC      drivers/acpi/acpica/dswstate.o
  CC      drivers/clk/clk-multiplier.o
  CC [M]  lib/test_module.o
  CC      drivers/clk/clk-mux.o
  CC [M]  lib/test_vmalloc.o
  CC      drivers/acpi/acpica/evevent.o
  CC      drivers/acpi/acpica/evgpe.o
  CC      drivers/clk/clk-composite.o
  CC      net/ipv6/ip6_icmp.o
  CC [M]  lib/test_user_copy.o
  CC      drivers/acpi/acpica/evgpeblk.o
  CC      drivers/clk/clk-fractional-divider.o
  CC      drivers/acpi/acpica/evgpeinit.o
  CC [M]  lib/test_static_keys.o
  CC      drivers/clk/clk-gpio.o
  CC      drivers/acpi/acpica/evgpeutil.o
  CC      net/ipv6/output_core.o
  CC [M]  lib/test_static_key_base.o
  CC      drivers/clk/clk-conf.o
  CC [M]  lib/test_printf.o
  CC      drivers/acpi/acpica/evglock.o
  CC      drivers/acpi/acpica/evhandler.o
  CC      drivers/clk/clk-fixed-mmio.o
  CC [M]  lib/test_bitmap.o
  CC      drivers/acpi/acpica/evmisc.o
  CC      net/ipv6/protocol.o
  CC      drivers/clk/clk-si544.o
  CC [M]  lib/test_strscpy.o
  CC      drivers/acpi/acpica/evregion.o
  CC [M]  lib/test_kmod.o
  CC      drivers/clk/actions/owl-common.o
  CC      drivers/acpi/acpica/evrgnini.o
  CC      net/ipv6/ip6_offload.o
  CC      drivers/clk/actions/owl-gate.o
  CC      drivers/acpi/acpica/evsci.o
  CC [M]  lib/test_blackhole_dev.o
  CC      drivers/clk/actions/owl-mux.o
  CC      drivers/acpi/acpica/evxface.o
  CC      drivers/clk/actions/owl-divider.o
  CC      drivers/clk/actions/owl-factor.o
  CC      drivers/acpi/acpica/evxfevnt.o
  CC [M]  lib/crc-itu-t.o
  CC      net/ipv6/tcpv6_offload.o
  CC      drivers/acpi/acpica/evxfgpe.o
  CC      drivers/clk/actions/owl-composite.o
  CC [M]  lib/raid6/algos.o
  CC      drivers/clk/actions/owl-pll.o
  CC      drivers/acpi/acpica/evxfregn.o
  CC      net/ipv6/exthdrs_offload.o
  CC      drivers/acpi/acpica/exconcat.o
  CC      drivers/clk/actions/owl-reset.o
  CC [M]  lib/raid6/recov.o
  AR      drivers/clk/actions/built-in.a
  CC      drivers/clk/analogbits/wrpll-cln28hpc.o
  CC      drivers/acpi/acpica/exconfig.o
  AR      drivers/clk/analogbits/built-in.a
  CC      drivers/acpi/acpica/exconvrt.o
  HOSTCC  lib/raid6/mktables
  CC      net/ipv6/inet6_hashtables.o
  UNROLL  lib/raid6/int1.c
  CC      drivers/clk/bcm/clk-iproc-armpll.o
  CC      drivers/acpi/acpica/excreate.o
  UNROLL  lib/raid6/int2.c
  UNROLL  lib/raid6/int4.c
  UNROLL  lib/raid6/int8.c
  UNROLL  lib/raid6/int16.c
  UNROLL  lib/raid6/int32.c
  CC [M]  lib/raid6/recov_ssse3.o
  CC      drivers/acpi/acpica/exdebug.o
  CC      drivers/clk/bcm/clk-iproc-pll.o
  CC [M]  lib/raid6/recov_avx2.o
  CC      drivers/acpi/acpica/exdump.o
  CC      net/ipv6/ip6_udp_tunnel.o
  CC      drivers/clk/bcm/clk-iproc-asiu.o
  CC      drivers/acpi/acpica/exfield.o
  CC [M]  lib/raid6/mmx.o
  CC      drivers/clk/bcm/clk-bcm2835.o
  CC      drivers/acpi/acpica/exfldio.o
  CC [M]  lib/raid6/sse1.o
  CC      net/ipv6/mcast_snoop.o
  CC      drivers/acpi/acpica/exmisc.o
  CC      drivers/clk/bcm/clk-bcm2835-aux.o
  CC      drivers/acpi/acpica/exmutex.o
  CC [M]  lib/raid6/sse2.o
  CC      drivers/clk/bcm/clk-raspberrypi.o
  CC      drivers/acpi/acpica/exnames.o
  CC      drivers/clk/bcm/clk-cygnus.o
  CC [M]  lib/raid6/avx2.o
  CC      net/ipv6/netfilter.o
  CC      drivers/acpi/acpica/exoparg1.o
  CC      drivers/clk/bcm/clk-hr2.o
  CC      drivers/clk/bcm/clk-nsp.o
  CC [M]  lib/raid6/avx512.o
  CC      drivers/acpi/acpica/exoparg2.o
  CC      drivers/clk/bcm/clk-ns2.o
  CC      drivers/acpi/acpica/exoparg3.o
  AR      net/ipv6/built-in.a
  CC [M]  lib/raid6/recov_avx512.o
  AR      drivers/clk/bcm/built-in.a
  CC      net/strparser/strparser.o
  CC      drivers/clk/ingenic/cgu.o
  CC      drivers/acpi/acpica/exoparg6.o
  TABLE   lib/raid6/tables.c
  CC      drivers/acpi/acpica/exprep.o
  CC [M]  lib/raid6/int1.o
  CC      drivers/clk/ingenic/pm.o
  CC      drivers/acpi/acpica/exregion.o
  CC      drivers/clk/ingenic/jz4740-cgu.o
  CC [M]  lib/raid6/int2.o
  AR      net/strparser/built-in.a
  AR      net/decnet/netfilter/built-in.a
  CC      drivers/acpi/acpica/exresnte.o
  CC      net/decnet/af_decnet.o
  CC      drivers/clk/ingenic/jz4780-cgu.o
  CC      drivers/acpi/acpica/exresolv.o
  CC [M]  lib/raid6/int4.o
  CC      drivers/clk/ingenic/x1000-cgu.o
  AR      drivers/clk/ingenic/built-in.a
  CC      drivers/clk/mediatek/clk-mtk.o
  CC      drivers/acpi/acpica/exresop.o
  CC [M]  lib/raid6/int8.o
  CC      drivers/acpi/acpica/exserial.o
  CC      drivers/clk/mediatek/clk-pll.o
  CC      drivers/acpi/acpica/exstore.o
  CC      drivers/clk/mediatek/clk-gate.o
  CC [M]  lib/raid6/int16.o
  CC      drivers/clk/mediatek/clk-apmixed.o
  CC      drivers/acpi/acpica/exstoren.o
  CC      net/decnet/dn_nsp_in.o
  CC [M]  lib/raid6/int32.o
  CC      drivers/clk/mediatek/clk-cpumux.o
  CC      drivers/acpi/acpica/exstorob.o
  CC      drivers/clk/mediatek/reset.o
  CC      drivers/acpi/acpica/exsystem.o
  CC [M]  lib/raid6/tables.o
  CC      drivers/acpi/acpica/extrace.o
  CC      drivers/clk/mediatek/clk-mux.o
  CC      net/decnet/dn_nsp_out.o
  CC      drivers/acpi/acpica/exutils.o
  CC      drivers/clk/mediatek/clk-mt6797.o
  LD [M]  lib/raid6/raid6_pq.o
  CC [M]  lib/reed_solomon/reed_solomon.o
  CC      drivers/acpi/acpica/hwacpi.o
  CC      drivers/clk/mediatek/clk-mt6797-mm.o
  CC      drivers/acpi/acpica/hwesleep.o
  CC      drivers/clk/mediatek/clk-mt2712.o
  CC      net/decnet/dn_route.o
  CC      drivers/acpi/acpica/hwgpe.o
  HOSTCC  lib/gen_crc64table
  CC      drivers/clk/mediatek/clk-mt2712-bdp.o
  CC      drivers/acpi/acpica/hwregs.o
  CC      drivers/clk/mediatek/clk-mt2712-jpgdec.o
  CC [M]  lib/pm-notifier-error-inject.o
  CC      drivers/clk/mediatek/clk-mt2712-mfg.o
  CC      drivers/acpi/acpica/hwsleep.o
  CC      drivers/clk/mediatek/clk-mt7622.o
  CC [M]  lib/netdev-notifier-error-inject.o
  CC      drivers/acpi/acpica/hwvalid.o
  CC      drivers/clk/mediatek/clk-mt7622-hif.o
  CC      drivers/acpi/acpica/hwxface.o
  CC      drivers/clk/mediatek/clk-mt7622-aud.o
  CC [M]  lib/of-reconfig-notifier-error-inject.o
  CC      net/decnet/dn_dev.o
  CC      drivers/acpi/acpica/hwxfsleep.o
  CC      drivers/clk/mediatek/clk-mt8135.o
  CC [M]  lib/parman.o
  CC      drivers/acpi/acpica/hwpci.o
  CC      drivers/clk/mediatek/clk-mt8173.o
  CC [M]  lib/objagg.o
  CC      drivers/acpi/acpica/nsaccess.o
  CC      drivers/clk/mediatek/clk-mt8183.o
  CC      drivers/acpi/acpica/nsalloc.o
  CC      drivers/clk/mediatek/clk-mt8183-venc.o
  CC      net/decnet/dn_neigh.o
  CC      drivers/acpi/acpica/nsarguments.o
  AR      drivers/clk/mediatek/built-in.a
  CC      drivers/clk/sifive/fu540-prci.o
  CC      drivers/acpi/acpica/nsconvert.o
  AR      drivers/clk/sifive/built-in.a
  CC      drivers/acpi/acpica/nsdump.o
  CC      drivers/clk/uniphier/clk-uniphier-core.o
  GEN     lib/crc64table.h
  GEN     lib/crc32table.h
  AR      lib/lib.a
  CC [M]  lib/crc64.o
  CC      net/decnet/dn_timer.o
  CC      drivers/acpi/acpica/nseval.o
  CC      drivers/clk/uniphier/clk-uniphier-cpugear.o
  CC      lib/crc32.o
  CC      drivers/clk/uniphier/clk-uniphier-fixed-factor.o
  CC      drivers/acpi/acpica/nsinit.o
  CC      drivers/clk/uniphier/clk-uniphier-fixed-rate.o
  CC      net/decnet/dn_fib.o
  EXPORTS lib/lib-ksyms.o
  AR      lib/built-in.a
  CC      drivers/acpi/acpica/nsload.o
  CC      net/8021q/vlan_core.o
  CC      drivers/clk/uniphier/clk-uniphier-gate.o
  CC      drivers/acpi/acpica/nsnames.o
  CC      drivers/clk/uniphier/clk-uniphier-mux.o
  CC      drivers/acpi/acpica/nsobject.o
  CC      drivers/clk/uniphier/clk-uniphier-sys.o
  CC      drivers/clk/uniphier/clk-uniphier-mio.o
  CC      drivers/clk/uniphier/clk-uniphier-peri.o
  AR      drivers/clk/uniphier/built-in.a
  CC [M]  net/8021q/vlan.o
  CC      drivers/acpi/acpica/nsparse.o
  CC      net/decnet/dn_rules.o
  CC      drivers/clk/x86/clk-pmc-atom.o
  CC      drivers/acpi/acpica/nspredef.o
  CC      drivers/clk/x86/clk-st.o
  CC      drivers/acpi/acpica/nsprepkg.o
  AR      drivers/clk/x86/built-in.a
  CC      drivers/clk/clk-axi-clkgen.o
  CC [M]  net/8021q/vlan_dev.o
  CC      net/decnet/dn_table.o
  CC      drivers/acpi/acpica/nsrepair.o
  CC      drivers/clk/clk-bd718x7.o
  CC      drivers/acpi/acpica/nsrepair2.o
  CC [M]  net/8021q/vlan_netlink.o
  CC      drivers/clk/clk-cdce706.o
  CC      drivers/acpi/acpica/nssearch.o
  CC      net/decnet/sysctl_net_decnet.o
  CC      drivers/acpi/acpica/nsutils.o
  CC      drivers/clk/clk-max9485.o
  CC [M]  net/8021q/vlan_gvrp.o
  CC      drivers/acpi/acpica/nswalk.o
  CC      drivers/acpi/acpica/nsxfeval.o
  CC      drivers/clk/clk-oxnas.o
  AR      net/decnet/built-in.a
  CC [M]  net/8021q/vlanproc.o
  CC      drivers/dma/dmaengine.o
  CC      drivers/clk/clk-qoriq.o
  CC      drivers/acpi/acpica/nsxfname.o
  CC      drivers/acpi/acpica/nsxfobj.o
  AR      net/8021q/built-in.a
  LD [M]  net/8021q/8021q.o
  CC      drivers/clk/clk-hi655x.o
  CC      drivers/acpi/acpica/psargs.o
  CC      net/9p/mod.o
  CC      drivers/dma/virt-dma.o
  CC      drivers/clk/clk-xgene.o
  CC      net/9p/client.o
  CC      drivers/acpi/acpica/psloop.o
  CC      drivers/dma/acpi-dma.o
  CC [M]  drivers/clk/clk-si5351.o
  CC      drivers/acpi/acpica/psobject.o
  CC      drivers/acpi/acpica/psopcode.o
  CC      drivers/dma/of-dma.o
  CC      drivers/acpi/acpica/psopinfo.o
  CC      drivers/acpi/acpica/psparse.o
  CC      drivers/dma/dw-axi-dmac/dw-axi-dmac-platform.o
  CC [M]  drivers/clk/clk-si570.o
  CC      drivers/acpi/acpica/psscope.o
  CC      net/9p/error.o
  CC [M]  drivers/clk/clk-versaclock5.o
  CC      drivers/acpi/acpica/pstree.o
  CC      net/9p/protocol.o
  AR      drivers/dma/dw-axi-dmac/built-in.a
  CC      drivers/dma/sh/shdma-base.o
  CC      drivers/acpi/acpica/psutils.o
  CC      drivers/acpi/acpica/pswalk.o
  CC [M]  drivers/clk/clk-pwm.o
  CC      net/9p/trans_fd.o
  CC      drivers/acpi/acpica/psxface.o
  CC [M]  drivers/clk/clk-rk808.o
  CC      drivers/dma/sh/shdma-of.o
  CC      drivers/acpi/acpica/rsaddr.o
  CC      drivers/acpi/acpica/rscalc.o
  CC [M]  drivers/clk/clk-s2mps11.o
  CC      drivers/dma/sh/shdmac.o
  CC      drivers/acpi/acpica/rscreate.o
  CC      net/9p/trans_common.o
  CC [M]  drivers/clk/clk-scmi.o
  CC      drivers/acpi/acpica/rsdumpinfo.o
  CC      net/9p/trans_virtio.o
  CC [M]  drivers/clk/clk-scpi.o
  CC      drivers/dma/sh/rcar-dmac.o
  CC      drivers/acpi/acpica/rsinfo.o
  AR      drivers/clk/built-in.a
  CC      drivers/acpi/acpica/rsio.o
  CC      drivers/dma/mediatek/mtk-hsdma.o
  CC      drivers/acpi/acpica/rsirq.o
  CC      drivers/acpi/acpica/rslist.o
  AR      net/9p/built-in.a
  AR      drivers/dma/sh/built-in.a
  CC      drivers/acpi/acpica/rsmemory.o
  CC      net/caif/caif_dev.o
  CC [M]  drivers/dma/mediatek/mtk-cqdma.o
  CC      drivers/acpi/acpica/rsmisc.o
  AR      drivers/soc/aspeed/built-in.a
  CC [M]  drivers/soc/aspeed/aspeed-lpc-ctrl.o
  CC      drivers/acpi/acpica/rsserial.o
  CC [M]  drivers/soc/aspeed/aspeed-lpc-snoop.o
  AR      drivers/dma/mediatek/built-in.a
  CC      drivers/dma/qcom/hidma_ll.o
  CC      drivers/acpi/acpica/rsutils.o
  CC      net/caif/cfcnfg.o
  CC [M]  drivers/soc/aspeed/aspeed-p2a-ctrl.o
  CC      drivers/acpi/acpica/rsxface.o
  CC      drivers/dma/qcom/hidma.o
  CC      drivers/acpi/acpica/tbdata.o
  CC      drivers/soc/bcm/brcmstb/common.o
  CC      net/caif/cfmuxl.o
  CC      drivers/acpi/acpica/tbfadt.o
  CC      drivers/soc/bcm/brcmstb/biuctrl.o
  CC      drivers/dma/qcom/hidma_dbg.o
  CC      drivers/acpi/acpica/tbfind.o
  AR      drivers/soc/bcm/brcmstb/built-in.a
  CC      drivers/soc/bcm/bcm2835-power.o
  CC      drivers/acpi/acpica/tbinstal.o
  CC      net/caif/cfctrl.o
  CC      drivers/dma/qcom/hidma_mgmt.o
  CC      drivers/acpi/acpica/tbprint.o
  AR      drivers/soc/bcm/built-in.a
  CC      drivers/soc/fsl/dpaa2-console.o
  CC      net/caif/cffrml.o
  CC      drivers/dma/qcom/hidma_mgmt_sys.o
  CC      drivers/acpi/acpica/tbutils.o
  AR      drivers/soc/fsl/built-in.a
  CC      drivers/soc/mediatek/mtk-infracfg.o
  CC      drivers/acpi/acpica/tbxface.o
  AR      drivers/dma/qcom/built-in.a
  CC      drivers/dma/ti/omap-dma.o
  CC      drivers/soc/mediatek/mtk-pmic-wrap.o
  CC      net/caif/cfveil.o
  CC      drivers/acpi/acpica/tbxfload.o
  CC      net/caif/cfdbgl.o
  CC      drivers/acpi/acpica/tbxfroot.o
  CC      net/caif/cfserl.o
  CC      drivers/dma/ti/dma-crossbar.o
  CC      drivers/soc/mediatek/mtk-scpsys.o
  CC      net/caif/cfdgml.o
  CC      drivers/acpi/acpica/utaddress.o
  CC      net/caif/cfrfml.o
  AR      drivers/soc/mediatek/built-in.a
  CC      drivers/acpi/acpica/utalloc.o
  CC [M]  drivers/dma/ti/edma.o
  CC      drivers/soc/amlogic/meson-mx-socinfo.o
  CC      net/caif/cfvidl.o
  CC      drivers/acpi/acpica/utascii.o
  CC [M]  drivers/soc/amlogic/meson-canvas.o
  CC      net/caif/cfutill.o
  CC      drivers/acpi/acpica/utbuffer.o
  AR      drivers/soc/amlogic/built-in.a
  CC      drivers/soc/qcom/qcom_aoss.o
  CC      net/caif/cfsrvl.o
  CC      drivers/acpi/acpica/utcopy.o
  AR      drivers/dma/ti/built-in.a
  CC      drivers/soc/qcom/wcnss_ctrl.o
  CC      drivers/acpi/acpica/utexcep.o
  CC      drivers/dma/dmatest.o
  CC      net/caif/cfpkt_skbuff.o
  CC      drivers/acpi/acpica/utdebug.o
  CC [M]  drivers/soc/qcom/qmi_encdec.o
  CC      drivers/acpi/acpica/utdecode.o
  CC      net/caif/chnl_net.o
  CC      drivers/acpi/acpica/utdelete.o
  CC      drivers/dma/dma-axi-dmac.o
  CC [M]  drivers/soc/qcom/qmi_interface.o
  CC      drivers/acpi/acpica/uterror.o
  CC      drivers/acpi/acpica/uteval.o
  CC      net/caif/caif_socket.o
  CC      drivers/dma/img-mdc-dma.o
  CC      drivers/acpi/acpica/utglobal.o
  CC [M]  drivers/soc/qcom/smd-rpm.o
  CC      drivers/acpi/acpica/uthex.o
  CC      drivers/acpi/acpica/utids.o
  CC [M]  drivers/soc/qcom/llcc-qcom.o
  CC      drivers/dma/k3dma.o
  CC      net/caif/caif_usb.o
  CC      drivers/acpi/acpica/utinit.o
  LD [M]  drivers/soc/qcom/qmi_helpers.o
  AR      drivers/soc/qcom/built-in.a
  CC      drivers/soc/renesas/renesas-soc.o
  CC      drivers/acpi/acpica/utlock.o
  CC      drivers/soc/renesas/r8a7743-sysc.o
  AR      net/caif/built-in.a
  CC      net/sysctl_net.o
  CC      drivers/soc/renesas/r8a77470-sysc.o
  CC      drivers/acpi/acpica/utmath.o
  CC      drivers/dma/milbeaut-xdmac.o
  CC      drivers/soc/renesas/r8a774a1-sysc.o
  CC      drivers/soc/renesas/r8a7779-sysc.o
  CC      drivers/soc/renesas/r8a7791-sysc.o
  CC      drivers/soc/renesas/r8a7794-sysc.o
  CC      drivers/acpi/acpica/utmisc.o
  CC      drivers/soc/renesas/r8a7795-sysc.o
  CC      drivers/dma/mmp_pdma.o
  CC      drivers/soc/renesas/r8a77995-sysc.o
  CC      drivers/acpi/acpica/utmutex.o
  CC      drivers/soc/renesas/rcar-rst.o
  CC      net/ife/ife.o
  CC      drivers/soc/renesas/rcar-sysc.o
  CC      drivers/acpi/acpica/utnonansi.o
  CC      drivers/acpi/acpica/utobject.o
  CC      drivers/soc/renesas/rmobile-sysc.o
  CC      drivers/dma/mmp_tdma.o
  AR      net/ife/built-in.a
  CC      drivers/acpi/acpica/utosi.o
  CC      net/hsr/hsr_main.o
  AR      drivers/soc/renesas/built-in.a
  CC      drivers/acpi/acpica/utownerid.o
  AR      drivers/soc/xilinx/built-in.a
  CC [M]  drivers/soc/xilinx/xlnx_vcu.o
  CC      drivers/dma/mxs-dma.o
  CC      drivers/acpi/acpica/utpredef.o
  CC      net/hsr/hsr_framereg.o
  AR      drivers/soc/built-in.a
  CC      drivers/acpi/acpica/utresdecode.o
  CC      drivers/dma/nbpfaxi.o
  CC      net/hsr/hsr_device.o
  CC      drivers/acpi/acpica/utresrc.o
  CC      drivers/acpi/acpica/utstate.o
  CC      drivers/dma/stm32-dma.o
  CC      drivers/acpi/acpica/utstring.o
  CC      net/hsr/hsr_netlink.o
  CC      net/hsr/hsr_slave.o
  CC      drivers/acpi/acpica/utstrsuppt.o
  CC      drivers/acpi/acpica/utstrtoul64.o
  CC      drivers/dma/stm32-dmamux.o
  CC      net/hsr/hsr_forward.o
  CC      drivers/acpi/acpica/utxface.o
  CC      net/l3mdev/l3mdev.o
  CC      drivers/dma/s3c24xx-dma.o
  CC      drivers/acpi/acpica/utxfinit.o
  CC      drivers/acpi/acpica/utxferror.o
  AR      net/l3mdev/built-in.a
  CC      drivers/dma/xgene-dma.o
  CC      net/hsr/hsr_debugfs.o
  CC      drivers/acpi/acpica/utxfmutex.o
  AR      drivers/acpi/acpica/built-in.a
  CC      drivers/acpi/processor_driver.o
  CC [M]  net/atm/addr.o
  AR      net/hsr/built-in.a
  CC [M]  net/dns_resolver/dns_key.o
  CC      drivers/acpi/processor_idle.o
  CC      drivers/dma/zx_dma.o
  CC [M]  net/dns_resolver/dns_query.o
  CC [M]  net/atm/pvc.o
  CC      drivers/acpi/processor_throttling.o
  LD [M]  net/dns_resolver/dns_resolver.o
  CC [M]  net/atm/signaling.o
  CC [M]  drivers/dma/fsl-edma.o
  CC      drivers/acpi/processor_thermal.o
  CC      drivers/acpi/processor_perflib.o
  CC [M]  drivers/dma/fsl-edma-common.o
  CC [M]  net/atm/svc.o
  CC [M]  net/atm/ioctl.o
  CC      drivers/acpi/container.o
  CC [M]  drivers/dma/timb_dma.o
  CC      drivers/acpi/acpi_memhotplug.o
  CC [M]  net/atm/common.o
  CC [M]  net/nfc/hci/core.o
  CC      drivers/acpi/ioapic.o
  CC [M]  drivers/dma/iop-adma.o
  CC      drivers/acpi/sbshc.o
  CC [M]  net/nfc/hci/hcp.o
  CC [M]  net/atm/atm_misc.o
  CC [M]  drivers/dma/plx_dma.o
  CC [M]  net/nfc/hci/command.o
  CC      drivers/acpi/sbs.o
  CC [M]  drivers/dma/sprd-dma.o
  CC [M]  net/atm/raw.o
  CC [M]  net/nfc/hci/llc.o
  CC      drivers/acpi/spcr.o
  CC [M]  net/nfc/hci/llc_nop.o
  CC [M]  drivers/dma/tegra210-adma.o
  CC [M]  net/atm/resources.o
  CC [M]  net/nfc/hci/llc_shdlc.o
  CC      drivers/acpi/apei/apei-base.o
  AR      drivers/dma/built-in.a
  CC      drivers/acpi/dptf/int340x_thermal.o
  LD [M]  net/nfc/hci/hci.o
  CC [M]  net/nfc/nci/core.o
  CC      drivers/acpi/apei/hest.o
  AR      drivers/acpi/dptf/built-in.a
  CC [M]  net/atm/atm_sysfs.o
  CC [M]  net/nfc/nci/data.o
  CC      drivers/acpi/apei/erst.o
  CC [M]  net/atm/proc.o
  CC [M]  net/atm/lec.o
  CC      drivers/acpi/apei/bert.o
  CC [M]  net/nfc/nci/lib.o
  CC      drivers/acpi/apei/einj.o
  CC [M]  drivers/acpi/apei/erst-dbg.o
  CC [M]  net/nfc/nci/ntf.o
  CC [M]  net/nfc/nci/rsp.o
  AR      drivers/acpi/apei/built-in.a
  CC      drivers/acpi/proc.o
  LD [M]  net/atm/atm.o
  CC      drivers/acpi/fan.o
  CC [M]  net/nsh/nsh.o
  CC [M]  net/phonet/pn_dev.o
  CC [M]  net/nfc/nci/hci.o
  CC      drivers/acpi/acpi_tad.o
  CC [M]  net/nfc/nci/uart.o
  CC      drivers/acpi/pci_slot.o
  CC      drivers/acpi/hed.o
  CC [M]  net/phonet/pn_netlink.o
  LD [M]  net/nfc/nci/nci.o
  LD [M]  net/nfc/nci/nci_uart.o
  CC [M]  net/nfc/core.o
  CC [M]  net/nfc/netlink.o
  CC [M]  drivers/acpi/ac.o
  CC [M]  drivers/acpi/acpi_pad.o
  CC [M]  net/phonet/socket.o
  CC [M]  drivers/acpi/acpi_video.o
  CC [M]  drivers/acpi/video_detect.o
  CC [M]  net/nfc/af_nfc.o
  AR      net/built-in.a
  CC [M]  net/phonet/datagram.o
  CC [M]  drivers/acpi/battery.o
  CC [M]  net/nfc/rawsock.o
  CC [M]  net/nfc/llcp_core.o
  CC [M]  net/phonet/sysctl.o
  CC [M]  drivers/acpi/ec_sys.o
  CC [M]  net/phonet/af_phonet.o
  LD [M]  drivers/acpi/video.o
  AR      drivers/acpi/built-in.a
  CC [M]  net/phonet/pep.o
  CC      drivers/virtio/virtio.o
  CC [M]  net/nfc/llcp_commands.o
  CC      drivers/virtio/virtio_ring.o
  CC      drivers/regulator/core.o
  CC [M]  net/phonet/pep-gprs.o
  CC [M]  net/nfc/llcp_sock.o
  AR      drivers/virtio/built-in.a
  CC      drivers/reset/core.o
  LD [M]  net/phonet/phonet.o
  LD [M]  net/phonet/pn_pep.o
  CC      drivers/tty/tty_io.o
  CC      drivers/reset/hisilicon/reset-hi3660.o
  LD [M]  net/nfc/nfc.o
  CC      drivers/tty/n_tty.o
  AR      drivers/reset/hisilicon/built-in.a
  CC      drivers/reset/reset-ath79.o
  CC      drivers/reset/reset-axs10x.o
  CC      drivers/reset/reset-berlin.o
  CC      drivers/tty/tty_ioctl.o
  CC      drivers/char/mem.o
  CC      drivers/regulator/dummy.o
  CC      drivers/reset/reset-hsdk.o
  CC      drivers/regulator/fixed-helper.o
  CC      drivers/reset/reset-meson.o
  CC      drivers/tty/tty_ldisc.o
  CC      drivers/char/random.o
  CC      drivers/reset/reset-qcom-aoss.o
  CC      drivers/tty/tty_buffer.o
  CC      drivers/reset/reset-simple.o
  CC      drivers/regulator/helpers.o
  CC      drivers/reset/reset-stm32mp1.o
  CC      drivers/tty/tty_port.o
  CC      drivers/reset/reset-socfpga.o
  CC      drivers/regulator/devres.o
  CC      drivers/reset/reset-sunxi.o
  CC      drivers/tty/tty_mutex.o
  CC      drivers/char/misc.o
  CC      drivers/reset/reset-uniphier-glue.o
  CC      drivers/regulator/of_regulator.o
  CC      drivers/tty/tty_ldsem.o
  CC      drivers/char/lp.o
  CC [M]  drivers/reset/reset-qcom-pdc.o
  CC      drivers/tty/tty_baudrate.o
  CC [M]  drivers/reset/reset-ti-syscon.o
  CC      drivers/regulator/ad5398.o
  CC      drivers/char/sonypi.o
  CC      drivers/tty/tty_jobctrl.o
  AR      drivers/reset/built-in.a
  CC      drivers/tty/n_null.o
  CC      drivers/regulator/as3722-regulator.o
  CC      drivers/char/hpet.o
  CC      drivers/tty/pty.o
  CC      drivers/tty/sysrq.o
  CC      drivers/regulator/da9211-regulator.o
  CC      drivers/regulator/isl9305.o
  CC      drivers/char/toshiba.o
  CC      drivers/regulator/max77620-regulator.o
  CC      drivers/char/nsc_gpio.o
  CC      drivers/tty/hvc/hvc_console.o
  CC      drivers/char/hw_random/core.o
  CC      drivers/regulator/max8649.o
  CC      drivers/tty/serial/serial_core.o
  AR      drivers/tty/hvc/built-in.a
  CC      drivers/regulator/pv88060-regulator.o
  CC      drivers/char/hw_random/timeriomem-rng.o
  CC      drivers/char/hw_random/intel-rng.o
  CC      drivers/regulator/pv88080-regulator.o
  CC      drivers/tty/serial/earlycon.o
  CC      drivers/char/hw_random/geode-rng.o
  CC      drivers/char/hw_random/via-rng.o
  CC      drivers/regulator/s2mps11.o
  CC      drivers/regulator/s5m8767.o
  CC      drivers/char/hw_random/npcm-rng.o
  CC      drivers/tty/serial/8250/8250_core.o
  CC [M]  drivers/char/hw_random/amd-rng.o
  CC      drivers/tty/serial/jsm/jsm_driver.o
  CC      drivers/regulator/sy8106a-regulator.o
  CC [M]  drivers/char/hw_random/exynos-trng.o
  CC      drivers/tty/serial/8250/8250_pnp.o
  CC      drivers/tty/serial/jsm/jsm_neo.o
  CC      drivers/regulator/tps62360-regulator.o
  CC [M]  drivers/char/hw_random/mtk-rng.o
  CC      drivers/tty/serial/8250/8250_port.o
  CC [M]  drivers/char/hw_random/ks-sa-rng.o
  CC      drivers/tty/serial/jsm/jsm_tty.o
  AR      drivers/char/hw_random/built-in.a
  CC      drivers/char/tlclk.o
  CC      drivers/regulator/tps65023-regulator.o
  CC      drivers/tty/serial/jsm/jsm_cls.o
  CC      drivers/char/mwave/mwavedd.o
  CC      drivers/regulator/tps6507x-regulator.o
  CC      drivers/tty/serial/8250/8250_dwlib.o
  CC      drivers/tty/serial/8250/8250_early.o
  CC      drivers/char/mwave/smapi.o
  AR      drivers/tty/serial/jsm/built-in.a
  CC      drivers/tty/serial/8250/8250_lpss.o
  CC      drivers/regulator/tps65132-regulator.o
  CC      drivers/regulator/vctrl-regulator.o
  CC      drivers/char/mwave/tp3780i.o
  CC      drivers/tty/serial/8250/8250_mid.o
  CC      drivers/tty/serial/serial_mctrl_gpio.o
  CC      drivers/char/mwave/3780i.o
  CC      drivers/regulator/userspace-consumer.o
  CC      drivers/tty/serial/8250/8250_men_mcb.o
  CC      drivers/iommu/iommu.o
  CC      drivers/regulator/88pm800-regulator.o
  AR      drivers/char/mwave/built-in.a
  CC      drivers/tty/serial/8250/8250_dw.o
  AR      drivers/char/agp/built-in.a
  CC [M]  drivers/char/agp/ati-agp.o
  CC      drivers/regulator/88pm8607.o
  CC      drivers/tty/serial/8250/8250_uniphier.o
  CC [M]  drivers/char/agp/amd-k7-agp.o
  CC      drivers/iommu/iommu-traces.o
  CC [M]  drivers/tty/serial/8250/8250_aspeed_vuart.o
  CC      drivers/regulator/anatop-regulator.o
  CC [M]  drivers/char/agp/intel-agp.o
  CC      drivers/iommu/iommu-sysfs.o
  CC [M]  drivers/tty/serial/8250/8250_of.o
  CC      drivers/regulator/bcm590xx-regulator.o
  CC      drivers/iommu/io-pgtable.o
  CC [M]  drivers/char/agp/intel-gtt.o
  AR      drivers/tty/serial/8250/built-in.a
  CC      drivers/tty/serial/bcm63xx_uart.o
  CC      drivers/regulator/fan53555.o
  CC      drivers/iommu/io-pgtable-arm-v7s.o
  CC      drivers/tty/serial/imx.o
  CC [M]  drivers/char/agp/nvidia-agp.o
  CC      drivers/regulator/mp8859.o
  CC      drivers/iommu/io-pgtable-arm.o
  CC [M]  drivers/char/agp/sworks-agp.o
  CC      drivers/regulator/qcom_spmi-regulator.o
  CC [M]  drivers/char/agp/via-agp.o
  CC      drivers/tty/serial/atmel_serial.o
  CC      drivers/iommu/of_iommu.o
  CC      drivers/regulator/stm32-pwr.o
  CC [M]  drivers/char/agp/backend.o
  CC      drivers/iommu/qcom_iommu.o
  CC      drivers/regulator/stw481x-vmmc.o
  CC      drivers/tty/serial/st-asc.o
  CC [M]  drivers/char/agp/frontend.o
  AR      drivers/iommu/built-in.a
  CC      drivers/tty/serial/altera_jtaguart.o
  CC      drivers/regulator/tps65910-regulator.o
  CC      drivers/regulator/tps65912-regulator.o
  CC      drivers/tty/serial/xilinx_uartps.o
  CC [M]  drivers/char/agp/generic.o
  CC      drivers/tty/serial/fsl_linflexuart.o
  CC      drivers/regulator/wm8994-regulator.o
  CC      drivers/char/xillybus/xillybus_core.o
  CC      drivers/tty/serial/owl-uart.o
  CC [M]  drivers/regulator/axp20x-regulator.o
  CC [M]  drivers/char/agp/isoch.o
  CC      drivers/tty/serial/rda-uart.o
  LD [M]  drivers/char/agp/agpgart.o
  CC [M]  drivers/regulator/gpio-regulator.o
  CC [M]  drivers/regulator/isl6271a-regulator.o
  AR      drivers/char/xillybus/built-in.a
  CC      drivers/char/virtio_console.o
  CC [M]  drivers/tty/serial/sh-sci.o
  CC [M]  drivers/tty/serial/uartlite.o
  CC [M]  drivers/regulator/lp873x-regulator.o
  CC [M]  drivers/regulator/lp87565-regulator.o
  CC      drivers/char/applicom.o
  CC [M]  drivers/regulator/lp8788-buck.o
  CC [M]  drivers/tty/serial/altera_uart.o
  CC [M]  drivers/tty/serial/timbuart.o
  CC [M]  drivers/regulator/lp8788-ldo.o
  CC      drivers/char/nvram.o
  CC [M]  drivers/char/scx200_gpio.o
  CC [M]  drivers/tty/serial/pch_uart.o
  CC [M]  drivers/regulator/max77686-regulator.o
  CC [M]  drivers/regulator/max77693-regulator.o
  AR      drivers/char/built-in.a
  CC [M]  drivers/regulator/max77802-regulator.o
  CC [M]  drivers/tty/serial/arc_uart.o
  CC [M]  drivers/regulator/mt6397-regulator.o
  CC [M]  drivers/regulator/pwm-regulator.o
  CC [M]  drivers/tty/serial/sifive.o
  AR      drivers/gpu/drm/bridge/analogix/built-in.a
  CC      drivers/parport/share.o
  AR      drivers/gpu/drm/bridge/built-in.a
  CC [M]  drivers/regulator/rt5033-regulator.o
  AR      drivers/gpu/drm/built-in.a
  AR      drivers/tty/serial/built-in.a
  CC      drivers/tty/n_gsm.o
  CC      drivers/gpu/vga/vgaarb.o
  CC [M]  drivers/regulator/slg51000-regulator.o
  CC      drivers/parport/ieee1284.o
  CC      drivers/parport/ieee1284_ops.o
  AR      drivers/gpu/vga/built-in.a
  CC [M]  drivers/regulator/sy8824x.o
  CC      drivers/gpu/ipu-v3/ipu-common.o
  CC      drivers/parport/procfs.o
  CC [M]  drivers/regulator/tps65086-regulator.o
  CC      drivers/tty/n_tracesink.o
  CC [M]  drivers/regulator/wm8350-regulator.o
  CC [M]  drivers/parport/parport_ax88796.o
  CC      drivers/tty/ttynull.o
  CC      drivers/gpu/ipu-v3/ipu-cpmem.o
  CC      drivers/tty/goldfish.o
  AR      drivers/parport/built-in.a
  CC      drivers/gpu/ipu-v3/ipu-csi.o
  CC [M]  drivers/regulator/as3711-regulator.o
  CC      drivers/lightnvm/core.o
  CC [M]  drivers/tty/n_tracerouter.o
  CC      drivers/gpu/ipu-v3/ipu-dc.o
  CC [M]  drivers/regulator/bd9571mwv-regulator.o
  CC [M]  drivers/regulator/da9210-regulator.o
  AR      drivers/tty/built-in.a
  CC      drivers/gpu/ipu-v3/ipu-di.o
  CC      drivers/gpu/ipu-v3/ipu-dp.o
  CC      drivers/gpu/ipu-v3/ipu-dmfc.o
  CC [M]  drivers/regulator/hi655x-regulator.o
  CC [M]  drivers/regulator/ltc3589.o
  AR      drivers/lightnvm/built-in.a
  CC      drivers/gpu/ipu-v3/ipu-ic.o
  CC [M]  drivers/regulator/max8660.o
  CC      drivers/gpu/ipu-v3/ipu-ic-csc.o
  CC      drivers/gpu/ipu-v3/ipu-image-convert.o
  CC      drivers/base/component.o
  CC      drivers/misc/ad525x_dpot.o
  CC [M]  drivers/regulator/max8973-regulator.o
  CC      drivers/misc/tifm_core.o
  CC      drivers/base/core.o
  CC [M]  drivers/regulator/mpq7920.o
  CC      drivers/gpu/ipu-v3/ipu-smfc.o
  CC [M]  drivers/regulator/mt6323-regulator.o
  CC      drivers/misc/phantom.o
  CC      drivers/gpu/ipu-v3/ipu-vdi.o
  CC [M]  drivers/regulator/qcom-rpmh-regulator.o
  CC      drivers/misc/bh1770glc.o
  AR      drivers/gpu/ipu-v3/built-in.a
  AR      drivers/gpu/built-in.a
  CC      drivers/misc/isl29020.o
  CC      drivers/base/bus.o
  CC [M]  drivers/regulator/qcom_smd-regulator.o
  CC      drivers/base/dd.o
  CC      drivers/misc/c2port/core.o
  CC [M]  drivers/regulator/pv88090-regulator.o
  CC [M]  drivers/regulator/tps51632-regulator.o
  CC      drivers/base/syscore.o
  AR      drivers/misc/c2port/built-in.a
  CC      drivers/misc/hmc6352.o
  CC [M]  drivers/regulator/pcf50633-regulator.o
  CC [M]  drivers/regulator/rc5t583-regulator.o
  CC      drivers/base/driver.o
  CC      drivers/misc/eeprom/ee1004.o
  CC      drivers/base/class.o
  CC [M]  drivers/misc/eeprom/at24.o
  CC      drivers/base/platform.o
  CC [M]  drivers/regulator/rk808-regulator.o
  CC [M]  drivers/regulator/sc2731-regulator.o
  CC [M]  drivers/misc/eeprom/eeprom.o
  CC [M]  drivers/regulator/uniphier-regulator.o
  CC      drivers/base/cpu.o
  CC [M]  drivers/misc/eeprom/max6875.o
  AR      drivers/regulator/built-in.a
  CC      drivers/base/firmware.o
  CC      drivers/misc/cb710/core.o
  AR      drivers/misc/eeprom/built-in.a
  CC      drivers/misc/cb710/sgbuf2.o
  CC      drivers/base/init.o
  CC      drivers/base/map.o
  CC      drivers/mfd/88pm800.o
  CC      drivers/base/devres.o
  AR      drivers/misc/cb710/built-in.a
  CC [M]  drivers/misc/lis3lv02d/lis3lv02d.o
  CC      drivers/mfd/88pm80x.o
  CC      drivers/misc/mei/init.o
  CC      drivers/base/attribute_container.o
  CC      drivers/mfd/bcm590xx.o
  CC [M]  drivers/misc/lis3lv02d/lis3lv02d_i2c.o
  CC      drivers/misc/mei/hbm.o
  CC      drivers/base/transport_class.o
  CC      drivers/mfd/bd9571mwv.o
  CC      drivers/base/topology.o
  CC      drivers/mfd/stmpe.o
  CC      drivers/misc/mei/interrupt.o
  CC      drivers/base/container.o
  CC      drivers/misc/vmw_vmci/vmci_context.o
  CC      drivers/base/property.o
  CC      drivers/mfd/tc3589x.o
  CC      drivers/misc/mei/client.o
  CC      drivers/mfd/arizona-core.o
  CC      drivers/misc/vmw_vmci/vmci_datagram.o
  CC      drivers/base/cacheinfo.o
  CC      drivers/misc/mei/main.o
  CC      drivers/misc/vmw_vmci/vmci_doorbell.o
  CC      drivers/mfd/arizona-irq.o
  CC      drivers/base/devcon.o
  CC      drivers/misc/vmw_vmci/vmci_driver.o
  CC      drivers/base/swnode.o
  CC      drivers/misc/mei/dma-ring.o
  CC      drivers/misc/vmw_vmci/vmci_event.o
  CC      drivers/mfd/arizona-i2c.o
  CC      drivers/misc/vmw_vmci/vmci_guest.o
  CC      drivers/misc/mei/bus.o
  CC      drivers/mfd/wm8998-tables.o
  CC      drivers/base/devtmpfs.o
  CC      drivers/mfd/cs47l24-tables.o
  CC      drivers/misc/vmw_vmci/vmci_handle_array.o
  CC      drivers/misc/mei/bus-fixup.o
  CC      drivers/misc/vmw_vmci/vmci_host.o
  CC      drivers/mfd/wm8350-core.o
  CC      drivers/base/power/clock_ops.o
  CC      drivers/misc/mei/debugfs.o
  CC      drivers/misc/vmw_vmci/vmci_queue_pair.o
  CC      drivers/misc/mei/mei-trace.o
  CC      drivers/base/power/sysfs.o
  CC      drivers/mfd/wm8350-regmap.o
  CC      drivers/base/power/generic_ops.o
  CC [M]  drivers/misc/mei/pci-me.o
  CC      drivers/mfd/wm8350-gpio.o
  CC      drivers/base/power/common.o
  CC [M]  drivers/misc/mei/hw-me.o
  CC      drivers/misc/vmw_vmci/vmci_resource.o
  CC      drivers/base/power/qos.o
  CC      drivers/mfd/wm8350-irq.o
  CC      drivers/misc/vmw_vmci/vmci_route.o
  AR      drivers/misc/vmw_vmci/built-in.a
  CC      drivers/base/isa.o
  CC      drivers/mfd/wm8350-i2c.o
  CC      drivers/base/power/runtime.o
  AR      drivers/misc/mei/built-in.a
  LD [M]  drivers/misc/mei/mei-me.o
  CC      drivers/mfd/madera-core.o
  CC      drivers/base/power/wakeirq.o
  CC      drivers/misc/mic/bus/vop_bus.o
  CC [M]  drivers/nfc/microread/microread.o
  CC      drivers/mfd/cs47l85-tables.o
  AR      drivers/misc/mic/bus/built-in.a
  AR      drivers/misc/mic/built-in.a
  CC      drivers/misc/pci_endpoint_test.o
  CC      drivers/base/power/main.o
  CC [M]  drivers/nfc/microread/i2c.o
  CC      drivers/mfd/cs47l92-tables.o
  AR      drivers/misc/cardreader/built-in.a
  CC [M]  drivers/misc/cardreader/alcor_pci.o
  LD [M]  drivers/nfc/microread/microread_i2c.o
  CC [M]  drivers/nfc/nfcmrvl/main.o
  CC      drivers/mfd/tps65218.o
  CC [M]  drivers/misc/cardreader/rtsx_pcr.o
  CC      drivers/base/power/wakeup.o
  CC [M]  drivers/nfc/nfcmrvl/fw_dnld.o
  CC      drivers/mfd/tps65912-core.o
  CC      drivers/mfd/tps65912-i2c.o
  CC [M]  drivers/nfc/nfcmrvl/usb.o
  CC [M]  drivers/misc/cardreader/rts5209.o
  CC      drivers/base/power/wakeup_stats.o
  CC      drivers/mfd/mfd-core.o
  CC      drivers/base/power/domain.o
  CC [M]  drivers/misc/cardreader/rts5229.o
  CC [M]  drivers/nfc/nfcmrvl/uart.o
  CC      drivers/mfd/lp3943.o
  CC [M]  drivers/misc/cardreader/rtl8411.o
  LD [M]  drivers/nfc/nfcmrvl/nfcmrvl.o
  LD [M]  drivers/nfc/nfcmrvl/nfcmrvl_usb.o
  LD [M]  drivers/nfc/nfcmrvl/nfcmrvl_uart.o
  CC [M]  drivers/nfc/nxp-nci/core.o
  CC      drivers/mfd/lp8788.o
  CC [M]  drivers/misc/cardreader/rts5227.o
  CC      drivers/mfd/lp8788-irq.o
  CC [M]  drivers/nfc/nxp-nci/firmware.o
  CC      drivers/base/power/domain_governor.o
  CC [M]  drivers/misc/cardreader/rts5249.o
  CC      drivers/mfd/da9055-core.o
  CC [M]  drivers/nfc/nxp-nci/i2c.o
  AR      drivers/base/power/built-in.a
  CC      drivers/base/firmware_loader/fallback_table.o
  CC [M]  drivers/misc/cardreader/rts5260.o
  CC      drivers/mfd/da9055-i2c.o
  LD [M]  drivers/nfc/nxp-nci/nxp-nci.o
  LD [M]  drivers/nfc/nxp-nci/nxp-nci_i2c.o
  CC [M]  drivers/nfc/pn533/pn533.o
  CC      drivers/base/firmware_loader/main.o
  CC [M]  drivers/misc/cardreader/rts5261.o
  CC      drivers/mfd/max77620.o
  CC      drivers/mfd/max77693.o
  CC [M]  drivers/misc/cardreader/rtsx_usb.o
  CC      drivers/base/firmware_loader/fallback.o
  CC [M]  drivers/nfc/pn533/usb.o
  CC      drivers/mfd/lpc_sch.o
  AR      drivers/base/firmware_loader/built-in.a
  CC      drivers/base/module.o
  LD [M]  drivers/misc/cardreader/rtsx_pci.o
  AR      drivers/misc/habanalabs/built-in.a
  CC [M]  drivers/misc/habanalabs/habanalabs_drv.o
  CC      drivers/mfd/sec-core.o
  CC      drivers/base/regmap/regmap.o
  CC [M]  drivers/nfc/pn533/i2c.o
  CC [M]  drivers/misc/habanalabs/device.o
  CC      drivers/mfd/sec-irq.o
  LD [M]  drivers/nfc/pn533/pn533_usb.o
  LD [M]  drivers/nfc/pn533/pn533_i2c.o
  CC      drivers/mfd/syscon.o
  CC [M]  drivers/nfc/pn544/pn544.o
  CC [M]  drivers/misc/habanalabs/context.o
  CC      drivers/mfd/as3722.o
  CC [M]  drivers/nfc/pn544/mei.o
  CC [M]  drivers/misc/habanalabs/asid.o
  CC      drivers/mfd/sky81452.o
  CC      drivers/base/regmap/regcache.o
  LD [M]  drivers/nfc/pn544/pn544_mei.o
  CC [M]  drivers/misc/habanalabs/habanalabs_ioctl.o
  CC [M]  drivers/nfc/s3fwrn5/core.o
  CC      drivers/mfd/rohm-bd718x7.o
  CC [M]  drivers/misc/habanalabs/command_buffer.o
  CC      drivers/base/regmap/regcache-rbtree.o
  CC [M]  drivers/nfc/s3fwrn5/firmware.o
  CC      drivers/mfd/88pm860x-core.o
  CC [M]  drivers/misc/habanalabs/hw_queue.o
  CC      drivers/base/regmap/regcache-flat.o
  CC [M]  drivers/nfc/s3fwrn5/nci.o
  CC [M]  drivers/nfc/s3fwrn5/i2c.o
  CC [M]  drivers/misc/habanalabs/irq.o
  CC      drivers/base/regmap/regmap-debugfs.o
  LD [M]  drivers/nfc/s3fwrn5/s3fwrn5.o
  LD [M]  drivers/nfc/s3fwrn5/s3fwrn5_i2c.o
  CC [M]  drivers/nfc/st-nci/ndlc.o
  CC      drivers/base/regmap/regmap-i2c.o
  CC      drivers/mfd/88pm860x-i2c.o
  CC [M]  drivers/misc/habanalabs/sysfs.o
  CC      drivers/base/regmap/regmap-mmio.o
  CC [M]  drivers/nfc/st-nci/core.o
  CC      drivers/mfd/sm501.o
  CC      drivers/base/regmap/regmap-irq.o
  CC [M]  drivers/misc/habanalabs/hwmon.o
  CC [M]  drivers/nfc/st-nci/se.o
  CC [M]  drivers/nfc/st-nci/vendor_cmds.o
  CC [M]  drivers/misc/habanalabs/memory.o
  CC      drivers/mfd/htc-i2cpld.o
  CC [M]  drivers/nfc/st-nci/i2c.o
  CC      drivers/base/regmap/regmap-w1.o
  CC      drivers/mfd/sun6i-prcm.o
  LD [M]  drivers/nfc/st-nci/st-nci.o
  LD [M]  drivers/nfc/st-nci/st-nci_i2c.o
  CC [M]  drivers/nfc/mei_phy.o
  CC [M]  drivers/base/regmap/regmap-slimbus.o
  CC [M]  drivers/misc/habanalabs/command_submission.o
  CC      drivers/mfd/wm5102-tables.o
  CC [M]  drivers/base/regmap/regmap-spmi.o
  CC      drivers/mfd/wm5110-tables.o
  CC      drivers/mfd/wm8994-core.o
  CC [M]  drivers/misc/habanalabs/mmu.o
  CC [M]  drivers/base/regmap/regmap-i3c.o
  CC [M]  drivers/misc/habanalabs/firmware_if.o
  CC      drivers/mfd/wm8994-irq.o
  CC      drivers/mfd/wm8994-regmap.o
  AR      drivers/base/regmap/built-in.a
  CC      drivers/base/pinctrl.o
  CC [M]  drivers/misc/habanalabs/pci.o
  CC      drivers/mfd/tps6507x.o
  CC [M]  drivers/base/test/test_async_driver_probe.o
  CC      drivers/base/soc.o
  CC      drivers/mfd/tps65910.o
  AR      drivers/base/built-in.a
  CC [M]  drivers/misc/habanalabs/debugfs.o
  CC [M]  drivers/misc/habanalabs/goya/goya.o
  CC      drivers/dma-buf/dma-buf.o
  CC      drivers/mfd/twl-core.o
  CC      drivers/dma-buf/dma-fence.o
  CC [M]  drivers/misc/habanalabs/goya/goya_security.o
  CC      drivers/mfd/twl4030-irq.o
  CC      drivers/mfd/twl6030-irq.o
  CC      drivers/dma-buf/dma-fence-array.o
  CC      drivers/dma-buf/dma-fence-chain.o
  CC [M]  drivers/misc/habanalabs/goya/goya_hwmgr.o
  CC      drivers/mfd/twl4030-audio.o
  CC      drivers/misc/fastrpc.o
  CC      drivers/dma-buf/dma-resv.o
  CC      drivers/mfd/fsl-imx25-tsadc.o
  CC [M]  drivers/misc/habanalabs/goya/goya_coresight.o
  CC      drivers/mfd/da9062-core.o
  CC      drivers/dma-buf/seqno-fence.o
  LD [M]  drivers/misc/habanalabs/habanalabs.o
  CC      drivers/dma-buf/sync_file.o
  CC      drivers/mfd/adp5520.o
  CC      drivers/misc/sram.o
  CC [M]  drivers/misc/enclosure.o
  CC      drivers/mfd/intel_quark_i2c_gpio.o
  CC      drivers/dma-buf/sw_sync.o
  CC      drivers/dma-buf/sync_debug.o
  CC [M]  drivers/misc/ds1682.o
  CC      drivers/mfd/omap-usb-host.o
  CC      drivers/mfd/omap-usb-tll.o
  CC      drivers/dma-buf/selftest.o
  CC [M]  drivers/misc/pch_phub.o
  CC      drivers/dma-buf/st-dma-fence.o
  CC [M]  drivers/misc/pvpanic.o
  CC      drivers/mfd/qcom-pm8xxx.o
  CC [M]  drivers/misc/xilinx_sdfec.o
  AR      drivers/dma-buf/built-in.a
  CC      drivers/mfd/ssbi.o
  CC      drivers/mfd/tps65090.o
  CC [M]  drivers/misc/altera-stapl/altera-lpt.o
  CC [M]  drivers/misc/altera-stapl/altera-jtag.o
  CC [M]  drivers/misc/altera-stapl/altera-comp.o
  CC      drivers/mfd/aat2870-core.o
  CC [M]  drivers/misc/altera-stapl/altera.o
  CC      drivers/mfd/at91-usart.o
  CC [M]  drivers/misc/echo/echo.o
  CC      drivers/mfd/intel_msic.o
  CC      drivers/scsi/scsi_common.o
  AR      drivers/scsi/built-in.a
  CC      drivers/spmi/spmi.o
  CC [M]  drivers/misc/pti.o
  CC      drivers/mfd/viperboard.o
  LD [M]  drivers/misc/altera-stapl/altera-stapl.o
  CC      drivers/mfd/rc5t583.o
  CC [M]  drivers/misc/ics932s401.o
  CC      drivers/mfd/rc5t583-irq.o
  CC      drivers/mfd/as3711.o
  CC      drivers/spmi/spmi-pmic-arb.o
  AR      drivers/misc/built-in.a
  CC      drivers/mfd/dln2.o
  CC      drivers/mfd/stm32-timers.o
  CC      drivers/net/macsec.o
  AR      drivers/spmi/built-in.a
  CC      drivers/net/Space.o
  AR      drivers/firewire/built-in.a
  CC      drivers/mfd/stmfx.o
  CC [M]  drivers/firewire/core-card.o
  CC [M]  drivers/mfd/88pm805.o
  CC [M]  drivers/firewire/core-cdev.o
  CC      drivers/net/loopback.o
  CC [M]  drivers/mfd/htc-pasic3.o
  CC [M]  drivers/mfd/lp873x.o
  CC [M]  drivers/firewire/core-device.o
  CC [M]  drivers/mfd/lp87565.o
  CC      drivers/net/vrf.o
  AR      drivers/net/caif/built-in.a
  CC [M]  drivers/mfd/tps65086.o
  CC [M]  drivers/mfd/axp20x.o
  CC [M]  drivers/firewire/core-iso.o
  CC [M]  drivers/firewire/core-topology.o
  CC [M]  drivers/mfd/axp20x-i2c.o
  CC      drivers/vfio/vfio.o
  CC [M]  drivers/mfd/max77686.o
  CC [M]  drivers/firewire/core-transaction.o
  AR      drivers/net/dsa/qca/built-in.a
  AR      drivers/net/dsa/built-in.a
  CC [M]  drivers/mfd/pcf50633-gpio.o
  CC [M]  drivers/firewire/ohci.o
  CC      drivers/vfio/vfio_iommu_type1.o
  CC [M]  drivers/mfd/timberdale.o
  AR      drivers/net/ethernet/faraday/built-in.a
  AR      drivers/net/ethernet/freescale/built-in.a
  AR      drivers/net/ethernet/hisilicon/built-in.a
  CC [M]  drivers/mfd/lpc_ich.o
  CC      drivers/net/ethernet/intel/e1000/e1000_main.o
  AR      drivers/vfio/built-in.a
  LD [M]  drivers/firewire/firewire-core.o
  LD [M]  drivers/firewire/firewire-ohci.o
  AR      drivers/net/hamradio/built-in.a
  CC [M]  drivers/mfd/rdc321x-southbridge.o
  CC      drivers/auxdisplay/charlcd.o
  CC      drivers/auxdisplay/img-ascii-lcd.o
  CC [M]  drivers/mfd/atmel-flexcom.o
  CC      drivers/auxdisplay/hd44780.o
  CC [M]  drivers/mfd/atmel-hlcdc.o
  CC      drivers/auxdisplay/panel.o
  AR      drivers/net/usb/built-in.a
  CC      drivers/usb/common/common.o
  CC [M]  drivers/mfd/intel-lpss.o
  CC      drivers/usb/common/debug.o
  CC [M]  drivers/auxdisplay/ht16k33.o
  CC [M]  drivers/mfd/intel-lpss-acpi.o
  CC      drivers/usb/common/led.o
  CC      drivers/usb/common/usb-conn-gpio.o
  CC [M]  drivers/mfd/rn5t618.o
  AR      drivers/auxdisplay/built-in.a
  CC [M]  drivers/mfd/lm3533-core.o
  CC      drivers/net/ethernet/intel/e1000/e1000_hw.o
  CC      drivers/usb/common/ulpi.o
  CC [M]  drivers/mfd/lm3533-ctrlbank.o
  CC      drivers/input/serio/serio.o
  AR      drivers/usb/common/built-in.a
  CC [M]  drivers/mfd/rt5033.o
  CC      drivers/usb/core/usb.o
  CC      drivers/input/serio/i8042.o
  CC [M]  drivers/mfd/cros_ec_dev.o
  CC [M]  drivers/mfd/exynos-lpass.o
  CC      drivers/usb/core/hub.o
  CC      drivers/net/ethernet/intel/e1000/e1000_ethtool.o
  CC [M]  drivers/mfd/wcd934x.o
  CC      drivers/input/serio/libps2.o
  CC [M]  drivers/mfd/max77650.o
  CC      drivers/input/serio/ps2mult.o
  CC [M]  drivers/mfd/pcf50633-core.o
  CC      drivers/input/serio/serio_raw.o
  CC      drivers/net/ethernet/intel/e1000/e1000_param.o
  CC [M]  drivers/mfd/pcf50633-irq.o
  CC [M]  drivers/input/serio/serport.o
  CC      drivers/usb/core/hcd.o
  CC [M]  drivers/mfd/si476x-cmd.o
  CC [M]  drivers/input/serio/parkbd.o
  AR      drivers/net/ethernet/intel/e1000/built-in.a
  AR      drivers/net/ethernet/intel/built-in.a
  CC [M]  drivers/input/serio/ct82c710.o
  CC [M]  drivers/mfd/si476x-prop.o
  CC [M]  drivers/input/serio/pcips2.o
  AR      drivers/net/ethernet/built-in.a
  CC      drivers/usb/core/urb.o
  CC [M]  drivers/mfd/si476x-i2c.o
  CC [M]  drivers/input/serio/altera_ps2.o
  CC [M]  drivers/net/tun.o
  CC [M]  drivers/input/serio/arc_ps2.o
  CC      drivers/usb/core/message.o
  CC [M]  drivers/mfd/intel-lpss-pci.o
  CC [M]  drivers/input/serio/olpc_apsp.o
  CC [M]  drivers/mfd/rk808.o
  CC [M]  drivers/input/serio/sun4i-ps2.o
  CC [M]  drivers/input/serio/ps2-gpio.o
  CC [M]  drivers/mfd/hi655x-pmic.o
  CC      drivers/usb/core/driver.o
  CC [M]  drivers/input/serio/userio.o
  CC [M]  drivers/mfd/mt6397-core.o
  CC [M]  drivers/mfd/mt6397-irq.o
  AR      drivers/input/serio/built-in.a
  CC      drivers/input/input.o
  CC      drivers/usb/core/config.o
  AR      drivers/net/built-in.a
  CC      drivers/input/input-compat.o
  CC [M]  drivers/mfd/intel_soc_pmic_mrfld.o
  CC [M]  drivers/mfd/sun4i-gpadc.o
  CC      drivers/rtc/lib.o
  CC      drivers/usb/core/file.o
  CC [M]  drivers/mfd/rohm-bd71828.o
  CC      drivers/rtc/rtc-mc146818-lib.o
  CC      drivers/input/input-mt.o
  CC      drivers/usb/core/buffer.o
  LD [M]  drivers/mfd/pcf50633.o
  LD [M]  drivers/mfd/si476x-core.o
  AR      drivers/rtc/built-in.a
  LD [M]  drivers/mfd/mt6397.o
  CC      drivers/usb/core/sysfs.o
  AR      drivers/mfd/built-in.a
  CC      drivers/input/input-poller.o
  CC      drivers/usb/phy/of.o
  CC      drivers/usb/mon/mon_main.o
  CC      drivers/input/ff-core.o
  CC      drivers/usb/phy/phy.o
  CC      drivers/usb/core/endpoint.o
  CC      drivers/usb/mon/mon_stat.o
  CC      drivers/input/ff-memless.o
  CC      drivers/usb/phy/phy-gpio-vbus-usb.o
  CC      drivers/usb/core/devio.o
  CC      drivers/usb/mon/mon_text.o
  CC      drivers/input/input-polldev.o
  CC      drivers/usb/phy/phy-ulpi.o
  CC      drivers/usb/mon/mon_bin.o
  CC      drivers/input/sparse-keymap.o
  CC      drivers/usb/phy/phy-ulpi-viewport.o
  CC [M]  drivers/usb/phy/phy-tegra-usb.o
  CC      drivers/input/keyboard/atkbd.o
  AR      drivers/usb/mon/built-in.a
  CC      drivers/usb/core/notify.o
  CC      drivers/i2c/i2c-boardinfo.o
  CC      drivers/usb/core/generic.o
  CC [M]  drivers/usb/phy/phy-isp1301.o
  CC      drivers/i2c/i2c-core-base.o
  AR      drivers/input/keyboard/built-in.a
  CC [M]  drivers/input/tablet/acecad.o
  CC      drivers/usb/core/quirks.o
  AR      drivers/usb/phy/built-in.a
  CC      drivers/usb/core/devices.o
  CC [M]  drivers/input/tablet/gtco.o
  CC [M]  drivers/input/tablet/hanwang.o
  CC      drivers/input/touchscreen/of_touchscreen.o
  CC      drivers/usb/core/phy.o
  CC [M]  drivers/input/tablet/pegasus_notetaker.o
  CC      drivers/usb/core/port.o
  CC      drivers/i2c/i2c-core-smbus.o
  CC      drivers/input/touchscreen/88pm860x-ts.o
  CC      drivers/i2c/i2c-core-acpi.o
  CC      drivers/input/touchscreen/atmel_mxt_ts.o
  CC      drivers/usb/core/of.o
  CC      drivers/usb/core/hcd-pci.o
  CC      drivers/i2c/i2c-core-slave.o
  CC      drivers/input/misc/adxl34x.o
  CC      drivers/i2c/i2c-core-of.o
  CC      drivers/usb/core/usb-acpi.o
  CC      drivers/i2c/i2c-smbus.o
  CC      drivers/input/touchscreen/bu21029_ts.o
  CC      drivers/input/misc/apanel.o
  CC      drivers/usb/core/ledtrig-usbport.o
  CC      drivers/i2c/i2c-mux.o
  CC      drivers/input/touchscreen/chipone_icn8318.o
  CC      drivers/input/misc/bma150.o
  AR      drivers/usb/core/built-in.a
  CC      drivers/usb/mtu3/mtu3_plat.o
  CC      drivers/input/touchscreen/chipone_icn8505.o
  CC      drivers/i2c/algos/i2c-algo-bit.o
  CC      drivers/input/misc/cma3000_d0x.o
  CC      drivers/input/misc/da9055_onkey.o
  CC      drivers/input/touchscreen/cyttsp_core.o
  CC      drivers/usb/mtu3/mtu3_trace.o
  CC [M]  drivers/i2c/algos/i2c-algo-pca.o
  CC      drivers/input/misc/max77693-haptic.o
  CC      drivers/input/touchscreen/dynapro.o
  AR      drivers/i2c/algos/built-in.a
  CC      drivers/input/misc/rotary_encoder.o
  CC      drivers/usb/mtu3/mtu3_host.o
  CC      drivers/input/touchscreen/ektf2127.o
  CC      drivers/i2c/busses/i2c-ali1563.o
  CC      drivers/usb/mtu3/mtu3_core.o
  CC      drivers/input/misc/atlas_btns.o
  CC      drivers/input/touchscreen/migor_ts.o
  CC      drivers/i2c/busses/i2c-i801.o
  CC      drivers/input/misc/cm109.o
  CC      drivers/input/touchscreen/mk712.o
  CC      drivers/usb/mtu3/mtu3_gadget_ep0.o
  CC      drivers/input/misc/drv260x.o
  CC      drivers/input/touchscreen/raydium_i2c_ts.o
  CC      drivers/i2c/busses/i2c-isch.o
  CC      drivers/input/misc/gpio-beeper.o
  CC      drivers/usb/mtu3/mtu3_gadget.o
  CC      drivers/input/touchscreen/s6sy761.o
  CC      drivers/input/misc/hisi_powerkey.o
  CC      drivers/i2c/busses/i2c-piix4.o
  CC      drivers/input/misc/keyspan_remote.o
  CC      drivers/input/touchscreen/stmpe-ts.o
  CC      drivers/usb/mtu3/mtu3_qmu.o
  CC      drivers/i2c/busses/i2c-sis5595.o
  CC      drivers/input/touchscreen/ts4800-ts.o
  CC      drivers/input/misc/pcf8574_keypad.o
  CC      drivers/input/touchscreen/tsc200x-core.o
  CC      drivers/usb/mtu3/mtu3_dr.o
  CC      drivers/i2c/busses/i2c-via.o
  CC      drivers/input/misc/powermate.o
  CC      drivers/input/touchscreen/tsc2004.o
  CC      drivers/usb/mtu3/mtu3_debugfs.o
  CC      drivers/i2c/busses/i2c-cbus-gpio.o
  CC      drivers/input/misc/regulator-haptic.o
  CC      drivers/input/touchscreen/wacom_w8001.o
  CC      drivers/i2c/busses/i2c-designware-common.o
  AR      drivers/usb/mtu3/built-in.a
  CC [M]  drivers/input/misc/88pm80x_onkey.o
  CC      drivers/usb/host/pci-quirks.o
  CC      drivers/input/touchscreen/wacom_i2c.o
  CC [M]  drivers/input/misc/ad714x.o
  CC      drivers/i2c/busses/i2c-designware-master.o
  CC      drivers/input/touchscreen/wdt87xx_i2c.o
  CC      drivers/usb/host/isp116x-hcd.o
  CC      drivers/i2c/busses/i2c-designware-pcidrv.o
  CC [M]  drivers/input/misc/ad714x-i2c.o
  CC [M]  drivers/input/touchscreen/resistive-adc-touch.o
  CC      drivers/i2c/busses/i2c-pxa-pci.o
  CC [M]  drivers/input/misc/adxl34x-i2c.o
  CC      drivers/usb/host/sl811-hcd.o
  CC [M]  drivers/input/touchscreen/ar1021_i2c.o
  CC      drivers/i2c/busses/i2c-xiic.o
  CC [M]  drivers/input/misc/e3x0-button.o
  CC [M]  drivers/input/touchscreen/auo-pixcir-ts.o
  CC [M]  drivers/input/misc/drv2667.o
  CC      drivers/i2c/busses/i2c-parport.o
  CC [M]  drivers/input/touchscreen/bu21013_ts.o
  CC [M]  drivers/input/misc/kxtj9.o
  CC      drivers/i2c/busses/i2c-scmi.o
  CC [M]  drivers/input/touchscreen/cy8ctmg110_ts.o
  CC [M]  drivers/input/misc/mma8450.o
  CC [M]  drivers/usb/host/ehci-hcd.o
  CC      drivers/i2c/busses/i2c-aspeed.o
  CC [M]  drivers/input/misc/msm-vibrator.o
  CC [M]  drivers/input/touchscreen/cyttsp4_core.o
  CC [M]  drivers/input/misc/wistron_btns.o
  CC      drivers/i2c/busses/i2c-img-scb.o
  CC [M]  drivers/input/misc/88pm860x_onkey.o
  CC [M]  drivers/input/touchscreen/edt-ft5x06.o
  CC      drivers/i2c/busses/i2c-jz4780.o
  CC [M]  drivers/input/misc/gpio_decoder.o
  CC [M]  drivers/input/misc/gpio-vibra.o
  CC      drivers/i2c/busses/i2c-lpc2k.o
  CC [M]  drivers/input/touchscreen/elo.o
  CC [M]  drivers/input/misc/pcf50633-input.o
  CC      drivers/i2c/busses/i2c-mt7621.o
  CC [M]  drivers/input/touchscreen/egalax_ts_serial.o
  CC [M]  drivers/usb/host/ehci-pci.o
  CC [M]  drivers/input/misc/pcspkr.o
  CC [M]  drivers/input/touchscreen/hideep.o
  CC      drivers/i2c/busses/i2c-owl.o
  CC [M]  drivers/usb/host/ehci-platform.o
  CC [M]  drivers/input/misc/rk805-pwrkey.o
  CC [M]  drivers/input/misc/sc27xx-vibra.o
  CC      drivers/i2c/busses/i2c-rk3x.o
  CC [M]  drivers/usb/host/ehci-npcm7xx.o
  CC [M]  drivers/input/touchscreen/ili210x.o
  CC [M]  drivers/input/misc/tps65218-pwrbutton.o
  CC [M]  drivers/usb/host/ehci-orion.o
  CC [M]  drivers/input/touchscreen/imx6ul_tsc.o
  CC      drivers/i2c/busses/i2c-stm32f7.o
  CC [M]  drivers/input/misc/twl4030-vibra.o
  CC [M]  drivers/usb/host/ehci-spear.o
  CC [M]  drivers/input/misc/yealink.o
  CC [M]  drivers/input/touchscreen/inexio.o
  CC [M]  drivers/usb/host/ehci-exynos.o
  CC [M]  drivers/input/touchscreen/bcm_iproc_tsc.o
  CC      drivers/i2c/busses/i2c-stm32.o
  AR      drivers/input/misc/built-in.a
  CC [M]  drivers/input/touchscreen/melfas_mip4.o
  CC [M]  drivers/usb/host/ehci-atmel.o
  CC      drivers/i2c/busses/i2c-synquacer.o
  CC      drivers/input/rmi4/rmi_bus.o
  CC [M]  drivers/usb/host/oxu210hp-hcd.o
  CC [M]  drivers/input/touchscreen/sis_i2c.o
  CC      drivers/i2c/busses/i2c-uniphier-f.o
  CC      drivers/input/rmi4/rmi_driver.o
  CC [M]  drivers/input/touchscreen/sun4i-ts.o
  CC      drivers/i2c/busses/i2c-versatile.o
  CC [M]  drivers/input/touchscreen/touchit213.o
  CC      drivers/input/rmi4/rmi_f01.o
  CC      drivers/i2c/busses/i2c-diolan-u2c.o
  CC [M]  drivers/input/touchscreen/touchright.o
  CC      drivers/input/rmi4/rmi_f30.o
  CC [M]  drivers/usb/host/ohci-hcd.o
  CC      drivers/i2c/busses/i2c-dln2.o
  CC [M]  drivers/input/touchscreen/tsc40.o
  CC      drivers/input/rmi4/rmi_i2c.o
  CC      drivers/i2c/busses/i2c-robotfuzz-osif.o
  CC [M]  drivers/input/touchscreen/sx8654.o
  CC      drivers/input/rmi4/rmi_2d_sensor.o
  CC      drivers/i2c/busses/i2c-brcmstb.o
  CC [M]  drivers/input/touchscreen/tps6507x-ts.o
  CC      drivers/input/rmi4/rmi_f03.o
  CC [M]  drivers/i2c/busses/i2c-amd8111.o
  CC [M]  drivers/input/touchscreen/zet6223.o
  CC [M]  drivers/usb/host/ohci-pci.o
  CC      drivers/input/rmi4/rmi_f11.o
  CC [M]  drivers/i2c/busses/i2c-nvidia-gpu.o
  CC [M]  drivers/input/touchscreen/zforce_ts.o
  CC [M]  drivers/usb/host/ohci-platform.o
  CC [M]  drivers/i2c/busses/i2c-sis630.o
  CC      drivers/input/rmi4/rmi_f12.o
  CC [M]  drivers/input/touchscreen/rohm_bu21023.o
  CC [M]  drivers/usb/host/ohci-exynos.o
  CC [M]  drivers/i2c/busses/i2c-viapro.o
  AR      drivers/input/rmi4/built-in.a
  CC [M]  drivers/input/touchscreen/iqs5xx.o
  CC [M]  drivers/usb/host/ohci-spear.o
  CC [M]  drivers/input/matrix-keymap.o
  CC [M]  drivers/i2c/busses/i2c-eg20t.o
  CC [M]  drivers/usb/host/ohci-st.o
  CC [M]  drivers/input/input-leds.o
  AR      drivers/input/touchscreen/built-in.a
  CC [M]  drivers/usb/host/ohci-nxp.o
  CC [M]  drivers/usb/host/uhci-hcd.o
  CC [M]  drivers/input/mousedev.o
  CC      drivers/i3c/master/dw-i3c-master.o
  CC [M]  drivers/i2c/busses/i2c-emev2.o
  CC [M]  drivers/i2c/busses/i2c-pxa.o
  CC [M]  drivers/input/evbug.o
  AR      drivers/i3c/master/built-in.a
  CC      drivers/i3c/device.o
  CC [M]  drivers/i2c/busses/i2c-ali15x3.o
  AR      drivers/input/built-in.a
  CC [M]  drivers/usb/host/xhci.o
  CC      drivers/i3c/master.o
  CC [M]  drivers/i2c/busses/i2c-ismt.o
  CC [M]  drivers/i2c/busses/i2c-axxia.o
  AR      drivers/i3c/built-in.a
  CC [M]  drivers/i2c/busses/i2c-designware-platdrv.o
  CC      drivers/pps/pps.o
  CC      drivers/media/i2c/tda7432.o
  CC [M]  drivers/i2c/busses/i2c-designware-baytrail.o
  CC      drivers/pps/kapi.o
  CC [M]  drivers/i2c/busses/i2c-efm32.o
  CC      drivers/media/i2c/tea6415c.o
  CC [M]  drivers/usb/host/xhci-mem.o
  CC      drivers/pps/sysfs.o
  CC [M]  drivers/i2c/busses/i2c-gpio.o
  AR      drivers/pps/clients/built-in.a
  CC [M]  drivers/pps/clients/pps_parport.o
  CC      drivers/media/i2c/saa7110.o
  CC [M]  drivers/i2c/busses/i2c-meson.o
  CC [M]  drivers/pps/clients/pps-gpio.o
  CC      drivers/media/i2c/saa6752hs.o
  CC [M]  drivers/i2c/busses/i2c-mt65xx.o
  CC [M]  drivers/pps/clients/pps-ktimer.o
  CC [M]  drivers/usb/host/xhci-ext-caps.o
  CC [M]  drivers/pps/clients/pps-ldisc.o
  CC      drivers/media/i2c/adv7170.o
  CC [M]  drivers/i2c/busses/i2c-ocores.o
  CC      drivers/pps/kc.o
  CC [M]  drivers/usb/host/xhci-ring.o
  CC      drivers/media/i2c/bt819.o
  AR      drivers/pps/built-in.a
  CC [M]  drivers/usb/host/xhci-hub.o
  CC [M]  drivers/i2c/busses/i2c-pca-platform.o
  CC      drivers/media/i2c/bt866.o
  CC [M]  drivers/i2c/busses/i2c-sh_mobile.o
  CC      drivers/media/i2c/ths7303.o
  CC [M]  drivers/i2c/busses/i2c-stm32f4.o
  CC      drivers/media/tuners/tuner-xc2028.o
  CC      drivers/media/i2c/cs5345.o
  CC [M]  drivers/usb/host/xhci-dbg.o
  CC [M]  drivers/i2c/busses/i2c-sun6i-p2wi.o
  CC      drivers/media/i2c/ak881x.o
  CC [M]  drivers/usb/host/xhci-trace.o
  CC [M]  drivers/i2c/busses/i2c-uniphier.o
  CC      drivers/media/tuners/mt20xx.o
  CC      drivers/media/i2c/msp3400-driver.o
  CC [M]  drivers/i2c/busses/i2c-rcar.o
  CC      drivers/media/tuners/tda9887.o
  CC      drivers/media/i2c/msp3400-kthreads.o
  CC [M]  drivers/usb/host/xhci-mtk-sch.o
  CC [M]  drivers/i2c/busses/i2c-taos-evm.o
  CC      drivers/media/tuners/xc4000.o
  CC      drivers/media/i2c/tda9840.o
  CC [M]  drivers/usb/host/xhci-debugfs.o
  CC [M]  drivers/i2c/busses/i2c-viperboard.o
  CC      drivers/media/i2c/saa7115.o
  LD [M]  drivers/i2c/busses/i2c-designware-platform.o
  AR      drivers/i2c/busses/built-in.a
  CC      drivers/media/tuners/mt2060.o
  CC      drivers/media/i2c/vpx3220.o
  CC [M]  drivers/usb/host/xhci-pci.o
  CC      drivers/media/tuners/e4000.o
  CC      drivers/media/i2c/wm8739.o
  CC [M]  drivers/usb/host/xhci-plat.o
  CC      drivers/i2c/muxes/i2c-mux-reg.o
  CC      drivers/media/i2c/sony-btf-mpx.o
  CC      drivers/media/tuners/tua9001.o
  CC      drivers/i2c/muxes/i2c-arb-gpio-challenge.o
  CC [M]  drivers/usb/host/xhci-mvebu.o
  CC      drivers/media/i2c/max2175.o
  CC [M]  drivers/i2c/muxes/i2c-demux-pinctrl.o
  CC      drivers/media/tuners/fc0012.o
  CC [M]  drivers/usb/host/xhci-histb.o
  CC [M]  drivers/i2c/muxes/i2c-mux-ltc4306.o
  CC      drivers/media/tuners/it913x.o
  CC [M]  drivers/usb/host/xhci-mtk.o
  CC [M]  drivers/media/i2c/saa7127.o
  CC [M]  drivers/i2c/muxes/i2c-mux-pca954x.o
  CC      drivers/media/tuners/tda18250.o
  CC [M]  drivers/usb/host/r8a66597-hcd.o
  CC [M]  drivers/media/i2c/adv7175.o
  CC [M]  drivers/i2c/muxes/i2c-mux-mlxcpld.o
  CC      drivers/media/tuners/tuner-simple.o
  CC [M]  drivers/media/i2c/adv7343.o
  AR      drivers/i2c/muxes/built-in.a
  CC [M]  drivers/i2c/i2c-dev.o
  CC [M]  drivers/media/i2c/bt856.o
  CC [M]  drivers/i2c/i2c-stub.o
  CC      drivers/media/tuners/tuner-types.o
  CC [M]  drivers/usb/host/fsl-mph-dr-of.o
  CC [M]  drivers/media/i2c/ths8200.o
  AR      drivers/i2c/built-in.a
  CC      drivers/media/tuners/xc5000.o
  CC [M]  drivers/media/i2c/tvp5150.o
  CC [M]  drivers/usb/host/ehci-fsl.o
  CC      drivers/media/tuners/fc0011.o
  CC [M]  drivers/usb/host/fotg210-hcd.o
  CC [M]  drivers/media/i2c/tw2804.o
  CC [M]  drivers/media/i2c/tw9910.o
  CC      drivers/media/tuners/fc0013.o
  CC [M]  drivers/media/tuners/mt2266.o
  CC [M]  drivers/media/i2c/cs3308.o
  CC [M]  drivers/media/i2c/uda1342.o
  CC [M]  drivers/media/tuners/mt2131.o
  CC [M]  drivers/media/tuners/mxl5005s.o
  CC [M]  drivers/media/i2c/wm8775.o
  CC [M]  drivers/media/i2c/upd64031a.o
  CC [M]  drivers/media/tuners/mxl5007t.o
  LD [M]  drivers/usb/host/xhci-hcd.o
  LD [M]  drivers/usb/host/xhci-plat-hcd.o
  AR      drivers/usb/host/built-in.a
  CC      drivers/usb/class/usbtmc.o
  CC [M]  drivers/media/i2c/ml86v7667.o
  CC [M]  drivers/media/i2c/cx25840/cx25840-core.o
  CC [M]  drivers/media/tuners/mc44s803.o
  CC [M]  drivers/media/i2c/saa717x.o
  CC [M]  drivers/usb/class/cdc-acm.o
  CC [M]  drivers/media/i2c/ks0127.o
  CC [M]  drivers/media/i2c/cx25840/cx25840-audio.o
  AR      drivers/usb/class/built-in.a
  AR      drivers/usb/storage/built-in.a
  CC [M]  drivers/usb/misc/sisusbvga/sisusb.o
  CC      drivers/usb/early/ehci-dbgp.o
  CC [M]  drivers/media/i2c/cx25840/cx25840-firmware.o
  CC [M]  drivers/media/tuners/max2165.o
  CC [M]  drivers/media/i2c/cx25840/cx25840-vbi.o
  CC      drivers/usb/early/xhci-dbc.o
  CC [M]  drivers/media/tuners/tda18218.o
  LD [M]  drivers/usb/misc/sisusbvga/sisusbvga.o
  CC      drivers/usb/misc/ezusb.o
  CC [M]  drivers/media/i2c/cx25840/cx25840-ir.o
  AR      drivers/usb/early/built-in.a
  CC      drivers/usb/misc/ftdi-elan.o
  CC [M]  drivers/media/tuners/r820t.o
  CC      drivers/ptp/ptp_clock.o
  LD [M]  drivers/media/i2c/cx25840/cx25840.o
  CC [M]  drivers/media/i2c/vp27smpx.o
  CC      drivers/ptp/ptp_chardev.o
  CC [M]  drivers/media/tuners/qm1d1c0042.o
  CC      drivers/usb/misc/idmouse.o
  CC [M]  drivers/media/i2c/ir-kbd-i2c.o
  CC      drivers/ptp/ptp_sysfs.o
  CC [M]  drivers/media/tuners/qm1d1b0004.o
  CC      drivers/usb/misc/iowarrior.o
  CC      drivers/ptp/ptp_dte.o
  CC [M]  drivers/media/i2c/video-i2c.o
  CC [M]  drivers/media/tuners/tea5761.o
  CC      drivers/ptp/ptp_pch.o
  CC      drivers/usb/misc/isight_firmware.o
  CC [M]  drivers/media/tuners/tda18271-maps.o
  CC      drivers/usb/misc/usblcd.o
  CC      drivers/ptp/ptp_kvm.o
  AR      drivers/media/i2c/built-in.a
  CC      drivers/usb/misc/usbtest.o
  CC      drivers/ptp/ptp_qoriq.o
  CC [M]  drivers/media/tuners/tda18271-common.o
  CC [M]  drivers/media/tuners/tda18271-fe.o
  CC      drivers/ptp/ptp_qoriq_debugfs.o
  CC      drivers/usb/misc/usb4604.o
  LD [M]  drivers/media/tuners/tda18271.o
  AR      drivers/ptp/built-in.a
  AR      drivers/media/tuners/built-in.a
  CC      drivers/usb/gadget/udc/bdc/bdc_core.o
  CC      drivers/media/v4l2-core/v4l2-dev.o
  CC      drivers/usb/roles/class.o
  CC      drivers/usb/misc/lvstest.o
  AR      drivers/usb/roles/built-in.a
  CC [M]  drivers/usb/misc/adutux.o
  AR      drivers/usb/gadget/function/built-in.a
  CC [M]  drivers/usb/misc/cypress_cy7c63.o
  CC      drivers/usb/gadget/udc/bdc/bdc_cmd.o
  CC      drivers/media/v4l2-core/v4l2-ioctl.o
  CC      drivers/media/v4l2-core/v4l2-device.o
  CC [M]  drivers/usb/misc/cytherm.o
  CC      drivers/usb/gadget/udc/bdc/bdc_ep.o
  CC [M]  drivers/usb/misc/emi26.o
  CC      drivers/usb/gadget/udc/bdc/bdc_udc.o
  CC [M]  drivers/usb/misc/legousbtower.o
  CC [M]  drivers/usb/misc/ehset.o
  CC      drivers/usb/gadget/udc/bdc/bdc_pci.o
  CC      drivers/media/v4l2-core/v4l2-fh.o
  AR      drivers/usb/gadget/udc/bdc/built-in.a
  CC      drivers/usb/gadget/udc/core.o
  CC      drivers/media/v4l2-core/v4l2-event.o
  AR      drivers/usb/gadget/legacy/built-in.a
  CC [M]  drivers/usb/misc/yurex.o
  CC [M]  drivers/usb/misc/usb251xb.o
  CC      drivers/media/v4l2-core/v4l2-ctrls.o
  CC      drivers/media/v4l2-core/v4l2-subdev.o
  CC [M]  drivers/usb/misc/usb3503.o
  CC      drivers/usb/gadget/udc/trace.o
  AR      drivers/usb/misc/built-in.a
  CC      drivers/usb/gadget/udc/net2280.o
  CC [M]  drivers/media/common/saa7146/saa7146_i2c.o
  CC      drivers/media/v4l2-core/v4l2-clk.o
  CC [M]  drivers/media/common/saa7146/saa7146_core.o
  CC      drivers/usb/gadget/udc/snps_udc_core.o
  CC      drivers/media/v4l2-core/v4l2-async.o
  CC [M]  drivers/media/rc/keymaps/rc-adstech-dvb-t-pci.o
  CC [M]  drivers/media/common/saa7146/saa7146_fops.o
  CC [M]  drivers/media/rc/keymaps/rc-alink-dtu-m.o
  CC      drivers/media/v4l2-core/v4l2-common.o
  CC [M]  drivers/media/rc/keymaps/rc-anysee.o
  CC      drivers/usb/gadget/udc/amd5536udc_pci.o
  CC [M]  drivers/media/common/saa7146/saa7146_video.o
  CC [M]  drivers/media/rc/keymaps/rc-apac-viewcomp.o
  CC      drivers/media/v4l2-core/v4l2-trace.o
  CC      drivers/usb/gadget/udc/fusb300_udc.o
  CC [M]  drivers/media/rc/keymaps/rc-astrometa-t2hybrid.o
  CC [M]  drivers/media/rc/keymaps/rc-asus-pc39.o
  CC      drivers/media/v4l2-core/v4l2-i2c.o
  CC [M]  drivers/media/common/saa7146/saa7146_hlp.o
  CC [M]  drivers/media/rc/keymaps/rc-asus-ps3-100.o
  CC      drivers/usb/gadget/udc/snps_udc_plat.o
  CC      drivers/media/v4l2-core/v4l2-dv-timings.o
  CC [M]  drivers/media/rc/keymaps/rc-ati-tv-wonder-hd-600.o
  CC [M]  drivers/usb/gadget/udc/dummy_hcd.o
  CC [M]  drivers/media/common/saa7146/saa7146_vbi.o
  CC [M]  drivers/media/rc/keymaps/rc-ati-x10.o
  CC [M]  drivers/media/rc/keymaps/rc-avermedia-a16d.o
  CC [M]  drivers/media/v4l2-core/v4l2-fwnode.o
  CC [M]  drivers/media/rc/keymaps/rc-avermedia.o
  LD [M]  drivers/media/common/saa7146/saa7146.o
  LD [M]  drivers/media/common/saa7146/saa7146_vv.o
  CC      drivers/media/common/videobuf2/videobuf2-core.o
  CC [M]  drivers/media/rc/keymaps/rc-avermedia-cardbus.o
  CC [M]  drivers/usb/gadget/udc/goku_udc.o
  CC [M]  drivers/media/v4l2-core/tuner-core.o
  CC [M]  drivers/media/rc/keymaps/rc-avermedia-dvbt.o
  CC [M]  drivers/media/rc/keymaps/rc-avermedia-m135a.o
  CC [M]  drivers/media/rc/keymaps/rc-avermedia-m733a-rm-k6.o
  CC [M]  drivers/usb/gadget/udc/r8a66597-udc.o
  CC [M]  drivers/media/v4l2-core/v4l2-mem2mem.o
  CC [M]  drivers/media/rc/keymaps/rc-avermedia-rm-ks.o
  CC      drivers/media/common/videobuf2/vb2-trace.o
  CC [M]  drivers/media/rc/keymaps/rc-avertv-303.o
  CC      drivers/media/common/videobuf2/videobuf2-v4l2.o
  CC [M]  drivers/media/rc/keymaps/rc-azurewave-ad-tu700.o
  CC [M]  drivers/media/v4l2-core/videobuf-core.o
  CC [M]  drivers/usb/gadget/udc/renesas_usb3.o
  CC [M]  drivers/media/rc/keymaps/rc-beelink-gs1.o
  CC [M]  drivers/media/rc/keymaps/rc-behold.o
  CC      drivers/media/common/videobuf2/videobuf2-memops.o
  CC [M]  drivers/media/rc/keymaps/rc-behold-columbus.o
  CC [M]  drivers/media/v4l2-core/videobuf-dma-sg.o
  CC [M]  drivers/usb/gadget/udc/mv_udc_core.o
  CC [M]  drivers/media/rc/keymaps/rc-budget-ci-old.o
  CC      drivers/media/common/videobuf2/videobuf2-vmalloc.o
  CC [M]  drivers/media/rc/keymaps/rc-cec.o
  LD [M]  drivers/media/v4l2-core/tuner.o
  AR      drivers/media/v4l2-core/built-in.a
  CC [M]  drivers/usb/gadget/udc/udc-xilinx.o
  CC [M]  drivers/media/common/videobuf2/videobuf2-dma-contig.o
  CC [M]  drivers/media/rc/keymaps/rc-cinergy-1400.o
  CC [M]  drivers/media/rc/keymaps/rc-cinergy.o
  AR      drivers/media/common/videobuf2/built-in.a
  CC [M]  drivers/media/common/cx2341x.o
  LD [M]  drivers/usb/gadget/udc/mv_udc.o
  AR      drivers/usb/gadget/udc/built-in.a
  AR      drivers/usb/gadget/built-in.a
  CC [M]  drivers/usb/atm/cxacru.o
  CC [M]  drivers/media/rc/keymaps/rc-d680-dmb.o
  AR      drivers/media/platform/built-in.a
  CC [M]  drivers/media/rc/keymaps/rc-delock-61959.o
  CC      drivers/w1/w1.o
  CC [M]  drivers/media/rc/keymaps/rc-dib0700-nec.o
  CC [M]  drivers/media/common/tveeprom.o
  CC [M]  drivers/media/rc/keymaps/rc-dib0700-rc5.o
  CC [M]  drivers/usb/atm/speedtch.o
  CC [M]  drivers/media/rc/keymaps/rc-digitalnow-tinytwin.o
  CC [M]  drivers/media/common/cypress_firmware.o
  CC      drivers/w1/w1_int.o
  CC [M]  drivers/media/rc/keymaps/rc-digittrade.o
  AR      drivers/media/common/built-in.a
  CC      drivers/power/avs/qcom-cpr.o
  CC [M]  drivers/media/rc/keymaps/rc-dm1105-nec.o
  CC [M]  drivers/usb/atm/ueagle-atm.o
  CC [M]  drivers/media/rc/keymaps/rc-dntv-live-dvb-t.o
  CC      drivers/w1/w1_family.o
  CC      drivers/w1/w1_netlink.o
  AR      drivers/power/avs/built-in.a
  CC [M]  drivers/media/rc/keymaps/rc-dntv-live-dvbt-pro.o
  CC      drivers/power/supply/power_supply_core.o
  CC [M]  drivers/media/rc/keymaps/rc-dtt200u.o
  CC      drivers/w1/w1_io.o
  CC [M]  drivers/media/rc/keymaps/rc-dvbsky.o
  CC [M]  drivers/media/rc/keymaps/rc-dvico-mce.o
  CC      drivers/power/supply/power_supply_sysfs.o
  CC      drivers/w1/masters/sgi_w1.o
  CC [M]  drivers/usb/atm/usbatm.o
  CC [M]  drivers/media/rc/keymaps/rc-dvico-portable.o
  CC      drivers/power/supply/power_supply_leds.o
  CC [M]  drivers/w1/masters/w1-gpio.o
  CC [M]  drivers/media/rc/keymaps/rc-em-terratec.o
  CC      drivers/power/supply/adp5061.o
  CC [M]  drivers/w1/masters/matrox_w1.o
  CC [M]  drivers/media/rc/keymaps/rc-encore-enltv2.o
  CC      drivers/power/supply/max14656_charger_detector.o
  AR      drivers/w1/masters/built-in.a
  CC [M]  drivers/media/rc/keymaps/rc-encore-enltv.o
  CC      drivers/w1/slaves/w1_ds2405.o
  CC [M]  drivers/usb/atm/xusbatm.o
  CC      drivers/power/supply/bq24257_charger.o
  CC      drivers/w1/slaves/w1_ds2438.o
  CC [M]  drivers/media/rc/keymaps/rc-encore-enltv-fm53.o
  CC [M]  drivers/media/rc/keymaps/rc-evga-indtube.o
  CC      drivers/w1/slaves/w1_therm.o
  CC      drivers/power/supply/bq25890_charger.o
  CC [M]  drivers/usb/c67x00/c67x00-drv.o
  CC [M]  drivers/media/rc/keymaps/rc-eztv.o
  CC      drivers/w1/slaves/w1_ds2780.o
  CC      drivers/power/supply/ucs1002_power.o
  CC [M]  drivers/media/rc/keymaps/rc-flydvb.o
  CC [M]  drivers/w1/slaves/w1_smem.o
  CC [M]  drivers/usb/c67x00/c67x00-ll-hpi.o
  CC [M]  drivers/media/rc/keymaps/rc-flyvideo.o
  CC [M]  drivers/w1/slaves/w1_ds2430.o
  CC      drivers/power/supply/generic-adc-battery.o
  CC [M]  drivers/usb/c67x00/c67x00-hcd.o
  CC [M]  drivers/media/rc/keymaps/rc-fusionhdtv-mce.o
  CC [M]  drivers/w1/slaves/w1_ds2805.o
  CC      drivers/power/supply/88pm860x_battery.o
  CC [M]  drivers/usb/c67x00/c67x00-sched.o
  CC [M]  drivers/media/rc/keymaps/rc-gadmei-rm008z.o
  CC [M]  drivers/w1/slaves/w1_ds2433.o
  CC [M]  drivers/media/rc/keymaps/rc-geekbox.o
  CC [M]  drivers/w1/slaves/w1_ds28e17.o
  CC      drivers/power/supply/ds2780_battery.o
  CC [M]  drivers/media/rc/keymaps/rc-genius-tvgo-a11mce.o
  LD [M]  drivers/usb/c67x00/c67x00.o
  CC [M]  drivers/usb/chipidea/core.o
  CC [M]  drivers/w1/slaves/w1_ds2406.o
  CC      drivers/power/supply/goldfish_battery.o
  CC [M]  drivers/media/rc/keymaps/rc-gotview7135.o
  CC [M]  drivers/w1/slaves/w1_ds250x.o
  CC      drivers/power/supply/olpc_battery.o
  CC [M]  drivers/media/rc/keymaps/rc-hisi-poplar.o
  AR      drivers/w1/slaves/built-in.a
  AR      drivers/w1/built-in.a
  CC [M]  drivers/media/rc/keymaps/rc-hisi-tv-demo.o
  CC      drivers/power/supply/sbs-manager.o
  CC [M]  drivers/usb/chipidea/otg.o
  CC [M]  drivers/media/rc/keymaps/rc-imon-mce.o
  CC      drivers/hwmon/hwmon.o
  CC      drivers/power/supply/bq27xxx_battery.o
  CC [M]  drivers/usb/chipidea/debug.o
  CC [M]  drivers/media/rc/keymaps/rc-imon-pad.o
  CC [M]  drivers/media/rc/keymaps/rc-imon-rsc.o
  CC [M]  drivers/usb/chipidea/ulpi.o
  CC      drivers/power/supply/max1721x_battery.o
  CC      drivers/hwmon/hwmon-vid.o
  CC [M]  drivers/media/rc/keymaps/rc-iodata-bctv7e.o
  CC [M]  drivers/usb/chipidea/udc.o
  CC      drivers/power/supply/rt9455_charger.o
  CC [M]  drivers/media/rc/keymaps/rc-it913x-v1.o
  CC      drivers/hwmon/w83791d.o
  CC [M]  drivers/media/rc/keymaps/rc-it913x-v2.o
  CC      drivers/power/supply/isp1704_charger.o
  CC [M]  drivers/media/rc/keymaps/rc-kaiomy.o
  CC [M]  drivers/usb/chipidea/host.o
  CC      drivers/hwmon/adm1026.o
  CC [M]  drivers/media/rc/keymaps/rc-khadas.o
  CC [M]  drivers/usb/chipidea/ci_hdrc_usb2.o
  CC [M]  drivers/media/rc/keymaps/rc-kworld-315u.o
  CC      drivers/power/supply/sc27xx_fuel_gauge.o
  CC [M]  drivers/media/rc/keymaps/rc-kworld-pc150u.o
  CC [M]  drivers/usb/chipidea/ci_hdrc_msm.o
  CC [M]  drivers/media/rc/keymaps/rc-kworld-plus-tv-analog.o
  CC [M]  drivers/power/supply/pda_power.o
  CC [M]  drivers/usb/chipidea/ci_hdrc_zevio.o
  CC      drivers/hwmon/adm1031.o
  CC [M]  drivers/media/rc/keymaps/rc-leadtek-y04g0051.o
  CC [M]  drivers/power/supply/act8945a_charger.o
  CC [M]  drivers/media/rc/keymaps/rc-lme2510.o
  CC [M]  drivers/usb/chipidea/usbmisc_imx.o
  CC [M]  drivers/media/rc/keymaps/rc-manli.o
  CC      drivers/hwmon/adm9240.o
  CC [M]  drivers/power/supply/ltc2941-battery-gauge.o
  CC [M]  drivers/usb/chipidea/ci_hdrc_imx.o
  CC [M]  drivers/media/rc/keymaps/rc-medion-x10.o
  CC [M]  drivers/power/supply/lego_ev3_battery.o
  CC [M]  drivers/media/rc/keymaps/rc-medion-x10-digitainer.o
  CC      drivers/hwmon/adt7x10.o
  CC [M]  drivers/usb/chipidea/ci_hdrc_tegra.o
  CC [M]  drivers/media/rc/keymaps/rc-medion-x10-or2x.o
  CC [M]  drivers/power/supply/rt5033_battery.o
  CC      drivers/hwmon/adt7410.o
  LD [M]  drivers/usb/chipidea/ci_hdrc.o
  CC [M]  drivers/media/rc/keymaps/rc-msi-digivox-ii.o
  CC [M]  drivers/usb/serial/usb-serial.o
  CC      drivers/hwmon/adt7462.o
  CC [M]  drivers/power/supply/pcf50633-charger.o
  CC [M]  drivers/media/rc/keymaps/rc-msi-digivox-iii.o
  CC [M]  drivers/media/rc/keymaps/rc-msi-tvanywhere.o
  CC [M]  drivers/power/supply/lt3651-charger.o
  CC      drivers/hwmon/adt7470.o
  CC [M]  drivers/usb/serial/generic.o
  CC [M]  drivers/media/rc/keymaps/rc-msi-tvanywhere-plus.o
  CC [M]  drivers/power/supply/max77693_charger.o
  CC [M]  drivers/media/rc/keymaps/rc-nebula.o
  CC [M]  drivers/media/rc/keymaps/rc-nec-terratec-cinergy-xs.o
  CC [M]  drivers/usb/serial/bus.o
  CC      drivers/hwmon/coretemp.o
  CC [M]  drivers/power/supply/smb347-charger.o
  CC [M]  drivers/media/rc/keymaps/rc-norwood.o
  CC [M]  drivers/usb/serial/aircable.o
  CC [M]  drivers/media/rc/keymaps/rc-npgtech.o
  CC      drivers/hwmon/dell-smm-hwmon.o
  CC [M]  drivers/power/supply/cros_usbpd-charger.o
  CC [M]  drivers/media/rc/keymaps/rc-odroid.o
  CC [M]  drivers/usb/serial/ark3116.o
  CC [M]  drivers/media/rc/keymaps/rc-pctv-sedna.o
  CC      drivers/hwmon/ds1621.o
  CC [M]  drivers/power/supply/wilco-charger.o
  CC [M]  drivers/usb/serial/belkin_sa.o
  CC [M]  drivers/media/rc/keymaps/rc-pinnacle-color.o
  CC [M]  drivers/power/supply/wm8350_power.o
  CC      drivers/hwmon/fschmd.o
  CC [M]  drivers/media/rc/keymaps/rc-pinnacle-grey.o
  CC [M]  drivers/power/supply/axp20x_battery.o
  CC [M]  drivers/usb/serial/cyberjack.o
  CC [M]  drivers/media/rc/keymaps/rc-pinnacle-pctv-hd.o
  CC      drivers/hwmon/g762.o
  CC [M]  drivers/media/rc/keymaps/rc-pixelview.o
  CC [M]  drivers/power/supply/ds2760_battery.o
  CC [M]  drivers/usb/serial/cypress_m8.o
  CC [M]  drivers/media/rc/keymaps/rc-pixelview-mk12.o
  CC      drivers/hwmon/hih6130.o
  CC [M]  drivers/media/rc/keymaps/rc-pixelview-002t.o
  CC [M]  drivers/power/supply/ds2782_battery.o
  CC [M]  drivers/usb/serial/usb_debug.o
  CC      drivers/hwmon/iio_hwmon.o
  CC [M]  drivers/media/rc/keymaps/rc-pixelview-new.o
  CC [M]  drivers/usb/serial/empeg.o
  CC [M]  drivers/power/supply/ingenic-battery.o
  CC      drivers/hwmon/ina2xx.o
  CC [M]  drivers/media/rc/keymaps/rc-powercolor-real-angel.o
  CC [M]  drivers/power/supply/sbs-charger.o
  CC [M]  drivers/media/rc/keymaps/rc-proteus-2309.o
  CC [M]  drivers/usb/serial/f81232.o
  CC      drivers/hwmon/ina3221.o
  CC [M]  drivers/power/supply/bq27xxx_battery_i2c.o
  CC [M]  drivers/media/rc/keymaps/rc-purpletv.o
  CC      drivers/hwmon/k8temp.o
  CC [M]  drivers/usb/serial/f81534.o
  CC [M]  drivers/power/supply/bq27xxx_battery_hdq.o
  CC [M]  drivers/media/rc/keymaps/rc-pv951.o
  CC [M]  drivers/power/supply/max17040_battery.o
  CC [M]  drivers/media/rc/keymaps/rc-hauppauge.o
  CC      drivers/hwmon/lm90.o
  CC [M]  drivers/media/rc/keymaps/rc-rc6-mce.o
  CC [M]  drivers/usb/serial/ipaq.o
  CC [M]  drivers/power/supply/88pm860x_charger.o
  CC [M]  drivers/media/rc/keymaps/rc-real-audio-220-32-keys.o
  CC      drivers/hwmon/lm95245.o
  CC [M]  drivers/usb/serial/ipw.o
  CC [M]  drivers/power/supply/twl4030_charger.o
  CC [M]  drivers/media/rc/keymaps/rc-reddo.o
  CC [M]  drivers/media/rc/keymaps/rc-snapstream-firefly.o
  CC      drivers/hwmon/max1619.o
  CC [M]  drivers/usb/serial/ir-usb.o
  CC [M]  drivers/power/supply/axp288_fuel_gauge.o
  CC [M]  drivers/media/rc/keymaps/rc-streamzap.o
  CC      drivers/hwmon/max31790.o
  CC [M]  drivers/media/rc/keymaps/rc-tango.o
  CC [M]  drivers/usb/serial/iuu_phoenix.o
  CC [M]  drivers/media/rc/keymaps/rc-tanix-tx3mini.o
  AR      drivers/power/supply/built-in.a
  AR      drivers/power/built-in.a
  CC [M]  drivers/media/rc/keymaps/rc-tanix-tx5max.o
  CC      drivers/hwmon/nct6775.o
  CC [M]  drivers/usb/typec/altmodes/displayport.o
  CC [M]  drivers/media/rc/keymaps/rc-tbs-nec.o
  CC [M]  drivers/usb/serial/keyspan_pda.o
  CC [M]  drivers/media/rc/keymaps/rc-technisat-ts35.o
  LD [M]  drivers/usb/typec/altmodes/typec_displayport.o
  CC [M]  drivers/usb/typec/mux/pi3usb30532.o
  CC [M]  drivers/media/rc/keymaps/rc-technisat-usb2.o
  CC [M]  drivers/usb/serial/kl5kusb105.o
  CC [M]  drivers/usb/typec/tcpm/tcpm.o
  CC [M]  drivers/media/rc/keymaps/rc-terratec-cinergy-c-pci.o
  CC [M]  drivers/media/rc/keymaps/rc-terratec-cinergy-s2-hd.o
  CC [M]  drivers/usb/serial/mct_u232.o
  CC [M]  drivers/media/rc/keymaps/rc-terratec-cinergy-xs.o
  CC      drivers/hwmon/ntc_thermistor.o
  CC [M]  drivers/media/rc/keymaps/rc-terratec-slim.o
  CC [M]  drivers/usb/serial/metro-usb.o
  CC      drivers/hwmon/pcf8591.o
  CC [M]  drivers/usb/typec/tcpm/tcpci.o
  CC [M]  drivers/media/rc/keymaps/rc-terratec-slim-2.o
  CC [M]  drivers/usb/serial/mos7720.o
  CC [M]  drivers/media/rc/keymaps/rc-tevii-nec.o
  CC      drivers/hwmon/tc74.o
  CC [M]  drivers/usb/typec/tcpm/tcpci_rt1711h.o
  CC [M]  drivers/media/rc/keymaps/rc-tivo.o
  CC      drivers/hwmon/tmp102.o
  CC [M]  drivers/media/rc/keymaps/rc-total-media-in-hand.o
  CC [M]  drivers/usb/typec/ucsi/ucsi.o
  CC [M]  drivers/usb/serial/mxuport.o
  CC      drivers/hwmon/w83l785ts.o
  CC [M]  drivers/media/rc/keymaps/rc-total-media-in-hand-02.o
  CC [M]  drivers/media/rc/keymaps/rc-trekstor.o
  CC [M]  drivers/usb/typec/ucsi/trace.o
  CC      drivers/hwmon/w83627hf.o
  CC [M]  drivers/usb/serial/navman.o
  CC [M]  drivers/media/rc/keymaps/rc-tt-1500.o
  CC [M]  drivers/usb/serial/opticon.o
  CC [M]  drivers/media/rc/keymaps/rc-twinhan-dtv-cab-ci.o
  CC [M]  drivers/usb/typec/ucsi/displayport.o
  CC [M]  drivers/usb/typec/ucsi/ucsi_ccg.o
  CC [M]  drivers/media/rc/keymaps/rc-twinhan1027.o
  CC      drivers/hwmon/dme1737.o
  CC [M]  drivers/usb/serial/option.o
  CC [M]  drivers/media/rc/keymaps/rc-vega-s9x.o
  CC [M]  drivers/usb/serial/oti6858.o
  CC [M]  drivers/media/rc/keymaps/rc-videomate-m1f.o
  LD [M]  drivers/usb/typec/ucsi/typec_ucsi.o
  CC [M]  drivers/usb/typec/class.o
  CC [M]  drivers/media/rc/keymaps/rc-videomate-s350.o
  CC      drivers/hwmon/f71805f.o
  CC [M]  drivers/usb/serial/pl2303.o
  CC [M]  drivers/media/rc/keymaps/rc-videomate-tv-pvr.o
  CC [M]  drivers/usb/typec/mux.o
  CC [M]  drivers/media/rc/keymaps/rc-wetek-hub.o
  CC      drivers/hwmon/f71882fg.o
  CC [M]  drivers/usb/serial/qcaux.o
  CC [M]  drivers/media/rc/keymaps/rc-wetek-play2.o
  CC [M]  drivers/usb/typec/bus.o
  CC [M]  drivers/usb/serial/quatech2.o
  CC [M]  drivers/media/rc/keymaps/rc-winfast.o
  CC [M]  drivers/usb/typec/hd3ss3220.o
  CC [M]  drivers/media/rc/keymaps/rc-winfast-usbii-deluxe.o
  CC      drivers/hwmon/fam15h_power.o
  LD [M]  drivers/usb/typec/typec.o
  CC [M]  drivers/usb/serial/sierra.o
  CC [M]  drivers/media/rc/keymaps/rc-su3000.o
  CC [M]  drivers/usb/serial/usb-serial-simple.o
  CC [M]  drivers/media/rc/keymaps/rc-xbox-dvd.o
  CC      drivers/hwmon/g760a.o
  CC      drivers/thermal/thermal_core.o
  CC [M]  drivers/media/rc/keymaps/rc-x96max.o
  CC [M]  drivers/usb/serial/ssu100.o
  CC      drivers/hwmon/ina209.o
  CC [M]  drivers/media/rc/keymaps/rc-zx-irdec.o
  CC [M]  drivers/usb/serial/usb_wwan.o
  CC      drivers/hwmon/jc42.o
  CC      drivers/hwmon/lm73.o
  CC      drivers/thermal/thermal_sysfs.o
  CC [M]  drivers/usb/serial/upd78f0730.o
  CC [M]  drivers/media/rc/rc-main.o
  CC      drivers/hwmon/lm75.o
  CC [M]  drivers/usb/serial/visor.o
  CC      drivers/thermal/thermal_helpers.o
  CC      drivers/hwmon/lm92.o
  CC      drivers/thermal/of-thermal.o
  CC [M]  drivers/usb/serial/wishbone-serial.o
  CC [M]  drivers/media/rc/rc-ir-raw.o
  CC      drivers/hwmon/ltc2947-core.o
  CC [M]  drivers/usb/serial/whiteheat.o
  CC      drivers/thermal/gov_bang_bang.o
  CC      drivers/hwmon/ltc2947-i2c.o
  CC      drivers/thermal/step_wise.o
  CC [M]  drivers/media/rc/lirc_dev.o
  CC      drivers/thermal/user_space.o
  CC [M]  drivers/usb/serial/xsens_mt.o
  CC      drivers/hwmon/max6639.o
  CC      drivers/thermal/broadcom/bcm2835_thermal.o
  CC [M]  drivers/media/rc/ir-sharp-decoder.o
  LD [M]  drivers/usb/serial/usbserial.o
  CC      drivers/thermal/broadcom/brcmstb_thermal.o
  CC      drivers/hwmon/nct7802.o
  CC [M]  drivers/usb/usbip/usbip_common.o
  CC [M]  drivers/media/rc/ir-imon-decoder.o
  CC      drivers/thermal/broadcom/ns-thermal.o
  AR      drivers/thermal/broadcom/built-in.a
  CC      drivers/hwmon/powr1220.o
  CC      drivers/thermal/samsung/exynos_tmu.o
  CC [M]  drivers/media/rc/rc-loopback.o
  CC      drivers/hwmon/raspberrypi-hwmon.o
  CC [M]  drivers/usb/usbip/usbip_event.o
  AR      drivers/thermal/samsung/built-in.a
  LD [M]  drivers/media/rc/rc-core.o
  CC      drivers/thermal/intel/int340x_thermal/int3400_thermal.o
  CC      drivers/hwmon/sht3x.o
  CC [M]  drivers/usb/usbip/vhci_sysfs.o
  CC [M]  drivers/media/pci/saa7146/hexium_orion.o
  CC      drivers/thermal/intel/int340x_thermal/int340x_thermal_zone.o
  CC      drivers/hwmon/smm665.o
  CC [M]  drivers/usb/usbip/vhci_tx.o
  CC [M]  drivers/media/pci/saa7146/hexium_gemini.o
  CC      drivers/thermal/intel/int340x_thermal/int3402_thermal.o
  CC      drivers/hwmon/thmc50.o
  CC [M]  drivers/usb/usbip/vhci_rx.o
  CC      drivers/thermal/intel/int340x_thermal/int3403_thermal.o
  CC      drivers/hwmon/vt8231.o
  CC [M]  drivers/usb/usbip/vhci_hcd.o
  CC [M]  drivers/media/pci/dt3155/dt3155.o
  CC      drivers/thermal/intel/int340x_thermal/processor_thermal_device.o
  CC [M]  drivers/hwmon/asus_atk0110.o
  CC      drivers/thermal/intel/int340x_thermal/acpi_thermal_rel.o
  CC [M]  drivers/usb/usbip/stub_dev.o
  CC      drivers/media/usb/hackrf/hackrf.o
  CC [M]  drivers/thermal/intel/int340x_thermal/int3406_thermal.o
  CC [M]  drivers/hwmon/w83792d.o
  CC [M]  drivers/usb/usbip/stub_main.o
  AR      drivers/thermal/intel/int340x_thermal/built-in.a
  CC      drivers/thermal/intel/intel_pch_thermal.o
  CC [M]  drivers/usb/usbip/stub_rx.o
  AR      drivers/media/usb/hackrf/built-in.a
  CC [M]  drivers/media/usb/cx231xx/cx231xx-video.o
  CC [M]  drivers/hwmon/ad7414.o
  CC      drivers/thermal/intel/intel_soc_dts_iosf.o
  CC [M]  drivers/usb/usbip/stub_tx.o
  CC [M]  drivers/hwmon/adc128d818.o
  CC      drivers/thermal/intel/intel_soc_dts_thermal.o
  CC [M]  drivers/media/usb/cx231xx/cx231xx-i2c.o
  CC [M]  drivers/usb/usbip/vudc_dev.o
  CC [M]  drivers/hwmon/ads7828.o
  CC [M]  drivers/thermal/intel/intel_powerclamp.o
  CC [M]  drivers/hwmon/adt7411.o
  CC [M]  drivers/media/usb/cx231xx/cx231xx-cards.o
  CC [M]  drivers/usb/usbip/vudc_sysfs.o
  AR      drivers/thermal/intel/built-in.a
  CC      drivers/thermal/thermal_hwmon.o
  CC [M]  drivers/hwmon/aspeed-pwm-tacho.o
  CC      drivers/thermal/rcar_thermal.o
  CC [M]  drivers/media/usb/cx231xx/cx231xx-core.o
  CC [M]  drivers/hwmon/atxp1.o
  CC [M]  drivers/usb/usbip/vudc_tx.o
  CC      drivers/thermal/kirkwood_thermal.o
  CC [M]  drivers/hwmon/gl518sm.o
  CC      drivers/thermal/armada_thermal.o
  CC [M]  drivers/usb/usbip/vudc_rx.o
  CC      drivers/thermal/hisi_thermal.o
  CC [M]  drivers/media/usb/cx231xx/cx231xx-avcore.o
  CC [M]  drivers/hwmon/gl520sm.o
  CC      drivers/thermal/mtk_thermal.o
  CC [M]  drivers/usb/usbip/vudc_transfer.o
  CC      drivers/thermal/zx2967_thermal.o
  CC [M]  drivers/hwmon/gpio-fan.o
  CC [M]  drivers/thermal/thermal_mmio.o
  CC [M]  drivers/media/usb/cx231xx/cx231xx-417.o
  CC [M]  drivers/usb/usbip/vudc_main.o
  CC [M]  drivers/hwmon/i5500_temp.o
  CC [M]  drivers/thermal/max77620_thermal.o
  LD [M]  drivers/usb/usbip/usbip-core.o
  LD [M]  drivers/usb/usbip/vhci-hcd.o
  LD [M]  drivers/usb/usbip/usbip-host.o
  LD [M]  drivers/usb/usbip/usbip-vudc.o
  AR      drivers/usb/built-in.a
  CC [M]  drivers/hwmon/k10temp.o
  CC [M]  drivers/thermal/qoriq_thermal.o
  CC [M]  drivers/media/usb/cx231xx/cx231xx-pcb-cfg.o
  CC [M]  drivers/thermal/thermal-generic-adc.o
  CC [M]  drivers/hwmon/lm63.o
  GEN     drivers/eisa/devlist.h
  CC [M]  drivers/media/usb/cx231xx/cx231xx-vbi.o
  CC      drivers/eisa/pci_eisa.o
  CC [M]  drivers/hwmon/lm80.o
  CC [M]  drivers/media/usb/cx231xx/cx231xx-input.o
  CC [M]  drivers/thermal/qcom/tsens.o
  CC      drivers/eisa/eisa-bus.o
  CC [M]  drivers/thermal/qcom/tsens-common.o
  LD [M]  drivers/media/usb/cx231xx/cx231xx.o
  CC [M]  drivers/hwmon/lm85.o
  CC [M]  drivers/media/usb/em28xx/em28xx-core.o
  AR      drivers/eisa/built-in.a
  CC [M]  drivers/media/usb/hdpvr/hdpvr-control.o
  CC [M]  drivers/thermal/qcom/tsens-v0_1.o
  CC [M]  drivers/hwmon/lm87.o
  CC [M]  drivers/thermal/qcom/tsens-8960.o
  CC [M]  drivers/media/usb/hdpvr/hdpvr-core.o
  CC [M]  drivers/media/usb/em28xx/em28xx-i2c.o
  CC [M]  drivers/thermal/qcom/tsens-v2.o
  CC [M]  drivers/hwmon/lm93.o
  CC [M]  drivers/thermal/qcom/tsens-v1.o
  CC [M]  drivers/media/usb/hdpvr/hdpvr-video.o
  CC [M]  drivers/thermal/qcom/qcom-spmi-temp-alarm.o
  CC [M]  drivers/media/usb/em28xx/em28xx-cards.o
  LD [M]  drivers/thermal/qcom/qcom_tsens.o
  CC [M]  drivers/thermal/spear_thermal.o
  CC [M]  drivers/media/usb/hdpvr/hdpvr-i2c.o
  CC [M]  drivers/hwmon/ltc2990.o
  CC [M]  drivers/thermal/rcar_gen3_thermal.o
  CC [M]  drivers/media/usb/em28xx/em28xx-camera.o
  CC [M]  drivers/hwmon/ltc4222.o
  LD [M]  drivers/media/usb/hdpvr/hdpvr.o
  CC [M]  drivers/media/usb/em28xx/em28xx-video.o
  CC [M]  drivers/thermal/dove_thermal.o
  CC [M]  drivers/hwmon/max16065.o
  CC [M]  drivers/thermal/tango_thermal.o
  CC [M]  drivers/hwmon/max197.o
  CC [M]  drivers/thermal/imx_thermal.o
  CC [M]  drivers/hwmon/mcp3021.o
  CC      drivers/opp/core.o
  CC [M]  drivers/hwmon/pc87427.o
  AR      drivers/thermal/built-in.a
  CC [M]  drivers/media/usb/em28xx/em28xx-vbi.o
  CC      drivers/opp/cpu.o
  CC [M]  drivers/hwmon/pwm-fan.o
  CC      drivers/cpufreq/cpufreq.o
  CC      drivers/opp/of.o
  CC [M]  drivers/media/usb/em28xx/em28xx-input.o
  CC [M]  drivers/hwmon/tmp103.o
  CC      drivers/opp/debugfs.o
  LD [M]  drivers/media/usb/em28xx/em28xx.o
  LD [M]  drivers/media/usb/em28xx/em28xx-v4l.o
  LD [M]  drivers/media/usb/em28xx/em28xx-rc.o
  CC [M]  drivers/media/usb/stk1160/stk1160-core.o
  CC [M]  drivers/hwmon/tmp108.o
  AR      drivers/opp/built-in.a
  CC [M]  drivers/hwmon/tmp401.o
  CC [M]  drivers/media/usb/stk1160/stk1160-v4l.o
  CC      drivers/cpufreq/freq_table.o
  CC [M]  drivers/hwmon/acpi_power_meter.o
  CC [M]  drivers/media/usb/usbvision/usbvision-core.o
  CC      drivers/cpufreq/cpufreq_governor.o
  CC [M]  drivers/media/usb/stk1160/stk1160-video.o
  CC [M]  drivers/hwmon/asb100.o
  CC      drivers/cpufreq/cpufreq_governor_attr_set.o
  CC      drivers/cpufreq/longrun.o
  CC [M]  drivers/media/usb/stk1160/stk1160-i2c.o
  CC [M]  drivers/hwmon/w83793.o
  CC [M]  drivers/media/usb/usbvision/usbvision-video.o
  CC      drivers/cpufreq/intel_pstate.o
  CC [M]  drivers/media/usb/stk1160/stk1160-ac97.o
  CC [M]  drivers/hwmon/w83795.o
  LD [M]  drivers/media/usb/stk1160/stk1160.o
  CC      drivers/cpufreq/cpufreq_performance.o
  CC [M]  drivers/media/usb/usbvision/usbvision-i2c.o
  CC [M]  drivers/hwmon/w83781d.o
  CC [M]  drivers/media/usb/usbvision/usbvision-cards.o
  CC      drivers/cpufreq/cpufreq_powersave.o
  CC      drivers/cpufreq/cpufreq_conservative.o
  AR      drivers/media/usb/built-in.a
  CC [M]  drivers/hwmon/adm1177.o
  LD [M]  drivers/media/usb/usbvision/usbvision.o
  CC [M]  drivers/hwmon/adt7475.o
  CC      drivers/cpufreq/cpufreq-dt-platdev.o
  AR      drivers/media/built-in.a
  CC [M]  drivers/hwmon/it87.o
  CC [M]  drivers/hwmon/lm77.o
  CC      drivers/cpufreq/acpi-cpufreq.o
  CC      drivers/cpufreq/powernow-k6.o
  CC      drivers/cpufreq/speedstep-lib.o
  AR      drivers/mmc/built-in.a
  CC      drivers/cpufreq/speedstep-centrino.o
  CC      drivers/cpuidle/cpuidle.o
  CC [M]  drivers/hwmon/lm78.o
  CC      drivers/leds/led-core.o
  CC      drivers/cpufreq/p4-clockmod.o
  CC [M]  drivers/hwmon/max31730.o
  CC [M]  drivers/cpufreq/pcc-cpufreq.o
  CC      drivers/cpuidle/driver.o
  CC      drivers/leds/led-class.o
  CC      drivers/cpuidle/governor.o
  CC [M]  drivers/hwmon/tmp421.o
  CC      drivers/leds/led-triggers.o
  CC [M]  drivers/cpufreq/cpufreq-dt.o
  CC      drivers/cpuidle/sysfs.o
  CC [M]  drivers/hwmon/via-cputemp.o
  CC      drivers/leds/leds-lp3952.o
  CC [M]  drivers/cpufreq/powernow-k8.o
  CC      drivers/cpuidle/governors/ladder.o
  CC [M]  drivers/hwmon/vt1211.o
  CC      drivers/leds/leds-lp8788.o
  AR      drivers/cpuidle/governors/built-in.a
  CC      drivers/cpuidle/poll_state.o
  CC [M]  drivers/cpufreq/speedstep-ich.o
  CC      drivers/cpuidle/cpuidle-haltpoll.o
  CC      drivers/leds/leds-tlc591xx.o
  CC [M]  drivers/hwmon/w83l786ng.o
  AR      drivers/cpuidle/built-in.a
  CC [M]  drivers/cpufreq/speedstep-smi.o
  CC      drivers/leds/leds-ot200.o
  CC      drivers/firmware/memmap.o
  CC      drivers/leds/leds-pca963x.o
  AR      drivers/cpufreq/built-in.a
  CC      drivers/firmware/qemu_fw_cfg.o
  AR      drivers/hwmon/built-in.a
  CC      drivers/leds/leds-regulator.o
  CC      drivers/firmware/broadcom/bcm47xx_nvram.o
  CC      drivers/leds/leds-lm355x.o
  CC      drivers/crypto/ccree/cc_driver.o
  CC      drivers/firmware/efi/efi.o
  CC      drivers/firmware/broadcom/tee_bnxt_fw.o
  CC      drivers/leds/leds-is31fl32xx.o
  AR      drivers/firmware/broadcom/built-in.a
  CC      drivers/leds/trigger/ledtrig-oneshot.o
  CC      drivers/crypto/ccree/cc_buffer_mgr.o
  CC      drivers/firmware/efi/vars.o
  CC      drivers/leds/trigger/ledtrig-gpio.o
  CC      drivers/leds/leds-88pm860x.o
  CC      drivers/leds/trigger/ledtrig-transient.o
  CC      drivers/leds/trigger/ledtrig-camera.o
  CC      drivers/firmware/efi/reboot.o
  CC      drivers/crypto/ccree/cc_request_mgr.o
  CC      drivers/leds/leds-lm3530.o
  CC      drivers/leds/trigger/ledtrig-panic.o
  CC      drivers/firmware/efi/memattr.o
  CC      drivers/leds/trigger/ledtrig-heartbeat.o
  CC      drivers/leds/trigger/ledtrig-activity.o
  CC      drivers/firmware/efi/tpm.o
  CC      drivers/crypto/ccree/cc_cipher.o
  CC      drivers/leds/leds-pca9532.o
  CC      drivers/leds/trigger/ledtrig-netdev.o
  CC      drivers/firmware/efi/capsule.o
  CC      drivers/crypto/mediatek/mtk-platform.o
  CC [M]  drivers/leds/trigger/ledtrig-timer.o
  CC      drivers/crypto/ccree/cc_hash.o
  CC      drivers/firmware/efi/memmap.o
  CC [M]  drivers/leds/trigger/ledtrig-audio.o
  CC      drivers/crypto/mediatek/mtk-aes.o
  AR      drivers/leds/trigger/built-in.a
  CC      drivers/firmware/efi/esrt.o
  CC      drivers/leds/leds-wm8350.o
  CC      drivers/firmware/efi/cper.o
  CC      drivers/crypto/mediatek/mtk-sha.o
  CC      drivers/leds/leds-pwm.o
  CC      drivers/crypto/ccree/cc_aead.o
  CC      drivers/leds/leds-syscon.o
  CC      drivers/firmware/efi/runtime-wrappers.o
  AR      drivers/crypto/mediatek/built-in.a
  CC      drivers/firmware/efi/capsule-loader.o
  CC      drivers/leds/leds-nic78bx.o
  CC [M]  drivers/leds/leds-an30259a.o
  CC      drivers/firmware/efi/earlycon.o
  CC      drivers/crypto/qat/qat_common/adf_cfg.o
  CC      drivers/crypto/ccree/cc_sram_mgr.o
  CC [M]  drivers/leds/leds-bcm6328.o
  CC      drivers/crypto/qat/qat_common/adf_isr.o
  CC      drivers/firmware/efi/cper-x86.o
  CC      drivers/crypto/ccree/cc_debugfs.o
  CC [M]  drivers/leds/leds-lm3533.o
  AR      drivers/firmware/efi/built-in.a
  CC      drivers/crypto/qat/qat_common/adf_ctl_drv.o
  CC      drivers/firmware/arm_scpi.o
  CC [M]  drivers/leds/leds-net48xx.o
  CC      drivers/crypto/ccree/cc_pm.o
  CC      drivers/crypto/qat/qat_common/adf_dev_mgr.o
  CC [M]  drivers/leds/leds-wrap.o
  CC [M]  drivers/firmware/edd.o
  AR      drivers/crypto/ccree/built-in.a
  CC [M]  drivers/leds/leds-lp3944.o
  CC      drivers/crypto/qat/qat_dh895xccvf/adf_drv.o
  CC      drivers/crypto/qat/qat_common/adf_init.o
  CC [M]  drivers/leds/leds-lp55xx-common.o
  CC [M]  drivers/firmware/scpi_pm_domain.o
  CC      drivers/crypto/qat/qat_dh895xccvf/adf_dh895xccvf_hw_data.o
  CC      drivers/crypto/qat/qat_common/adf_accel_engine.o
  AR      drivers/firmware/built-in.a
  CC      drivers/clocksource/acpi_pm.o
  AR      drivers/crypto/qat/qat_dh895xccvf/built-in.a
  CC [M]  drivers/leds/leds-lp5562.o
  CC      drivers/crypto/qat/qat_common/adf_aer.o
  CC      drivers/hid/hid-core.o
  CC      drivers/clocksource/i8253.o
  CC [M]  drivers/leds/leds-pca955x.o
  CC      drivers/crypto/qat/qat_common/adf_transport.o
  CC      drivers/clocksource/timer-of.o
  CC [M]  drivers/leds/leds-blinkm.o
  CC      drivers/clocksource/timer-probe.o
  CC      drivers/crypto/qat/qat_common/adf_admin.o
  CC      drivers/clocksource/timer-atmel-pit.o
  CC [M]  drivers/leds/leds-mlxreg.o
  CC      drivers/hid/hid-input.o
  CC [M]  drivers/leds/leds-lm3692x.o
  CC      drivers/clocksource/sh_cmt.o
  CC      drivers/crypto/qat/qat_common/adf_hw_arbiter.o
  CC [M]  drivers/leds/leds-lp8860.o
  CC      drivers/crypto/qat/qat_common/qat_crypto.o
  CC      drivers/clocksource/renesas-ostm.o
  CC [M]  drivers/leds/leds-tca6507.o
  CC      drivers/clocksource/em_sti.o
  CC      drivers/crypto/qat/qat_common/qat_algs.o
  CC      drivers/hid/hid-quirks.o
  CC      drivers/clocksource/mmio.o
  CC [M]  drivers/leds/leds-adp5520.o
  CC      drivers/hid/hid-debug.o
  CC      drivers/clocksource/timer-digicolor.o
  CC      drivers/crypto/qat/qat_common/qat_asym_algs.o
  CC [M]  drivers/leds/leds-ti-lmu-common.o
  CC      drivers/clocksource/dw_apb_timer.o
  CC      drivers/hid/hidraw.o
  AR      drivers/leds/built-in.a
  CC      drivers/crypto/qat/qat_common/qat_uclo.o
  CC      drivers/clocksource/timer-fttmr010.o
  CC      drivers/clocksource/timer-atlas7.o
  CC      drivers/hid/hid-emsff.o
  CC      drivers/clocksource/timer-pxa.o
  CC      drivers/crypto/qat/qat_c3xxxvf/adf_drv.o
  CC      drivers/hid/hid-ite.o
  CC      drivers/crypto/qat/qat_common/qat_hal.o
  CC      drivers/clocksource/timer-prima2.o
  CC      drivers/hid/hid-maltron.o
  CC      drivers/crypto/qat/qat_c3xxxvf/adf_c3xxxvf_hw_data.o
  CC      drivers/clocksource/timer-meson6.o
  CC      drivers/clocksource/timer-tegra.o
  CC      drivers/hid/hid-mf.o
  AR      drivers/crypto/qat/qat_c3xxxvf/built-in.a
  CC      drivers/clocksource/timer-vt8500.o
  CC      drivers/crypto/qat/qat_common/adf_transport_debug.o
  CC      drivers/crypto/qat/qat_c62xvf/adf_drv.o
  CC      drivers/hid/hid-ortek.o
  CC      drivers/clocksource/timer-zevio.o
  CC      drivers/hid/hid-pl.o
  CC      drivers/clocksource/bcm_kona_timer.o
  CC      drivers/crypto/qat/qat_common/adf_sriov.o
  CC      drivers/crypto/qat/qat_c62xvf/adf_c62xvf_hw_data.o
  CC      drivers/hid/hid-petalynx.o
  CC      drivers/clocksource/timer-cadence-ttc.o
  AR      drivers/crypto/qat/qat_c62xvf/built-in.a
  CC      drivers/hid/hid-picolcd_core.o
  CC      drivers/crypto/qat/qat_common/adf_pf2vf_msg.o
  CC      drivers/clocksource/samsung_pwm_timer.o
  CC      drivers/crypto/qat/qat_common/adf_vf2pf_msg.o
  CC      drivers/clocksource/timer-mediatek.o
  CC      drivers/crypto/qat/qat_common/adf_vf_isr.o
  CC      drivers/hid/hid-picolcd_debugfs.o
  CC      drivers/of/base.o
  CC      drivers/clocksource/timer-nps.o
  CC      drivers/clocksource/timer-oxnas-rps.o
  AR      drivers/crypto/qat/qat_common/built-in.a
  CC [M]  drivers/crypto/qat/qat_c3xxx/adf_drv.o
  CC      drivers/hid/hid-redragon.o
  CC      drivers/clocksource/timer-owl.o
  CC [M]  drivers/crypto/qat/qat_c3xxx/adf_c3xxx_hw_data.o
  CC      drivers/hid/hid-saitek.o
  CC      drivers/of/device.o
  CC      drivers/clocksource/timer-npcm7xx.o
  LD [M]  drivers/crypto/qat/qat_c3xxx/qat_c3xxx.o
  CC      drivers/hid/hid-gaff.o
  CC [M]  drivers/crypto/qat/qat_c62x/adf_drv.o
  CC      drivers/clocksource/armv7m_systick.o
  CC      drivers/of/platform.o
  CC      drivers/clocksource/timer-integrator-ap.o
  CC      drivers/hid/hid-twinhan.o
  CC [M]  drivers/crypto/qat/qat_c62x/adf_c62x_hw_data.o
  CC      drivers/clocksource/timer-imx-sysctr.o
  CC      drivers/of/property.o
  CC      drivers/clocksource/h8300_tpu.o
  CC      drivers/hid/usbhid/hid-core.o
  LD [M]  drivers/crypto/qat/qat_c62x/qat_c62x.o
  AR      drivers/crypto/qat/built-in.a
  CC      drivers/crypto/qce/core.o
  CC      drivers/clocksource/ingenic-timer.o
  CC      drivers/of/kobj.o
  CC      drivers/crypto/qce/common.o
  CC      drivers/clocksource/timer-microchip-pit64b.o
  CC      drivers/of/dynamic.o
  AR      drivers/hid/usbhid/built-in.a
  CC      drivers/hid/i2c-hid/i2c-hid-core.o
  AR      drivers/clocksource/built-in.a
  CC      drivers/of/fdt.o
  CC      drivers/crypto/qce/dma.o
  CC      drivers/crypto/qce/sha.o
  CC      drivers/of/address.o
  CC      drivers/hid/intel-ish-hid/ishtp/init.o
  AR      drivers/hid/i2c-hid/built-in.a
  CC      drivers/of/irq.o
  CC      drivers/hid/intel-ish-hid/ishtp/hbm.o
  AR      drivers/crypto/qce/built-in.a
  CC      drivers/crypto/atmel-sha.o
  CC      drivers/crypto/atmel-i2c.o
  CC      drivers/of/of_net.o
  CC      drivers/hid/intel-ish-hid/ishtp/client.o
  CC      drivers/hid/intel-ish-hid/ishtp/bus.o
  CC      drivers/of/resolver.o
  CC      drivers/of/overlay.o
  CC      drivers/crypto/atmel-sha204a.o
  CC      drivers/hid/intel-ish-hid/ishtp/dma-if.o
  CC      drivers/hid/intel-ish-hid/ishtp/client-buffers.o
  CC      drivers/of/pdt.o
  CC      drivers/crypto/exynos-rng.o
  CC [M]  drivers/crypto/amlogic/amlogic-gxl-core.o
  CC      drivers/hid/intel-ish-hid/ipc/ipc.o
  AR      drivers/of/built-in.a
  CC      drivers/hid/uhid.o
  CC [M]  drivers/staging/media/meson/vdec/esparser.o
  CC [M]  drivers/crypto/amlogic/amlogic-gxl-cipher.o
  CC      drivers/hid/intel-ish-hid/ipc/pci-ish.o
  CC      drivers/hid/intel-ish-hid/ishtp-hid.o
  CC [M]  drivers/staging/media/meson/vdec/vdec.o
  LD [M]  drivers/crypto/amlogic/amlogic-gxl-crypto.o
  CC      drivers/hid/hid-alps.o
  CC [M]  drivers/crypto/virtio/virtio_crypto_algs.o
  CC      drivers/hid/intel-ish-hid/ishtp-hid-client.o
  CC [M]  drivers/staging/media/meson/vdec/vdec_helpers.o
  CC [M]  drivers/staging/media/phy-rockchip-dphy-rx0/phy-rockchip-dphy-rx0.o
  CC [M]  drivers/crypto/virtio/virtio_crypto_mgr.o
  CC [M]  drivers/hid/intel-ish-hid/ishtp-fw-loader.o
  CC      drivers/hid/hid-belkin.o
  CC [M]  drivers/crypto/virtio/virtio_crypto_core.o
  CC [M]  drivers/staging/media/meson/vdec/vdec_platform.o
  AR      drivers/hid/intel-ish-hid/built-in.a
  LD [M]  drivers/hid/intel-ish-hid/intel-ishtp-loader.o
  CC [M]  drivers/crypto/atmel-aes.o
  CC      drivers/hid/hid-cougar.o
  CC [M]  drivers/staging/media/meson/vdec/vdec_1.o
  CC      drivers/hid/hid-cp2112.o
  LD [M]  drivers/crypto/virtio/virtio_crypto.o
  CC      drivers/hid/hid-cypress.o
  CC [M]  drivers/staging/media/meson/vdec/codec_mpeg12.o
  CC      drivers/hid/hid-elan.o
  LD [M]  drivers/staging/media/meson/vdec/meson-vdec.o
  CC [M]  drivers/crypto/atmel-tdes.o
  CC      drivers/hid/hid-elecom.o
  CC [M]  drivers/staging/vme/devices/vme_user.o
  CC      drivers/platform/x86/pmc_atom.o
  CC      drivers/hid/hid-elo.o
  CC      drivers/platform/x86/intel_speed_select_if/isst_if_common.o
  CC      drivers/hid/hid-icade.o
  CC [M]  drivers/crypto/hifn_795x.o
  AR      drivers/staging/iio/addac/built-in.a
  CC      drivers/staging/iio/cdc/ad7746.o
  CC      drivers/hid/hid-lcpower.o
  CC      drivers/platform/x86/intel_speed_select_if/isst_if_mmio.o
  AR      drivers/staging/iio/cdc/built-in.a
  CC      drivers/hid/hid-microsoft.o
  CC [M]  drivers/staging/iio/impedance-analyzer/ad5933.o
  CC [M]  drivers/crypto/img-hash.o
  CC      drivers/platform/x86/intel_speed_select_if/isst_if_mbox_pci.o
  CC      drivers/hid/hid-monterey.o
  CC      drivers/platform/x86/intel_speed_select_if/isst_if_mbox_msr.o
  CC      drivers/hid/hid-nti.o
  CC      drivers/staging/iio/meter/ade7854.o
  CC [M]  drivers/crypto/picoxcell_crypto.o
  CC      drivers/hid/hid-picolcd_lcd.o
  CC      drivers/staging/iio/meter/ade7854-i2c.o
  AR      drivers/platform/x86/intel_speed_select_if/built-in.a
  CC      drivers/platform/x86/dcdbas.o
  CC      drivers/hid/hid-roccat.o
  AR      drivers/staging/iio/meter/built-in.a
  AR      drivers/staging/iio/built-in.a
  CC      drivers/staging/android/ion/ion.o
  CC      drivers/platform/x86/acerhdf.o
  CC [M]  drivers/crypto/qcom-rng.o
  CC      drivers/hid/hid-roccat-common.o
  CC      drivers/platform/x86/hdaps.o
  CC      drivers/staging/android/ion/ion_heap.o
  CC [M]  drivers/crypto/s5p-sss.o
  CC      drivers/hid/hid-roccat-arvo.o
  CC      drivers/platform/x86/fujitsu-tablet.o
  CC      drivers/hid/hid-roccat-isku.o
  CC      drivers/staging/android/ion/ion_system_heap.o
  CC      drivers/platform/x86/intel_scu_ipc.o
  CC      drivers/hid/hid-roccat-kone.o
  AR      drivers/crypto/built-in.a
  CC      drivers/staging/android/ion/ion_page_pool.o
  CC      drivers/platform/x86/intel_scu_ipcutil.o
  CC      drivers/platform/mellanox/mlxreg-io.o
  CC      drivers/platform/x86/ibm_rtl.o
  CC      drivers/hid/hid-roccat-koneplus.o
  CC [M]  drivers/platform/mellanox/mlxreg-hotplug.o
  AR      drivers/staging/android/ion/built-in.a
  AR      drivers/staging/android/built-in.a
  CC      drivers/staging/goldfish/goldfish_audio.o
  CC      drivers/platform/x86/intel_mid_powerbtn.o
  CC      drivers/hid/hid-roccat-konepure.o
  AR      drivers/platform/mellanox/built-in.a
  CC      drivers/hid/hid-roccat-kovaplus.o
  AR      drivers/staging/goldfish/built-in.a
  CC      drivers/platform/x86/intel_pmc_ipc.o
  CC      drivers/staging/gs_fpgaboot/gs_fpgaboot.o
  AR      drivers/staging/unisys/built-in.a
  CC      drivers/staging/gs_fpgaboot/io.o
  CC      drivers/hid/hid-roccat-lua.o
  CC      drivers/hid/hid-roccat-pyra.o
  AR      drivers/staging/gs_fpgaboot/built-in.a
  CC      drivers/platform/x86/system76_acpi.o
  CC      drivers/staging/clocking-wizard/clk-xlnx-clock-wizard.o
  CC      drivers/hid/hid-roccat-ryos.o
  CC [M]  drivers/platform/x86/eeepc-laptop.o
  AR      drivers/staging/clocking-wizard/built-in.a
  CC      drivers/platform/olpc/olpc-ec.o
  CC      drivers/staging/most/core.o
  CC      drivers/hid/hid-roccat-savu.o
  AR      drivers/platform/olpc/built-in.a
  CC      drivers/hid/hid-rmi.o
  AR      drivers/platform/goldfish/built-in.a
  CC [M]  drivers/platform/goldfish/goldfish_pipe.o
  CC [M]  drivers/platform/x86/classmate-laptop.o
  CC      drivers/staging/most/configfs.o
  CC      drivers/hid/hid-samsung.o
  CC [M]  drivers/platform/x86/gpd-pocket-fan.o
  CC      drivers/hid/hid-u2fzero.o
  CC      drivers/staging/most/video/video.o
  CC [M]  drivers/platform/x86/thinkpad_acpi.o
  CC      drivers/platform/chrome/chromeos_pstore.o
  CC      drivers/hid/hid-uclogic-core.o
  CC      drivers/platform/chrome/chromeos_tbmc.o
  CC      drivers/hid/hid-uclogic-rdesc.o
  AR      drivers/staging/most/video/built-in.a
  CC      drivers/staging/most/usb/usb.o
  CC      drivers/platform/chrome/cros_ec_proto.o
  CC      drivers/hid/hid-uclogic-params.o
  CC      drivers/platform/chrome/cros_ec_trace.o
  AR      drivers/staging/most/usb/built-in.a
  CC      drivers/hid/hid-xinmo.o
  CC [M]  drivers/staging/most/net/net.o
  CC      drivers/hid/wacom_wac.o
  CC [M]  drivers/platform/chrome/cros_ec.o
  LD [M]  drivers/staging/most/net/most_net.o
  AR      drivers/staging/most/built-in.a
  CC [M]  drivers/staging/axis-fifo/axis-fifo.o
  CC [M]  drivers/platform/x86/fujitsu-laptop.o
  CC [M]  drivers/platform/chrome/cros_ec_i2c.o
  CC [M]  drivers/staging/fieldbus/anybuss/host.o
  CC [M]  drivers/platform/x86/topstar-laptop.o
  CC [M]  drivers/platform/chrome/cros_usbpd_logger.o
  CC [M]  drivers/platform/x86/toshiba_haps.o
  CC [M]  drivers/platform/chrome/wilco_ec/core.o
  CC      drivers/hid/wacom_sys.o
  CC [M]  drivers/platform/x86/intel_int0002_vgpio.o
  LD [M]  drivers/staging/fieldbus/anybuss/anybuss_core.o
  CC [M]  drivers/staging/fieldbus/dev_core.o
  CC [M]  drivers/platform/chrome/wilco_ec/keyboard_leds.o
  LD [M]  drivers/staging/fieldbus/fieldbus_dev.o
  CC [M]  drivers/staging/fwserial/fwserial.o
  CC [M]  drivers/platform/chrome/wilco_ec/mailbox.o
  CC [M]  drivers/platform/x86/samsung-laptop.o
  CC [M]  drivers/platform/chrome/wilco_ec/properties.o
  CC [M]  drivers/hid/hid-apple.o
  CC [M]  drivers/platform/chrome/wilco_ec/sysfs.o
  CC [M]  drivers/hid/hid-aureal.o
  CC [M]  drivers/platform/chrome/wilco_ec/debugfs.o
  CC [M]  drivers/platform/x86/apple-gmux.o
  CC [M]  drivers/staging/fwserial/dma_fifo.o
  CC [M]  drivers/hid/hid-chicony.o
  CC [M]  drivers/platform/chrome/wilco_ec/event.o
  LD [M]  drivers/staging/fwserial/firewire-serial.o
  CC [M]  drivers/staging/gdm724x/gdm_lte.o
  CC [M]  drivers/platform/x86/intel-rst.o
  CC [M]  drivers/hid/hid-cmedia.o
  LD [M]  drivers/platform/chrome/wilco_ec/wilco_ec.o
  LD [M]  drivers/platform/chrome/wilco_ec/wilco_ec_debugfs.o
  LD [M]  drivers/platform/chrome/wilco_ec/wilco_ec_events.o
  CC [M]  drivers/platform/chrome/cros_ec_ishtp.o
  CC [M]  drivers/hid/hid-dr.o
  CC [M]  drivers/platform/x86/intel-smartconnect.o
  CC [M]  drivers/platform/chrome/cros_ec_lpc.o
  CC [M]  drivers/hid/hid-gembird.o
  CC [M]  drivers/staging/gdm724x/netlink_k.o
  CC [M]  drivers/platform/x86/intel_punit_ipc.o
  CC [M]  drivers/hid/hid-kye.o
  CC [M]  drivers/platform/x86/intel_pmc_core.o
  CC [M]  drivers/platform/chrome/cros_ec_lpc_mec.o
  CC [M]  drivers/hid/hid-lg-g15.o
  CC [M]  drivers/staging/gdm724x/gdm_usb.o
  CC [M]  drivers/platform/chrome/cros_ec_chardev.o
  CC [M]  drivers/hid/hid-logitech-hidpp.o
  CC [M]  drivers/platform/x86/intel_pmc_core_pltdrv.o
  CC [M]  drivers/platform/chrome/cros_ec_debugfs.o
  CC [M]  drivers/staging/gdm724x/gdm_endian.o
  CC [M]  drivers/staging/gdm724x/gdm_tty.o
  CC [M]  drivers/platform/x86/mlx-platform.o
  CC [M]  drivers/platform/chrome/cros_ec_sensorhub.o
  CC [M]  drivers/staging/gdm724x/gdm_mux.o
  CC [M]  drivers/platform/chrome/cros_ec_sysfs.o
  AR      drivers/platform/x86/built-in.a
  CC [M]  drivers/hid/hid-speedlink.o
  CC [M]  drivers/hid/hid-sunplus.o
  LD [M]  drivers/staging/gdm724x/gdmulte.o
  LD [M]  drivers/staging/gdm724x/gdmtty.o
  LD [M]  drivers/platform/chrome/cros_ec_lpcs.o
  AR      drivers/platform/chrome/built-in.a
  AR      drivers/platform/built-in.a
  CC [M]  drivers/hid/hid-tivo.o
  CC [M]  drivers/hid/hid-udraw-ps3.o
  CC      drivers/mailbox/mailbox.o
  CC [M]  drivers/staging/sm750fb/sm750.o
  CC [M]  drivers/staging/uwb/whci.o
  CC [M]  drivers/hid/hid-led.o
  CC      drivers/mailbox/mailbox-test.o
  CC [M]  drivers/staging/uwb/whc-rc.o
  CC [M]  drivers/staging/sm750fb/sm750_hw.o
  CC [M]  drivers/hid/hid-axff.o
  CC      drivers/mailbox/platform_mhu.o
  CC [M]  drivers/hid/hid-creative-sb0540.o
  CC      drivers/mailbox/pcc.o
  CC [M]  drivers/staging/uwb/i1480/dfu/dfu.o
  CC [M]  drivers/staging/sm750fb/sm750_accel.o
  CC [M]  drivers/hid/hid-betopff.o
  CC      drivers/mailbox/armada-37xx-rwtm-mailbox.o
  CC [M]  drivers/staging/uwb/i1480/dfu/mac.o
  CC [M]  drivers/staging/sm750fb/sm750_cursor.o
  CC [M]  drivers/hid/hid-bigbenff.o
  CC      drivers/mailbox/bcm-pdc-mailbox.o
  CC [M]  drivers/staging/uwb/i1480/dfu/phy.o
  CC [M]  drivers/staging/sm750fb/ddk750_chip.o
  CC [M]  drivers/hid/hid-corsair.o
  CC [M]  drivers/staging/sm750fb/ddk750_power.o
  CC [M]  drivers/staging/uwb/i1480/dfu/usb.o
  CC [M]  drivers/staging/sm750fb/ddk750_mode.o
  CC [M]  drivers/hid/hid-gfrm.o
  CC [M]  drivers/mailbox/imx-mailbox.o
  CC [M]  drivers/staging/sm750fb/ddk750_display.o
  CC [M]  drivers/mailbox/mailbox-altera.o
  CC [M]  drivers/hid/hid-google-hammer.o
  LD [M]  drivers/staging/uwb/i1480/dfu/i1480-dfu-usb.o
  CC [M]  drivers/staging/uwb/i1480/i1480-est.o
  CC [M]  drivers/staging/sm750fb/ddk750_swi2c.o
  CC [M]  drivers/mailbox/hi3660-mailbox.o
  CC [M]  drivers/hid/hid-lenovo.o
  CC [M]  drivers/staging/sm750fb/ddk750_sii164.o
  CC [M]  drivers/staging/uwb/address.o
  CC [M]  drivers/staging/sm750fb/ddk750_dvi.o
  CC [M]  drivers/mailbox/hi6220-mailbox.o
  CC [M]  drivers/mailbox/mtk-cmdq-mailbox.o
  CC [M]  drivers/staging/sm750fb/ddk750_hwi2c.o
  CC [M]  drivers/staging/uwb/allocator.o
  LD [M]  drivers/staging/sm750fb/sm750fb.o
  CC [M]  drivers/staging/uwb/beacon.o
  CC [M]  drivers/hid/hid-lg.o
  CC [M]  drivers/hid/hid-lg2ff.o
  AR      drivers/mailbox/built-in.a
  CC [M]  drivers/hid/hid-lg4ff.o
  CC [M]  drivers/staging/uwb/driver.o
  CC [M]  drivers/staging/uwb/drp.o
  CC      drivers/remoteproc/remoteproc_core.o
  CC [M]  drivers/hid/hid-logitech-dj.o
  CC      drivers/rpmsg/rpmsg_core.o
  CC [M]  drivers/staging/uwb/drp-avail.o
  CC      drivers/rpmsg/virtio_rpmsg_bus.o
  CC [M]  drivers/staging/uwb/drp-ie.o
  CC      drivers/remoteproc/remoteproc_debugfs.o
  CC [M]  drivers/hid/hid-ntrig.o
  CC [M]  drivers/staging/uwb/est.o
  CC      drivers/remoteproc/remoteproc_sysfs.o
  CC      drivers/rpmsg/rpmsg_char.o
  CC [M]  drivers/hid/hid-penmount.o
  CC      drivers/remoteproc/remoteproc_virtio.o
  CC [M]  drivers/staging/uwb/ie.o
  CC [M]  drivers/hid/hid-retrode.o
  CC [M]  drivers/rpmsg/qcom_glink_rpm.o
  CC [M]  drivers/hid/hid-tmff.o
  CC      drivers/remoteproc/remoteproc_elf_loader.o
  CC [M]  drivers/staging/uwb/ie-rcv.o
  CC [M]  drivers/rpmsg/qcom_glink_native.o
  LD [M]  drivers/hid/hid-logitech.o
  AR      drivers/hid/built-in.a
  CC [M]  drivers/staging/uwb/lc-dev.o
  AR      drivers/remoteproc/built-in.a
  CC [M]  drivers/staging/uwb/lc-rc.o
  CC [M]  drivers/staging/uwb/neh.o
  CC [M]  drivers/staging/wusbcore/host/whci/asl.o
  CC [M]  drivers/staging/uwb/pal.o
  AR      drivers/rpmsg/built-in.a
  CC [M]  drivers/staging/wusbcore/host/whci/debug.o
  CC [M]  drivers/staging/wusbcore/host/whci/hcd.o
  CC [M]  drivers/staging/uwb/radio.o
  CC [M]  drivers/staging/uwb/reset.o
  CC [M]  drivers/staging/uwb/rsv.o
  CC [M]  drivers/staging/wusbcore/host/whci/hw.o
  CC      drivers/soundwire/bus_type.o
  CC [M]  drivers/staging/wusbcore/host/whci/init.o
  CC      drivers/soundwire/bus.o
  CC [M]  drivers/staging/uwb/scan.o
  CC [M]  drivers/staging/wusbcore/crypto.o
  CC [M]  drivers/staging/wusbcore/host/whci/int.o
  CC      drivers/soundwire/slave.o
  CC [M]  drivers/staging/uwb/uwb-debug.o
  CC      drivers/soundwire/mipi_disco.o
  CC [M]  drivers/staging/wusbcore/host/whci/pzl.o
  CC      drivers/devfreq/event/exynos-ppmu.o
  CC      drivers/soundwire/stream.o
  CC [M]  drivers/staging/uwb/uwbd.o
  CC [M]  drivers/staging/wusbcore/host/whci/qset.o
  CC [M]  drivers/devfreq/event/rockchip-dfi.o
  CC [M]  drivers/staging/uwb/umc-bus.o
  AR      drivers/devfreq/event/built-in.a
  CC      drivers/soundwire/debugfs.o
  CC      drivers/devfreq/devfreq.o
  CC [M]  drivers/staging/uwb/umc-dev.o
  CC [M]  drivers/staging/wusbcore/host/whci/wusb.o
  AR      drivers/soundwire/built-in.a
  CC [M]  drivers/staging/uwb/umc-drv.o
  CC      drivers/devfreq/devfreq-event.o
  CC [M]  drivers/staging/uwb/hwa-rc.o
  LD [M]  drivers/staging/wusbcore/host/whci/whci-hcd.o
  CC [M]  drivers/staging/wusbcore/devconnect.o
  CC [M]  drivers/staging/wusbcore/dev-sysfs.o
  CC      drivers/devfreq/governor_simpleondemand.o
  CC      drivers/devfreq/governor_performance.o
  LD [M]  drivers/staging/uwb/uwb.o
  LD [M]  drivers/staging/uwb/umc.o
  CC      drivers/devfreq/governor_passive.o
  CC      drivers/devfreq/exynos-bus.o
  CC [M]  drivers/staging/wusbcore/mmc.o
  CC [M]  drivers/staging/wusbcore/pal.o
  CC [M]  drivers/staging/wusbcore/rh.o
  CC      drivers/devfreq/tegra30-devfreq.o
  CC [M]  drivers/devfreq/governor_powersave.o
  CC [M]  drivers/staging/wusbcore/reservation.o
  CC      drivers/extcon/extcon.o
  AR      drivers/devfreq/built-in.a
  CC [M]  drivers/staging/wusbcore/security.o
  CC      drivers/iio/industrialio-core.o
  CC      drivers/vme/vme.o
  CC [M]  drivers/staging/wusbcore/wusbhc.o
  CC      drivers/extcon/devres.o
  CC      drivers/extcon/extcon-gpio.o
  CC      drivers/iio/industrialio-event.o
  LD [M]  drivers/staging/wusbcore/wusbcore.o
  AR      drivers/staging/built-in.a
  CC [M]  drivers/extcon/extcon-fsa9480.o
  AR      drivers/vme/boards/built-in.a
  CC      drivers/mcb/mcb-core.o
  CC      drivers/vme/bridges/vme_ca91cx42.o
  CC      drivers/iio/inkern.o
  CC [M]  drivers/extcon/extcon-intel-int3496.o
  CC      drivers/mcb/mcb-parse.o
  CC      drivers/mcb/mcb-lpc.o
  CC [M]  drivers/extcon/extcon-max77693.o
  CC      drivers/iio/industrialio-buffer.o
  CC      drivers/vme/bridges/vme_fake.o
  AR      drivers/mcb/built-in.a
  CC      drivers/vme/bridges/vme_tsi148.o
  CC [M]  drivers/extcon/extcon-usbc-cros-ec.o
  CC      drivers/iio/industrialio-trigger.o
  CC      drivers/iio/industrialio-configfs.o
  AR      drivers/extcon/built-in.a
  CC      drivers/iio/accel/mma7660.o
  AR      drivers/vme/bridges/built-in.a
  AR      drivers/vme/built-in.a
  CC      drivers/iio/adc/ltc2471.o
  CC      drivers/ras/ras.o
  CC      drivers/iio/accel/mxc6255.o
  CC      drivers/thunderbolt/nhi.o
  CC      drivers/iio/adc/ti-ads1015.o
  CC      drivers/iio/accel/da280.o
  CC      drivers/ras/debugfs.o
  CC      drivers/iio/accel/da311.o
  CC      drivers/iio/adc/vf610_adc.o
  CC      drivers/thunderbolt/nhi_ops.o
  AR      drivers/ras/built-in.a
  CC      drivers/iio/adc/ad7606_par.o
  CC      drivers/iio/accel/kxcjk-1013.o
  CC      drivers/thunderbolt/ctl.o
  CC      drivers/iio/adc/ad7606.o
  CC      drivers/iio/adc/bcm_iproc_adc.o
  CC [M]  drivers/iio/accel/mma9551_core.o
  CC      drivers/thunderbolt/tb.o
  CC      drivers/iio/adc/fsl-imx25-gcq.o
  CC      drivers/thunderbolt/switch.o
  CC      drivers/iio/adc/hx711.o
  CC [M]  drivers/iio/accel/mma9553.o
  CC      drivers/iio/adc/ingenic-adc.o
  CC      drivers/iio/adc/max1363.o
  CC [M]  drivers/iio/accel/st_accel_i2c.o
  CC      drivers/iio/buffer/industrialio-triggered-buffer.o
  CC      drivers/thunderbolt/cap.o
  CC      drivers/iio/adc/mt6577_auxadc.o
  CC [M]  drivers/iio/accel/bma400_core.o
  CC      drivers/iio/buffer/kfifo_buf.o
  CC      drivers/thunderbolt/path.o
  CC      drivers/iio/adc/men_z188_adc.o
  CC      drivers/iio/buffer/industrialio-hw-consumer.o
  CC [M]  drivers/iio/accel/bma400_i2c.o
  CC      drivers/iio/adc/stm32-dfsdm-core.o
  CC [M]  drivers/iio/accel/bmc150-accel-core.o
  CC      drivers/thunderbolt/tunnel.o
  CC [M]  drivers/iio/buffer/industrialio-buffer-cb.o
  CC      drivers/iio/adc/stm32-dfsdm-adc.o
  AR      drivers/iio/buffer/built-in.a
  CC      drivers/iio/adc/twl6030-gpadc.o
  CC [M]  drivers/iio/accel/bmc150-accel-i2c.o
  CC      drivers/thunderbolt/eeprom.o
  CC [M]  drivers/iio/accel/dmard06.o
  CC      drivers/iio/adc/viperboard_adc.o
  CC      drivers/iio/chemical/vz89x.o
  CC [M]  drivers/iio/accel/dmard09.o
  CC      drivers/thunderbolt/domain.o
  CC [M]  drivers/iio/adc/axp20x_adc.o
  CC [M]  drivers/iio/chemical/sps30.o
  CC [M]  drivers/iio/accel/mma8452.o
  CC [M]  drivers/iio/adc/ltc2485.o
  CC      drivers/thunderbolt/dma_port.o
  CC [M]  drivers/iio/chemical/ccs811.o
  CC [M]  drivers/iio/adc/mcp3422.o
  CC [M]  drivers/iio/accel/mma9551.o
  CC [M]  drivers/iio/chemical/ams-iaq-core.o
  CC      drivers/thunderbolt/icm.o
  CC [M]  drivers/iio/adc/ad7091r5.o
  AR      drivers/iio/chemical/built-in.a
  CC [M]  drivers/iio/accel/st_accel_core.o
  CC [M]  drivers/iio/adc/ad7091r-base.o
  CC [M]  drivers/iio/accel/st_accel_buffer.o
  CC [M]  drivers/iio/adc/axp288_adc.o
  AR      drivers/iio/common/hid-sensors/built-in.a
  CC      drivers/iio/common/ms_sensors/ms_sensors_i2c.o
  CC      drivers/thunderbolt/property.o
  LD [M]  drivers/iio/accel/st_accel.o
  AR      drivers/iio/accel/built-in.a
  CC [M]  drivers/iio/adc/dln2-adc.o
  CC      drivers/thunderbolt/xdomain.o
  CC [M]  drivers/iio/adc/imx7d_adc.o
  AR      drivers/iio/common/ms_sensors/built-in.a
  CC      drivers/iio/dac/ad5380.o
  AR      drivers/iio/common/st_sensors/built-in.a
  CC [M]  drivers/iio/common/st_sensors/st_sensors_i2c.o
  CC      drivers/thunderbolt/lc.o
  CC [M]  drivers/iio/adc/intel_mrfld_adc.o
  CC [M]  drivers/iio/common/st_sensors/st_sensors_core.o
  CC      drivers/iio/dac/ad5592r-base.o
  CC [M]  drivers/iio/adc/lp8788_adc.o
  CC      drivers/thunderbolt/tmu.o
  CC      drivers/iio/dac/ad5593r.o
  CC [M]  drivers/iio/adc/ltc2497.o
  CC [M]  drivers/iio/common/st_sensors/st_sensors_buffer.o
  CC      drivers/thunderbolt/usb4.o
  CC      drivers/iio/dac/cio-dac.o
  CC [M]  drivers/iio/adc/ltc2497-core.o
  CC [M]  drivers/iio/common/st_sensors/st_sensors_trigger.o
  CC [M]  drivers/iio/dac/ad5446.o
  CC [M]  drivers/iio/adc/qcom-spmi-iadc.o
  AR      drivers/thunderbolt/built-in.a
  CC [M]  drivers/iio/adc/qcom-vadc-common.o
  LD [M]  drivers/iio/common/st_sensors/st_sensors.o
  AR      drivers/iio/common/built-in.a
  CC [M]  drivers/iio/adc/qcom-spmi-vadc.o
  CC [M]  drivers/iio/dac/ad5686.o
  CC [M]  drivers/iio/dac/ad5696-i2c.o
  CC [M]  drivers/iio/adc/qcom-pm8xxx-xoadc.o
  CC [M]  drivers/iio/dac/mcp4725.o
  CC      drivers/iio/gyro/mpu3050-core.o
  CC [M]  drivers/iio/adc/stx104.o
  CC      drivers/hwtracing/intel_th/core.o
  CC [M]  drivers/iio/dac/ti-dac5571.o
  CC [M]  drivers/iio/adc/sun4i-gpadc-iio.o
  CC      drivers/iio/gyro/mpu3050-i2c.o
  CC [M]  drivers/iio/adc/sd_adc_modulator.o
  CC [M]  drivers/iio/dac/ad5064.o
  CC      drivers/hwtracing/intel_th/debug.o
  CC [M]  drivers/iio/gyro/itg3200_core.o
  CC      drivers/hwtracing/intel_th/pci.o
  AR      drivers/iio/adc/built-in.a
  CC [M]  drivers/iio/gyro/itg3200_buffer.o
  CC [M]  drivers/iio/dac/max5821.o
  CC      drivers/hwtracing/stm/core.o
  CC      drivers/hwtracing/intel_th/acpi.o
  AR      drivers/iio/dac/built-in.a
  AR      drivers/iio/gyro/built-in.a
  LD [M]  drivers/iio/gyro/itg3200.o
  CC      drivers/hwtracing/stm/policy.o
  CC      drivers/iio/health/max30100.o
  CC [M]  drivers/hwtracing/intel_th/gth.o
  CC [M]  drivers/iio/health/max30102.o
  CC      drivers/hwtracing/stm/p_basic.o
  CC [M]  drivers/hwtracing/intel_th/sth.o
  AR      drivers/hwtracing/intel_th/built-in.a
  AR      drivers/iio/health/built-in.a
  LD [M]  drivers/hwtracing/intel_th/intel_th_gth.o
  CC      drivers/hwtracing/stm/console.o
  CC      drivers/iio/humidity/si7020.o
  CC      drivers/android/binder.o
  CC [M]  drivers/hwtracing/stm/p_sys-t.o
  LD [M]  drivers/hwtracing/intel_th/intel_th_sth.o
  CC      drivers/android/binder_alloc.o
  CC      drivers/iio/humidity/dht11.o
  AR      drivers/hwtracing/stm/built-in.a
  LD [M]  drivers/hwtracing/stm/stm_p_sys-t.o
  CC      drivers/android/binderfs.o
  CC      drivers/iio/humidity/htu21.o
  CC [M]  drivers/iio/humidity/am2315.o
  CC [M]  drivers/iio/humidity/si7005.o
  CC      drivers/iio/imu/inv_mpu6050/inv_mpu_core.o
  CC      drivers/iio/imu/inv_mpu6050/inv_mpu_ring.o
  AR      drivers/iio/humidity/built-in.a
  CC      drivers/iio/imu/inv_mpu6050/inv_mpu_trigger.o
  AR      drivers/iio/imu/st_lsm6dsx/built-in.a
  CC      drivers/iio/imu/inv_mpu6050/inv_mpu_aux.o
  CC [M]  drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_i2c.o
  CC      drivers/nvmem/core.o
  CC [M]  drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_core.o
  CC      drivers/iio/imu/inv_mpu6050/inv_mpu_magn.o
  CC      drivers/iio/imu/inv_mpu6050/inv_mpu_i2c.o
  CC      drivers/nvmem/nvmem-sysfs.o
  CC [M]  drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_buffer.o
  AR      drivers/android/built-in.a
  CC      drivers/iio/imu/inv_mpu6050/inv_mpu_acpi.o
  CC      drivers/nvmem/mtk-efuse.o
  CC      drivers/fpga/fpga-mgr.o
  AR      drivers/iio/imu/inv_mpu6050/built-in.a
  CC      drivers/nvmem/qcom-spmi-sdam.o
  CC [M]  drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_shub.o
  CC      drivers/nvmem/rockchip-efuse.o
  CC      drivers/iio/light/isl29125.o
  CC [M]  drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_i3c.o
  CC      drivers/fpga/socfpga-a10.o
  CC      drivers/nvmem/stm32-romem.o
  CC      drivers/iio/light/lv0104cs.o
  LD [M]  drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.o
  CC [M]  drivers/iio/imu/fxos8700_core.o
  CC      drivers/nvmem/vf610-ocotp.o
  CC      drivers/fpga/zynq-fpga.o
  CC      drivers/iio/light/max44000.o
  CC      drivers/nvmem/snvs_lpgpr.o
  CC [M]  drivers/iio/imu/fxos8700_i2c.o
  CC      drivers/fpga/zynqmp-fpga.o
  CC      drivers/nvmem/sc27xx-efuse.o
  CC      drivers/iio/light/max44009.o
  AR      drivers/iio/imu/built-in.a
  CC      drivers/fpga/fpga-bridge.o
  CC [M]  drivers/nvmem/imx-iim.o
  CC      drivers/iio/magnetometer/ak8975.o
  CC      drivers/iio/light/stk3310.o
  CC      drivers/fpga/xilinx-pr-decoupler.o
  CC [M]  drivers/nvmem/imx-ocotp.o
  CC [M]  drivers/fpga/altera-cvp.o
  CC      drivers/iio/magnetometer/mag3110.o
  CC      drivers/iio/light/tcs3414.o
  CC [M]  drivers/nvmem/lpc18xx_eeprom.o
  CC [M]  drivers/nvmem/qfprom.o
  CC      drivers/iio/light/vl6180.o
  CC [M]  drivers/fpga/altera-pr-ip-core.o
  CC      drivers/iio/magnetometer/mmc35240.o
  CC [M]  drivers/nvmem/rockchip-otp.o
  AR      drivers/fpga/built-in.a
  CC      drivers/iio/multiplexer/iio-mux.o
  CC      drivers/iio/light/acpi-als.o
  CC      drivers/iio/magnetometer/rm3100-core.o
  CC [M]  drivers/nvmem/uniphier-efuse.o
  AR      drivers/iio/multiplexer/built-in.a
  LD [M]  drivers/nvmem/nvmem-imx-iim.o
  CC      drivers/fsi/fsi-core.o
  CC      drivers/iio/magnetometer/rm3100-i2c.o
  CC      drivers/iio/light/adux1020.o
  LD [M]  drivers/nvmem/nvmem-imx-ocotp.o
  LD [M]  drivers/nvmem/nvmem_lpc18xx_eeprom.o
  LD [M]  drivers/nvmem/nvmem_qfprom.o
  LD [M]  drivers/nvmem/nvmem-rockchip-otp.o
  LD [M]  drivers/nvmem/nvmem-uniphier-efuse.o
  AR      drivers/nvmem/built-in.a
  CC      drivers/iio/light/cm32181.o
  CC [M]  drivers/iio/magnetometer/ak8974.o
  CC [M]  drivers/iio/magnetometer/bmc150_magn.o
  CC      drivers/iio/light/cm3605.o
  AR      drivers/iio/orientation/built-in.a
  CC      drivers/tee/tee_core.o
  CC      drivers/iio/light/isl29018.o
  CC [M]  drivers/fsi/fsi-master-gpio.o
  CC [M]  drivers/iio/magnetometer/bmc150_magn_i2c.o
  CC      drivers/iio/light/si1133.o
  AR      drivers/iio/magnetometer/built-in.a
  CC      drivers/tee/tee_shm.o
  CC      drivers/mux/core.o
  CC [M]  drivers/fsi/fsi-scom.o
  CC      drivers/tee/tee_shm_pool.o
  CC      drivers/iio/light/tcs3472.o
  CC [M]  drivers/mux/adg792a.o
  AR      drivers/tee/built-in.a
  CC      drivers/iio/light/tsl2583.o
  CC      drivers/iio/light/veml6030.o
  CC [M]  drivers/fsi/fsi-master-hub.o
  CC [M]  drivers/mux/gpio.o
  CC [M]  drivers/fsi/fsi-master-aspeed.o
  CC [M]  drivers/mux/mmio.o
  CC      drivers/iio/light/veml6070.o
  CC      drivers/counter/counter.o
  LD [M]  drivers/mux/mux-adg792a.o
  LD [M]  drivers/mux/mux-gpio.o
  LD [M]  drivers/mux/mux-mmio.o
  CC [M]  drivers/iio/light/adjd_s311.o
  AR      drivers/mux/built-in.a
  CC [M]  drivers/iio/light/al3320a.o
  CC [M]  drivers/fsi/fsi-master-ast-cf.o
  CC      drivers/counter/ftm-quaddec.o
  CC      drivers/counter/104-quad-8.o
  CC [M]  drivers/iio/light/apds9960.o
  CC      drivers/iio/potentiometer/ds1803.o
  CC      drivers/counter/stm32-timer-cnt.o
  CC [M]  drivers/iio/light/bh1780.o
  CC [M]  drivers/iio/potentiometer/ad5272.o
  CC      drivers/counter/stm32-lptimer-cnt.o
  AR      drivers/fsi/built-in.a
  CC [M]  drivers/iio/light/lm3533-als.o
  CC [M]  drivers/iio/potentiometer/mcp4531.o
  AR      drivers/counter/built-in.a
  CC [M]  drivers/iio/light/pa12203001.o
  AR      drivers/iio/potentiometer/built-in.a
  CC [M]  drivers/iio/light/rpr0521.o
  CC [M]  drivers/iio/light/tsl2563.o
  CC [M]  drivers/hsi/clients/hsi_char.o
  CC [M]  drivers/edac/i5000_edac.o
  CC [M]  drivers/input/gameport/gameport.o
  CC [M]  drivers/iio/light/vcnl4035.o
  CC [M]  drivers/hsi/hsi_core.o
  CC [M]  drivers/input/gameport/emu10k1-gp.o
  CC [M]  drivers/edac/i5100_edac.o
  CC [M]  drivers/iio/light/apds9300.o
  CC [M]  drivers/input/gameport/fm801-gp.o
  CC [M]  drivers/hsi/hsi_boardinfo.o
  CC [M]  drivers/iio/light/cm3232.o
  CC [M]  drivers/edac/e7xxx_edac.o
  CC [M]  drivers/input/gameport/ns558.o
  LD [M]  drivers/hsi/hsi.o
  CC [M]  drivers/edac/e752x_edac.o
  CC [M]  drivers/iio/light/cm3323.o
  CC [M]  drivers/iio/light/cm36651.o
  CC [M]  drivers/memstick/core/memstick.o
  CC [M]  drivers/edac/i3000_edac.o
  CC      drivers/iio/pressure/ms5611_core.o
  AR      drivers/iio/light/built-in.a
  CC      drivers/iio/pressure/t5403.o
  CC [M]  drivers/edac/edac_mc.o
  CC      drivers/iio/pressure/dlhl60d.o
  CC      drivers/iio/proximity/isl29501.o
  CC [M]  drivers/memstick/host/tifm_ms.o
  CC      drivers/iio/pressure/dps310.o
  CC      drivers/iio/proximity/mb1232.o
  CC [M]  drivers/edac/edac_device.o
  CC [M]  drivers/memstick/host/jmb38x_ms.o
  CC [M]  drivers/iio/pressure/hp03.o
  CC      drivers/iio/proximity/sx9500.o
  CC [M]  drivers/iio/pressure/hp206c.o
  CC [M]  drivers/edac/edac_mc_sysfs.o
  CC [M]  drivers/memstick/host/r592.o
  CC      drivers/iio/proximity/vl53l0x-i2c.o
  CC [M]  drivers/iio/pressure/abp060mg.o
  CC [M]  drivers/edac/edac_module.o
  CC      drivers/iio/proximity/ping.o
  CC [M]  drivers/iio/pressure/st_pressure_core.o
  CC [M]  drivers/iio/proximity/pulsedlight-lidar-lite-v2.o
  CC [M]  drivers/memstick/host/rtsx_pci_ms.o
  CC [M]  drivers/edac/edac_device_sysfs.o
  CC [M]  drivers/iio/pressure/st_pressure_buffer.o
  CC [M]  drivers/iio/proximity/srf08.o
  CC [M]  drivers/iio/pressure/zpa2326.o
  CC [M]  drivers/edac/wq.o
  CC [M]  drivers/iio/pressure/zpa2326_i2c.o
  CC [M]  drivers/iio/proximity/rfd77402.o
  CC [M]  drivers/edac/edac_pci.o
  CC [M]  drivers/edac/edac_pci_sysfs.o
  CC [M]  drivers/iio/pressure/st_pressure_i2c.o
  AR      drivers/iio/proximity/built-in.a
  CC [M]  drivers/edac/amd76x_edac.o
  LD [M]  drivers/iio/pressure/st_pressure.o
  AR      drivers/iio/pressure/built-in.a
  CC      drivers/iio/temperature/mlx90632.o
  CC [M]  drivers/edac/i5400_edac.o
  CC [M]  drivers/rapidio/devices/rio_mport_cdev.o
  CC [M]  drivers/siox/siox-core.o
  CC [M]  drivers/iio/temperature/tmp006.o
  CC [M]  drivers/edac/i82875p_edac.o
  CC [M]  drivers/iio/temperature/tmp007.o
  CC [M]  drivers/edac/i3200_edac.o
  CC [M]  drivers/rapidio/devices/tsi721.o
  CC [M]  drivers/siox/siox-bus-gpio.o
  CC [M]  drivers/iio/temperature/tsys01.o
  LD [M]  drivers/edac/edac_core.o
  CC      drivers/iio/trigger/stm32-timer-trigger.o
  CC [M]  drivers/slimbus/core.o
  AR      drivers/iio/temperature/built-in.a
  CC [M]  drivers/slimbus/messaging.o
  LD [M]  drivers/rapidio/devices/tsi721_mport.o
  CC [M]  drivers/rapidio/switches/idt_gen3.o
  CC      drivers/iio/industrialio-sw-device.o
  CC [M]  drivers/slimbus/sched.o
  CC [M]  drivers/iio/trigger/iio-trig-interrupt.o
  CC [M]  drivers/rapidio/rio.o
  CC [M]  drivers/slimbus/stream.o
  CC [M]  drivers/iio/trigger/stm32-lptimer-trigger.o
  CC [M]  drivers/slimbus/qcom-ctrl.o
  AR      drivers/iio/trigger/built-in.a
  AR      drivers/iio/built-in.a
  CC [M]  drivers/slimbus/qcom-ngd-ctrl.o
  LD [M]  drivers/slimbus/slimbus.o
  AR      drivers/built-in.a
  LD [M]  drivers/slimbus/slim-qcom-ctrl.o
  CC [M]  drivers/rapidio/rio-access.o
  CC [M]  drivers/rapidio/rio-driver.o
  CC [M]  drivers/rapidio/rio-sysfs.o
  LD [M]  drivers/rapidio/rapidio.o
  LD [M]  drivers/slimbus/slim-qcom-ngd-ctrl.o
  CHK     include/generated/autoksyms.h
./scripts/gen_autoksyms.sh: 24: ./scripts/gen_autoksyms.sh: [[: not found
./scripts/gen_autoksyms.sh: 35: ./scripts/gen_autoksyms.sh: [[: not found
cat: /home/nfs/linux//dev/null: No such file or directory
  GEN     .version
  LD      vmlinux.o
  MODPOST vmlinux.o
  MODINFO modules.builtin.modinfo
  GEN     modules.builtin
  LD      .tmp_vmlinux1
  KSYM    .tmp_kallsyms1.o
  LD      .tmp_vmlinux2
  KSYM    .tmp_kallsyms2.o
  LD      vmlinux
  SORTTAB vmlinux
  SYSMAP  System.map
  MODPOST 1134 modules
  CC      arch/x86/boot/a20.o
  AS      arch/x86/boot/copy.o
  CC      arch/x86/boot/cmdline.o
  HOSTCC  arch/x86/boot/mkcpustr
  CC      arch/x86/boot/cpuflags.o
  CC      arch/x86/boot/cpucheck.o
  CC      arch/x86/boot/early_serial_console.o
  CC      arch/x86/boot/edd.o
  CC      arch/x86/boot/main.o
  CC      arch/x86/boot/memory.o
  CC      arch/x86/boot/pm.o
  AS      arch/x86/boot/pmjump.o
  CC      arch/x86/boot/printf.o
  CC      arch/x86/boot/regs.o
  CC      arch/x86/boot/string.o
  CC      arch/x86/boot/tty.o
  CC      arch/x86/boot/video.o
  LDS     arch/x86/boot/compressed/vmlinux.lds
  CC      arch/x86/boot/video-mode.o
  AS      arch/x86/boot/compressed/kernel_info.o
  AS      arch/x86/boot/compressed/head_32.o
  VOFFSET arch/x86/boot/compressed/../voffset.h
  CC      arch/x86/boot/version.o
  CC      arch/x86/boot/compressed/string.o
  CC      arch/x86/boot/video-vga.o
  CC      arch/x86/boot/compressed/cmdline.o
  CC      arch/x86/boot/video-vesa.o
  CC      arch/x86/boot/compressed/error.o
  CC      arch/x86/boot/video-bios.o
ERROR: "trace_event_raw_init" [lib/objagg.ko] undefined!
ERROR: "trace_event_reg" [lib/objagg.ko] undefined!
ERROR: "ida_destroy" [lib/objagg.ko] undefined!
ERROR: "rhashtable_destroy" [lib/objagg.ko] undefined!
ERROR: "kmalloc_order_trace" [lib/objagg.ko] undefined!
ERROR: "sort" [lib/objagg.ko] undefined!
ERROR: "__raw_spin_lock_init" [lib/objagg.ko] undefined!
ERROR: "rhashtable_init" [lib/objagg.ko] undefined!
ERROR: "rht_bucket_nested" [lib/objagg.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [lib/objagg.ko] undefined!
ERROR: "kmalloc_caches" [lib/objagg.ko] undefined!
ERROR: "rht_bucket_nested_insert" [lib/objagg.ko] undefined!
ERROR: "__list_add_valid" [lib/objagg.ko] undefined!
ERROR: "rhashtable_insert_slow" [lib/objagg.ko] undefined!
ERROR: "__kmalloc" [lib/objagg.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [lib/objagg.ko] undefined!
ERROR: "kfree" [lib/objagg.ko] undefined!
ERROR: "__list_del_entry_valid" [lib/objagg.ko] undefined!
ERROR: "queue_work_on" [lib/objagg.ko] undefined!
ERROR: "system_wq" [lib/objagg.ko] undefined!
ERROR: "__rht_bucket_nested" [lib/objagg.ko] undefined!
ERROR: "rcu_read_lock_held" [lib/objagg.ko] undefined!
ERROR: "lockdep_rht_mutex_is_held" [lib/objagg.ko] undefined!
ERROR: "__local_bh_enable_ip" [lib/objagg.ko] undefined!
ERROR: "lock_release" [lib/objagg.ko] undefined!
ERROR: "lockdep_rht_bucket_is_held" [lib/objagg.ko] undefined!
ERROR: "__local_bh_disable_ip" [lib/objagg.ko] undefined!
ERROR: "lock_acquire" [lib/objagg.ko] undefined!
ERROR: "rcu_lock_map" [lib/objagg.ko] undefined!
ERROR: "ida_alloc_range" [lib/objagg.ko] undefined!
ERROR: "lockdep_rcu_suspicious" [lib/objagg.ko] undefined!
ERROR: "rcu_read_lock_sched_held" [lib/objagg.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [lib/objagg.ko] undefined!
ERROR: "ida_free" [lib/objagg.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [lib/objagg.ko] undefined!
ERROR: "debug_lockdep_rcu_enabled" [lib/objagg.ko] undefined!
ERROR: "__preempt_count" [lib/objagg.ko] undefined!
ERROR: "memcmp" [lib/objagg.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [lib/objagg.ko] undefined!
ERROR: "bpf_trace_run4" [lib/objagg.ko] undefined!
ERROR: "bpf_trace_run3" [lib/objagg.ko] undefined!
ERROR: "bpf_trace_run2" [lib/objagg.ko] undefined!
ERROR: "bpf_trace_run1" [lib/objagg.ko] undefined!
ERROR: "trace_handle_return" [lib/objagg.ko] undefined!
ERROR: "trace_seq_printf" [lib/objagg.ko] undefined!
ERROR: "trace_raw_output_prep" [lib/objagg.ko] undefined!
ERROR: "trace_event_ignore_this_pid" [lib/objagg.ko] undefined!
ERROR: "event_triggers_call" [lib/objagg.ko] undefined!
ERROR: "trace_event_buffer_commit" [lib/objagg.ko] undefined!
ERROR: "trace_event_buffer_reserve" [lib/objagg.ko] undefined!
ERROR: "perf_trace_run_bpf_submit" [lib/objagg.ko] undefined!
ERROR: "perf_trace_buf_alloc" [lib/objagg.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [lib/parman.ko] undefined!
ERROR: "kfree" [lib/parman.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [lib/parman.ko] undefined!
ERROR: "kmalloc_caches" [lib/parman.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [lib/parman.ko] undefined!
ERROR: "__list_add_valid" [lib/parman.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [lib/parman.ko] undefined!
ERROR: "__list_del_entry_valid" [lib/parman.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [lib/parman.ko] undefined!
ERROR: "param_ops_int" [lib/of-reconfig-notifier-error-inject.ko] undefined!
ERROR: "of_reconfig_notifier_unregister" [lib/of-reconfig-notifier-error-inject.ko] undefined!
ERROR: "debugfs_remove_recursive" [lib/of-reconfig-notifier-error-inject.ko] undefined!
ERROR: "of_reconfig_notifier_register" [lib/of-reconfig-notifier-error-inject.ko] undefined!
ERROR: "notifier_err_inject_init" [lib/of-reconfig-notifier-error-inject.ko] undefined!
ERROR: "notifier_err_inject_dir" [lib/of-reconfig-notifier-error-inject.ko] undefined!
ERROR: "param_ops_int" [lib/netdev-notifier-error-inject.ko] undefined!
ERROR: "unregister_netdevice_notifier" [lib/netdev-notifier-error-inject.ko] undefined!
ERROR: "debugfs_remove_recursive" [lib/netdev-notifier-error-inject.ko] undefined!
ERROR: "register_netdevice_notifier" [lib/netdev-notifier-error-inject.ko] undefined!
ERROR: "notifier_err_inject_init" [lib/netdev-notifier-error-inject.ko] undefined!
ERROR: "notifier_err_inject_dir" [lib/netdev-notifier-error-inject.ko] undefined!
ERROR: "param_ops_int" [lib/pm-notifier-error-inject.ko] undefined!
ERROR: "unregister_pm_notifier" [lib/pm-notifier-error-inject.ko] undefined!
ERROR: "debugfs_remove_recursive" [lib/pm-notifier-error-inject.ko] undefined!
ERROR: "register_pm_notifier" [lib/pm-notifier-error-inject.ko] undefined!
ERROR: "notifier_err_inject_init" [lib/pm-notifier-error-inject.ko] undefined!
ERROR: "notifier_err_inject_dir" [lib/pm-notifier-error-inject.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [lib/raid6/raid6_pq.ko] undefined!
ERROR: "boot_cpu_data" [lib/raid6/raid6_pq.ko] undefined!
ERROR: "__x86_indirect_thunk_eax" [lib/raid6/raid6_pq.ko] undefined!
ERROR: "__preempt_count" [lib/raid6/raid6_pq.ko] undefined!
ERROR: "jiffies" [lib/raid6/raid6_pq.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [lib/raid6/raid6_pq.ko] undefined!
ERROR: "printk" [lib/raid6/raid6_pq.ko] undefined!
ERROR: "kernel_fpu_begin" [lib/raid6/raid6_pq.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [lib/raid6/raid6_pq.ko] undefined!
ERROR: "kernel_fpu_end" [lib/raid6/raid6_pq.ko] undefined!
ERROR: "__get_free_pages" [lib/raid6/raid6_pq.ko] undefined!
ERROR: "free_pages" [lib/raid6/raid6_pq.ko] undefined!
  CC      arch/x86/boot/apm.o
ERROR: "memmove" [lib/reed_solomon/reed_solomon.ko] undefined!
ERROR: "__list_del_entry_valid" [lib/reed_solomon/reed_solomon.ko] undefined!
ERROR: "__list_add_valid" [lib/reed_solomon/reed_solomon.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [lib/reed_solomon/reed_solomon.ko] undefined!
ERROR: "kfree" [lib/reed_solomon/reed_solomon.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [lib/reed_solomon/reed_solomon.ko] undefined!
ERROR: "kmalloc_caches" [lib/reed_solomon/reed_solomon.ko] undefined!
ERROR: "mutex_unlock" [lib/reed_solomon/reed_solomon.ko] undefined!
ERROR: "mutex_lock_nested" [lib/reed_solomon/reed_solomon.ko] undefined!
ERROR: "__kmalloc" [lib/reed_solomon/reed_solomon.ko] undefined!
ERROR: "printk" [lib/test_blackhole_dev.ko] undefined!
ERROR: "dev_queue_xmit" [lib/test_blackhole_dev.ko] undefined!
ERROR: "blackhole_netdev" [lib/test_blackhole_dev.ko] undefined!
ERROR: "in6addr_loopback" [lib/test_blackhole_dev.ko] undefined!
ERROR: "skb_push" [lib/test_blackhole_dev.ko] undefined!
ERROR: "__alloc_skb" [lib/test_blackhole_dev.ko] undefined!
ERROR: "param_ops_bool_enable_only" [lib/test_kmod.ko] undefined!
ERROR: "misc_deregister" [lib/test_kmod.ko] undefined!
ERROR: "__list_del_entry_valid" [lib/test_kmod.ko] undefined!
ERROR: "__list_add_valid" [lib/test_kmod.ko] undefined!
ERROR: "misc_register" [lib/test_kmod.ko] undefined!
ERROR: "kasprintf" [lib/test_kmod.ko] undefined!
ERROR: "__init_waitqueue_head" [lib/test_kmod.ko] undefined!
ERROR: "__mutex_init" [lib/test_kmod.ko] undefined!
ERROR: "printk" [lib/test_kmod.ko] undefined!
ERROR: "_kstrtoul" [lib/test_kmod.ko] undefined!
ERROR: "_dev_warn" [lib/test_kmod.ko] undefined!
ERROR: "wait_for_completion" [lib/test_kmod.ko] undefined!
ERROR: "wake_up_process" [lib/test_kmod.ko] undefined!
ERROR: "kthread_create_on_node" [lib/test_kmod.ko] undefined!
ERROR: "kthread_stop" [lib/test_kmod.ko] undefined!
ERROR: "complete" [lib/test_kmod.ko] undefined!
ERROR: "__request_module" [lib/test_kmod.ko] undefined!
ERROR: "__dynamic_dev_dbg" [lib/test_kmod.ko] undefined!
ERROR: "get_fs_type" [lib/test_kmod.ko] undefined!
ERROR: "_dev_err" [lib/test_kmod.ko] undefined!
ERROR: "_dev_info" [lib/test_kmod.ko] undefined!
ERROR: "strlen" [lib/test_kmod.ko] undefined!
ERROR: "kstrndup" [lib/test_kmod.ko] undefined!
ERROR: "kfree_const" [lib/test_kmod.ko] undefined!
ERROR: "snprintf" [lib/test_kmod.ko] undefined!
ERROR: "mutex_unlock" [lib/test_kmod.ko] undefined!
ERROR: "mutex_lock_nested" [lib/test_kmod.ko] undefined!
ERROR: "_kstrtol" [lib/test_kmod.ko] undefined!
ERROR: "vzalloc" [lib/test_kmod.ko] undefined!
ERROR: "vfree" [lib/test_kmod.ko] undefined!
ERROR: "strncmp" [lib/test_strscpy.ko] undefined!
ERROR: "strscpy_pad" [lib/test_strscpy.ko] undefined!
ERROR: "printk" [lib/test_strscpy.ko] undefined!
ERROR: "find_next_clump8" [lib/test_bitmap.ko] undefined!
ERROR: "print_hex_dump" [lib/test_bitmap.ko] undefined!
ERROR: "memcmp" [lib/test_bitmap.ko] undefined!
ERROR: "__bitmap_replace" [lib/test_bitmap.ko] undefined!
ERROR: "find_next_bit" [lib/test_bitmap.ko] undefined!
ERROR: "strcmp" [lib/test_bitmap.ko] undefined!
ERROR: "snprintf" [lib/test_bitmap.ko] undefined!
ERROR: "bitmap_parselist" [lib/test_bitmap.ko] undefined!
ERROR: "bitmap_parselist_user" [lib/test_bitmap.ko] undefined!
ERROR: "ktime_get" [lib/test_bitmap.ko] undefined!
ERROR: "strlen" [lib/test_bitmap.ko] undefined!
ERROR: "current_task" [lib/test_bitmap.ko] undefined!
ERROR: "__bitmap_clear" [lib/test_bitmap.ko] undefined!
ERROR: "printk" [lib/test_bitmap.ko] undefined!
ERROR: "__bitmap_set" [lib/test_bitmap.ko] undefined!
ERROR: "__bitmap_equal" [lib/test_bitmap.ko] undefined!
ERROR: "software_node_unregister_nodes" [lib/test_printf.ko] undefined!
ERROR: "software_node_fwnode" [lib/test_printf.ko] undefined!
ERROR: "software_node_register_nodes" [lib/test_printf.ko] undefined!
ERROR: "bitmap_free" [lib/test_printf.ko] undefined!
ERROR: "__bitmap_set" [lib/test_printf.ko] undefined!
ERROR: "bitmap_zalloc" [lib/test_printf.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [lib/test_printf.ko] undefined!
ERROR: "kmalloc_caches" [lib/test_printf.ko] undefined!
ERROR: "strlen" [lib/test_printf.ko] undefined!
ERROR: "strncmp" [lib/test_printf.ko] undefined!
ERROR: "snprintf" [lib/test_printf.ko] undefined!
ERROR: "kfree" [lib/test_printf.ko] undefined!
ERROR: "kvasprintf" [lib/test_printf.ko] undefined!
ERROR: "prandom_u32" [lib/test_printf.ko] undefined!
ERROR: "memcmp" [lib/test_printf.ko] undefined!
ERROR: "memchr_inv" [lib/test_printf.ko] undefined!
ERROR: "printk" [lib/test_printf.ko] undefined!
ERROR: "vsnprintf" [lib/test_printf.ko] undefined!
ERROR: "static_key_enable" [lib/test_static_key_base.ko] undefined!
ERROR: "static_key_disable" [lib/test_static_key_base.ko] undefined!
ERROR: "static_key_count" [lib/test_static_key_base.ko] undefined!
ERROR: "static_key_enable" [lib/test_static_keys.ko] undefined!
ERROR: "static_key_disable" [lib/test_static_keys.ko] undefined!
ERROR: "__x86_indirect_thunk_eax" [lib/test_static_keys.ko] undefined!
ERROR: "static_key_count" [lib/test_static_keys.ko] undefined!
ERROR: "base_inv_false_key" [lib/test_static_keys.ko] undefined!
ERROR: "base_false_key" [lib/test_static_keys.ko] undefined!
ERROR: "base_inv_true_key" [lib/test_static_keys.ko] undefined!
ERROR: "base_true_key" [lib/test_static_keys.ko] undefined!
ERROR: "base_inv_old_false_key" [lib/test_static_keys.ko] undefined!
ERROR: "base_old_false_key" [lib/test_static_keys.ko] undefined!
ERROR: "base_inv_old_true_key" [lib/test_static_keys.ko] undefined!
ERROR: "base_old_true_key" [lib/test_static_keys.ko] undefined!
ERROR: "vm_munmap" [lib/test_user_copy.ko] undefined!
ERROR: "clear_user" [lib/test_user_copy.ko] undefined!
ERROR: "memchr_inv" [lib/test_user_copy.ko] undefined!
ERROR: "check_zeroed_user" [lib/test_user_copy.ko] undefined!
ERROR: "__get_user_8" [lib/test_user_copy.ko] undefined!
ERROR: "__put_user_8" [lib/test_user_copy.ko] undefined!
ERROR: "__get_user_4" [lib/test_user_copy.ko] undefined!
ERROR: "__put_user_4" [lib/test_user_copy.ko] undefined!
ERROR: "__get_user_2" [lib/test_user_copy.ko] undefined!
ERROR: "__put_user_2" [lib/test_user_copy.ko] undefined!
ERROR: "__get_user_1" [lib/test_user_copy.ko] undefined!
ERROR: "__put_user_1" [lib/test_user_copy.ko] undefined!
ERROR: "__might_fault" [lib/test_user_copy.ko] undefined!
ERROR: "memcmp" [lib/test_user_copy.ko] undefined!
ERROR: "_copy_from_user" [lib/test_user_copy.ko] undefined!
ERROR: "_copy_to_user" [lib/test_user_copy.ko] undefined!
ERROR: "kfree" [lib/test_user_copy.ko] undefined!
ERROR: "printk" [lib/test_user_copy.ko] undefined!
ERROR: "vm_mmap" [lib/test_user_copy.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [lib/test_user_copy.ko] undefined!
ERROR: "kmalloc_caches" [lib/test_user_copy.ko] undefined!
ERROR: "__warn_printk" [lib/test_user_copy.ko] undefined!
ERROR: "param_ops_bool" [lib/test_vmalloc.ko] undefined!
ERROR: "param_ops_int" [lib/test_vmalloc.ko] undefined!
ERROR: "kthread_stop" [lib/test_vmalloc.ko] undefined!
ERROR: "__cpu_online_mask" [lib/test_vmalloc.ko] undefined!
ERROR: "wake_up_process" [lib/test_vmalloc.ko] undefined!
ERROR: "wait_for_completion_timeout" [lib/test_vmalloc.ko] undefined!
ERROR: "up_write" [lib/test_vmalloc.ko] undefined!
ERROR: "kthread_create_on_node" [lib/test_vmalloc.ko] undefined!
ERROR: "down_write" [lib/test_vmalloc.ko] undefined!
ERROR: "printk" [lib/test_vmalloc.ko] undefined!
ERROR: "complete" [lib/test_vmalloc.ko] undefined!
ERROR: "kthread_should_stop" [lib/test_vmalloc.ko] undefined!
ERROR: "msleep" [lib/test_vmalloc.ko] undefined!
ERROR: "up_read" [lib/test_vmalloc.ko] undefined!
ERROR: "__x86_indirect_thunk_eax" [lib/test_vmalloc.ko] undefined!
ERROR: "ktime_get" [lib/test_vmalloc.ko] undefined!
ERROR: "down_read" [lib/test_vmalloc.ko] undefined!
ERROR: "cpu_bit_bitmap" [lib/test_vmalloc.ko] undefined!
ERROR: "vmalloc" [lib/test_vmalloc.ko] undefined!
ERROR: "get_random_bytes" [lib/test_vmalloc.ko] undefined!
ERROR: "__vmalloc_node_range" [lib/test_vmalloc.ko] undefined!
ERROR: "__FIXADDR_TOP" [lib/test_vmalloc.ko] undefined!
ERROR: "high_memory" [lib/test_vmalloc.ko] undefined!
ERROR: "__default_kernel_pte_mask" [lib/test_vmalloc.ko] undefined!
ERROR: "vfree" [lib/test_vmalloc.ko] undefined!
ERROR: "printk" [lib/test_module.ko] undefined!
ERROR: "proc_do_large_bitmap" [lib/test_sysctl.ko] undefined!
ERROR: "proc_dostring" [lib/test_sysctl.ko] undefined!
ERROR: "proc_douintvec" [lib/test_sysctl.ko] undefined!
ERROR: "proc_dointvec" [lib/test_sysctl.ko] undefined!
ERROR: "proc_dointvec_minmax" [lib/test_sysctl.ko] undefined!
ERROR: "unregister_sysctl_table" [lib/test_sysctl.ko] undefined!
ERROR: "kfree" [lib/test_sysctl.ko] undefined!
ERROR: "register_sysctl_table" [lib/test_sysctl.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [lib/test_sysctl.ko] undefined!
ERROR: "kmalloc_caches" [lib/test_sysctl.ko] undefined!
ERROR: "misc_deregister" [lib/test_firmware.ko] undefined!
ERROR: "misc_register" [lib/test_firmware.ko] undefined!
ERROR: "request_firmware_into_buf" [lib/test_firmware.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [lib/test_firmware.ko] undefined!
ERROR: "kmalloc_caches" [lib/test_firmware.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [lib/test_firmware.ko] undefined!
ERROR: "strlen" [lib/test_firmware.ko] undefined!
ERROR: "simple_read_from_buffer" [lib/test_firmware.ko] undefined!
ERROR: "scnprintf" [lib/test_firmware.ko] undefined!
ERROR: "kfree_const" [lib/test_firmware.ko] undefined!
ERROR: "request_firmware_direct" [lib/test_firmware.ko] undefined!
ERROR: "kstrtobool" [lib/test_firmware.ko] undefined!
ERROR: "_kstrtol" [lib/test_firmware.ko] undefined!
ERROR: "request_firmware" [lib/test_firmware.ko] undefined!
ERROR: "kfree" [lib/test_firmware.ko] undefined!
ERROR: "kstrndup" [lib/test_firmware.ko] undefined!
ERROR: "wake_up_process" [lib/test_firmware.ko] undefined!
ERROR: "kthread_create_on_node" [lib/test_firmware.ko] undefined!
ERROR: "wait_for_completion" [lib/test_firmware.ko] undefined!
ERROR: "request_firmware_nowait" [lib/test_firmware.ko] undefined!
ERROR: "__init_waitqueue_head" [lib/test_firmware.ko] undefined!
ERROR: "vzalloc" [lib/test_firmware.ko] undefined!
ERROR: "msleep" [lib/test_firmware.ko] undefined!
ERROR: "complete" [lib/test_firmware.ko] undefined!
ERROR: "vfree" [lib/test_firmware.ko] undefined!
ERROR: "release_firmware" [lib/test_firmware.ko] undefined!
ERROR: "snprintf" [lib/test_firmware.ko] undefined!
ERROR: "printk" [lib/test_firmware.ko] undefined!
ERROR: "mutex_unlock" [lib/test_firmware.ko] undefined!
ERROR: "mutex_lock_nested" [lib/test_firmware.ko] undefined!
ERROR: "param_ops_string" [lib/test_bpf.ko] undefined!
ERROR: "param_ops_int" [lib/test_bpf.ko] undefined!
ERROR: "param_array_ops" [lib/test_bpf.ko] undefined!
ERROR: "kfree_skb_list" [lib/test_bpf.ko] undefined!
ERROR: "skb_segment" [lib/test_bpf.ko] undefined!
ERROR: "__x86_indirect_thunk_eax" [lib/test_bpf.ko] undefined!
ERROR: "kfree" [lib/test_bpf.ko] undefined!
ERROR: "bpf_prog_destroy" [lib/test_bpf.ko] undefined!
ERROR: "bpf_prog_free" [lib/test_bpf.ko] undefined!
ERROR: "sched_clock" [lib/test_bpf.ko] undefined!
ERROR: "kunmap" [lib/test_bpf.ko] undefined!
ERROR: "kmap" [lib/test_bpf.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [lib/test_bpf.ko] undefined!
ERROR: "bpf_stats_enabled_key" [lib/test_bpf.ko] undefined!
ERROR: "__cant_sleep" [lib/test_bpf.ko] undefined!
ERROR: "ktime_get" [lib/test_bpf.ko] undefined!
ERROR: "__preempt_count" [lib/test_bpf.ko] undefined!
ERROR: "bpf_prog_select_runtime" [lib/test_bpf.ko] undefined!
ERROR: "bpf_prog_alloc" [lib/test_bpf.ko] undefined!
ERROR: "bpf_prog_create" [lib/test_bpf.ko] undefined!
ERROR: "_cond_resched" [lib/test_bpf.ko] undefined!
ERROR: "___might_sleep" [lib/test_bpf.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [lib/test_bpf.ko] undefined!
ERROR: "strcmp" [lib/test_bpf.ko] undefined!
ERROR: "printk" [lib/test_bpf.ko] undefined!
ERROR: "prandom_u32_state" [lib/test_bpf.ko] undefined!
ERROR: "kmalloc_order_trace" [lib/test_bpf.ko] undefined!
ERROR: "skb_add_rx_frag" [lib/test_bpf.ko] undefined!
ERROR: "__free_pages" [lib/test_bpf.ko] undefined!
ERROR: "__netdev_alloc_skb" [lib/test_bpf.ko] undefined!
ERROR: "__alloc_pages_nodemask" [lib/test_bpf.ko] undefined!
ERROR: "__kmalloc" [lib/test_bpf.ko] undefined!
ERROR: "skb_put" [lib/test_bpf.ko] undefined!
ERROR: "kfree_skb" [lib/test_bpf.ko] undefined!
ERROR: "__alloc_skb" [lib/test_bpf.ko] undefined!
ERROR: "memmove" [lib/lz4/lz4_compress.ko] undefined!
ERROR: "dev_remove_offload" [net/nsh/nsh.ko] undefined!
ERROR: "dev_add_offload" [net/nsh/nsh.ko] undefined!
ERROR: "skb_pull_rcsum" [net/nsh/nsh.ko] undefined!
ERROR: "csum_partial" [net/nsh/nsh.ko] undefined!
ERROR: "pskb_expand_head" [net/nsh/nsh.ko] undefined!
ERROR: "skb_push" [net/nsh/nsh.ko] undefined!
ERROR: "__pskb_pull_tail" [net/nsh/nsh.ko] undefined!
ERROR: "skb_mac_gso_segment" [net/nsh/nsh.ko] undefined!
ERROR: "system_wq" [net/nfc/hci/hci.ko] undefined!
ERROR: "skb_queue_head" [net/nfc/hci/hci.ko] undefined!
ERROR: "nfc_register_device" [net/nfc/hci/hci.ko] undefined!
ERROR: "kmalloc_caches" [net/nfc/hci/hci.ko] undefined!
ERROR: "__kmalloc" [net/nfc/hci/hci.ko] undefined!
ERROR: "del_timer" [net/nfc/hci/hci.ko] undefined!
ERROR: "strlen" [net/nfc/hci/hci.ko] undefined!
ERROR: "nfc_driver_failure" [net/nfc/hci/hci.ko] undefined!
ERROR: "nfc_targets_found" [net/nfc/hci/hci.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [net/nfc/hci/hci.ko] undefined!
ERROR: "cancel_work_sync" [net/nfc/hci/hci.ko] undefined!
ERROR: "__dynamic_pr_debug" [net/nfc/hci/hci.ko] undefined!
ERROR: "init_timer_key" [net/nfc/hci/hci.ko] undefined!
ERROR: "mutex_unlock" [net/nfc/hci/hci.ko] undefined!
ERROR: "kstrdup" [net/nfc/hci/hci.ko] undefined!
ERROR: "jiffies" [net/nfc/hci/hci.ko] undefined!
ERROR: "__might_sleep" [net/nfc/hci/hci.ko] undefined!
ERROR: "skb_trim" [net/nfc/hci/hci.ko] undefined!
ERROR: "strcmp" [net/nfc/hci/hci.ko] undefined!
ERROR: "__init_waitqueue_head" [net/nfc/hci/hci.ko] undefined!
ERROR: "skb_dequeue_tail" [net/nfc/hci/hci.ko] undefined!
ERROR: "skb_queue_purge" [net/nfc/hci/hci.ko] undefined!
ERROR: "__mutex_init" [net/nfc/hci/hci.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [net/nfc/hci/hci.ko] undefined!
ERROR: "printk" [net/nfc/hci/hci.ko] undefined!
ERROR: "__list_del_entry_valid" [net/nfc/hci/hci.ko] undefined!
ERROR: "memcmp" [net/nfc/hci/hci.ko] undefined!
ERROR: "skb_push" [net/nfc/hci/hci.ko] undefined!
ERROR: "mod_timer" [net/nfc/hci/hci.ko] undefined!
ERROR: "skb_pull" [net/nfc/hci/hci.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [net/nfc/hci/hci.ko] undefined!
ERROR: "__list_add_valid" [net/nfc/hci/hci.ko] undefined!
ERROR: "init_wait_entry" [net/nfc/hci/hci.ko] undefined!
ERROR: "print_hex_dump" [net/nfc/hci/hci.ko] undefined!
ERROR: "skb_queue_tail" [net/nfc/hci/hci.ko] undefined!
ERROR: "__alloc_skb" [net/nfc/hci/hci.ko] undefined!
ERROR: "put_device" [net/nfc/hci/hci.ko] undefined!
ERROR: "nfc_alloc_recv_skb" [net/nfc/hci/hci.ko] undefined!
ERROR: "schedule" [net/nfc/hci/hci.ko] undefined!
ERROR: "kfree_skb" [net/nfc/hci/hci.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [net/nfc/hci/hci.ko] undefined!
ERROR: "__raw_spin_lock_init" [net/nfc/hci/hci.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [net/nfc/hci/hci.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [net/nfc/hci/hci.ko] undefined!
ERROR: "nfc_allocate_device" [net/nfc/hci/hci.ko] undefined!
ERROR: "__wake_up" [net/nfc/hci/hci.ko] undefined!
ERROR: "prepare_to_wait_event" [net/nfc/hci/hci.ko] undefined!
ERROR: "mutex_lock_nested" [net/nfc/hci/hci.ko] undefined!
ERROR: "kfree" [net/nfc/hci/hci.ko] undefined!
ERROR: "lockdep_init_map" [net/nfc/hci/hci.ko] undefined!
ERROR: "nfc_unregister_device" [net/nfc/hci/hci.ko] undefined!
ERROR: "finish_wait" [net/nfc/hci/hci.ko] undefined!
ERROR: "skb_dequeue" [net/nfc/hci/hci.ko] undefined!
ERROR: "queue_work_on" [net/nfc/hci/hci.ko] undefined!
ERROR: "__msecs_to_jiffies" [net/nfc/hci/hci.ko] undefined!
ERROR: "skb_put" [net/nfc/hci/hci.ko] undefined!
ERROR: "system_wq" [net/nfc/nci/nci_uart.ko] undefined!
ERROR: "kmalloc_caches" [net/nfc/nci/nci_uart.ko] undefined!
ERROR: "up_read" [net/nfc/nci/nci_uart.ko] undefined!
ERROR: "_raw_spin_unlock" [net/nfc/nci/nci_uart.ko] undefined!
ERROR: "tty_unthrottle" [net/nfc/nci/nci_uart.ko] undefined!
ERROR: "tty_termios_encode_baud_rate" [net/nfc/nci/nci_uart.ko] undefined!
ERROR: "cancel_work_sync" [net/nfc/nci/nci_uart.ko] undefined!
ERROR: "tty_unregister_ldisc" [net/nfc/nci/nci_uart.ko] undefined!
ERROR: "down_read" [net/nfc/nci/nci_uart.ko] undefined!
ERROR: "skb_queue_purge" [net/nfc/nci/nci_uart.ko] undefined!
ERROR: "printk" [net/nfc/nci/nci_uart.ko] undefined!
ERROR: "n_tty_ioctl_helper" [net/nfc/nci/nci_uart.ko] undefined!
ERROR: "skb_pull" [net/nfc/nci/nci_uart.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [net/nfc/nci/nci_uart.ko] undefined!
ERROR: "_dev_err" [net/nfc/nci/nci_uart.ko] undefined!
ERROR: "skb_queue_tail" [net/nfc/nci/nci_uart.ko] undefined!
ERROR: "__alloc_skb" [net/nfc/nci/nci_uart.ko] undefined!
ERROR: "tty_driver_flush_buffer" [net/nfc/nci/nci_uart.ko] undefined!
ERROR: "kfree_skb" [net/nfc/nci/nci_uart.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [net/nfc/nci/nci_uart.ko] undefined!
ERROR: "__raw_spin_lock_init" [net/nfc/nci/nci_uart.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [net/nfc/nci/nci_uart.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [net/nfc/nci/nci_uart.ko] undefined!
ERROR: "_raw_spin_lock" [net/nfc/nci/nci_uart.ko] undefined!
ERROR: "kfree" [net/nfc/nci/nci_uart.ko] undefined!
ERROR: "lockdep_init_map" [net/nfc/nci/nci_uart.ko] undefined!
ERROR: "skb_dequeue" [net/nfc/nci/nci_uart.ko] undefined!
ERROR: "queue_work_on" [net/nfc/nci/nci_uart.ko] undefined!
ERROR: "tty_register_ldisc" [net/nfc/nci/nci_uart.ko] undefined!
ERROR: "skb_put" [net/nfc/nci/nci_uart.ko] undefined!
ERROR: "tty_set_termios" [net/nfc/nci/nci_uart.ko] undefined!
ERROR: "system_wq" [net/nfc/nci/nci.ko] undefined!
ERROR: "nfc_register_device" [net/nfc/nci/nci.ko] undefined!
ERROR: "kmalloc_caches" [net/nfc/nci/nci.ko] undefined!
ERROR: "__kmalloc" [net/nfc/nci/nci.ko] undefined!
ERROR: "nfc_send_to_raw_sock" [net/nfc/nci/nci.ko] undefined!
ERROR: "del_timer" [net/nfc/nci/nci.ko] undefined!
ERROR: "strlen" [net/nfc/nci/nci.ko] undefined!
ERROR: "nfc_dep_link_is_up" [net/nfc/nci/nci.ko] undefined!
ERROR: "nfc_targets_found" [net/nfc/nci/nci.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [net/nfc/nci/nci.ko] undefined!
ERROR: "__dynamic_pr_debug" [net/nfc/nci/nci.ko] undefined!
ERROR: "init_timer_key" [net/nfc/nci/nci.ko] undefined!
ERROR: "mutex_unlock" [net/nfc/nci/nci.ko] undefined!
ERROR: "jiffies" [net/nfc/nci/nci.ko] undefined!
ERROR: "skb_trim" [net/nfc/nci/nci.ko] undefined!
ERROR: "__init_waitqueue_head" [net/nfc/nci/nci.ko] undefined!
ERROR: "skb_queue_purge" [net/nfc/nci/nci.ko] undefined!
ERROR: "nfc_tm_activated" [net/nfc/nci/nci.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [net/nfc/nci/nci.ko] undefined!
ERROR: "__mutex_init" [net/nfc/nci/nci.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [net/nfc/nci/nci.ko] undefined!
ERROR: "printk" [net/nfc/nci/nci.ko] undefined!
ERROR: "__list_del_entry_valid" [net/nfc/nci/nci.ko] undefined!
ERROR: "memcmp" [net/nfc/nci/nci.ko] undefined!
ERROR: "skb_push" [net/nfc/nci/nci.ko] undefined!
ERROR: "destroy_workqueue" [net/nfc/nci/nci.ko] undefined!
ERROR: "mod_timer" [net/nfc/nci/nci.ko] undefined!
ERROR: "skb_pull" [net/nfc/nci/nci.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [net/nfc/nci/nci.ko] undefined!
ERROR: "devm_kfree" [net/nfc/nci/nci.ko] undefined!
ERROR: "nfc_set_remote_general_bytes" [net/nfc/nci/nci.ko] undefined!
ERROR: "__list_add_valid" [net/nfc/nci/nci.ko] undefined!
ERROR: "flush_workqueue" [net/nfc/nci/nci.ko] undefined!
ERROR: "nfc_get_local_general_bytes" [net/nfc/nci/nci.ko] undefined!
ERROR: "skb_queue_tail" [net/nfc/nci/nci.ko] undefined!
ERROR: "__alloc_skb" [net/nfc/nci/nci.ko] undefined!
ERROR: "put_device" [net/nfc/nci/nci.ko] undefined!
ERROR: "nfc_alloc_recv_skb" [net/nfc/nci/nci.ko] undefined!
ERROR: "kfree_skb" [net/nfc/nci/nci.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [net/nfc/nci/nci.ko] undefined!
ERROR: "__raw_spin_lock_init" [net/nfc/nci/nci.ko] undefined!
ERROR: "wait_for_completion_interruptible_timeout" [net/nfc/nci/nci.ko] undefined!
ERROR: "nfc_tm_deactivated" [net/nfc/nci/nci.ko] undefined!
ERROR: "pskb_expand_head" [net/nfc/nci/nci.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [net/nfc/nci/nci.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [net/nfc/nci/nci.ko] undefined!
ERROR: "nfc_tm_data_received" [net/nfc/nci/nci.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [net/nfc/nci/nci.ko] undefined!
ERROR: "nfc_allocate_device" [net/nfc/nci/nci.ko] undefined!
ERROR: "mutex_lock_nested" [net/nfc/nci/nci.ko] undefined!
ERROR: "kfree" [net/nfc/nci/nci.ko] undefined!
ERROR: "lockdep_init_map" [net/nfc/nci/nci.ko] undefined!
ERROR: "nfc_unregister_device" [net/nfc/nci/nci.ko] undefined!
ERROR: "skb_dequeue" [net/nfc/nci/nci.ko] undefined!
ERROR: "queue_work_on" [net/nfc/nci/nci.ko] undefined!
ERROR: "complete" [net/nfc/nci/nci.ko] undefined!
ERROR: "snprintf" [net/nfc/nci/nci.ko] undefined!
ERROR: "skb_put" [net/nfc/nci/nci.ko] undefined!
ERROR: "devm_kmalloc" [net/nfc/nci/nci.ko] undefined!
ERROR: "alloc_workqueue" [net/nfc/nci/nci.ko] undefined!
ERROR: "class_find_device" [net/nfc/nfc.ko] undefined!
ERROR: "system_wq" [net/nfc/nfc.ko] undefined!
ERROR: "skb_queue_head" [net/nfc/nfc.ko] undefined!
ERROR: "release_sock" [net/nfc/nfc.ko] undefined!
ERROR: "kmalloc_caches" [net/nfc/nfc.ko] undefined!
ERROR: "__kmalloc" [net/nfc/nfc.ko] undefined!
ERROR: "sock_init_data" [net/nfc/nfc.ko] undefined!
ERROR: "ktime_get_with_offset" [net/nfc/nfc.ko] undefined!
ERROR: "_raw_spin_unlock" [net/nfc/nfc.ko] undefined!
ERROR: "genl_register_family" [net/nfc/nfc.ko] undefined!
ERROR: "mutex_destroy" [net/nfc/nfc.ko] undefined!
ERROR: "__nla_parse" [net/nfc/nfc.ko] undefined!
ERROR: "del_timer" [net/nfc/nfc.ko] undefined!
ERROR: "strlen" [net/nfc/nfc.ko] undefined!
ERROR: "genl_unregister_family" [net/nfc/nfc.ko] undefined!
ERROR: "sock_no_setsockopt" [net/nfc/nfc.ko] undefined!
ERROR: "netlink_register_notifier" [net/nfc/nfc.ko] undefined!
ERROR: "sock_no_getsockopt" [net/nfc/nfc.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [net/nfc/nfc.ko] undefined!
ERROR: "sock_no_ioctl" [net/nfc/nfc.ko] undefined!
ERROR: "remove_wait_queue" [net/nfc/nfc.ko] undefined!
ERROR: "__might_fault" [net/nfc/nfc.ko] undefined!
ERROR: "_raw_read_lock" [net/nfc/nfc.ko] undefined!
ERROR: "_raw_spin_lock_bh" [net/nfc/nfc.ko] undefined!
ERROR: "skb_clone" [net/nfc/nfc.ko] undefined!
ERROR: "skb_copy" [net/nfc/nfc.ko] undefined!
ERROR: "cancel_work_sync" [net/nfc/nfc.ko] undefined!
ERROR: "sock_no_getname" [net/nfc/nfc.ko] undefined!
ERROR: "__dynamic_pr_debug" [net/nfc/nfc.ko] undefined!
ERROR: "sock_queue_rcv_skb" [net/nfc/nfc.ko] undefined!
ERROR: "__get_user_4" [net/nfc/nfc.ko] undefined!
ERROR: "kmemdup" [net/nfc/nfc.ko] undefined!
ERROR: "skb_recv_datagram" [net/nfc/nfc.ko] undefined!
ERROR: "netlink_unregister_notifier" [net/nfc/nfc.ko] undefined!
ERROR: "init_timer_key" [net/nfc/nfc.ko] undefined!
ERROR: "__rwlock_init" [net/nfc/nfc.ko] undefined!
ERROR: "mutex_unlock" [net/nfc/nfc.ko] undefined!
ERROR: "__preempt_count" [net/nfc/nfc.ko] undefined!
ERROR: "jiffies" [net/nfc/nfc.ko] undefined!
ERROR: "skb_unlink" [net/nfc/nfc.ko] undefined!
ERROR: "skb_trim" [net/nfc/nfc.ko] undefined!
ERROR: "lock_release" [net/nfc/nfc.ko] undefined!
ERROR: "sock_no_mmap" [net/nfc/nfc.ko] undefined!
ERROR: "default_wake_function" [net/nfc/nfc.ko] undefined!
ERROR: "skb_queue_purge" [net/nfc/nfc.ko] undefined!
ERROR: "lock_acquire" [net/nfc/nfc.ko] undefined!
ERROR: "sock_no_socketpair" [net/nfc/nfc.ko] undefined!
ERROR: "__sock_recv_wifi_status" [net/nfc/nfc.ko] undefined!
ERROR: "device_del" [net/nfc/nfc.ko] undefined!
ERROR: "sk_alloc" [net/nfc/nfc.ko] undefined!
ERROR: "current_task" [net/nfc/nfc.ko] undefined!
ERROR: "class_dev_iter_init" [net/nfc/nfc.ko] undefined!
ERROR: "skb_copy_datagram_iter" [net/nfc/nfc.ko] undefined!
ERROR: "__mutex_init" [net/nfc/nfc.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [net/nfc/nfc.ko] undefined!
ERROR: "printk" [net/nfc/nfc.ko] undefined!
ERROR: "sock_no_bind" [net/nfc/nfc.ko] undefined!
ERROR: "__list_del_entry_valid" [net/nfc/nfc.ko] undefined!
ERROR: "lock_sock_nested" [net/nfc/nfc.ko] undefined!
ERROR: "memcmp" [net/nfc/nfc.ko] undefined!
ERROR: "_raw_write_unlock" [net/nfc/nfc.ko] undefined!
ERROR: "_raw_read_unlock" [net/nfc/nfc.ko] undefined!
ERROR: "class_unregister" [net/nfc/nfc.ko] undefined!
ERROR: "ida_free" [net/nfc/nfc.ko] undefined!
ERROR: "nla_put" [net/nfc/nfc.ko] undefined!
ERROR: "strncmp" [net/nfc/nfc.ko] undefined!
ERROR: "sock_no_listen" [net/nfc/nfc.ko] undefined!
ERROR: "skb_push" [net/nfc/nfc.ko] undefined!
ERROR: "_raw_write_lock" [net/nfc/nfc.ko] undefined!
ERROR: "sock_no_accept" [net/nfc/nfc.ko] undefined!
ERROR: "sk_free" [net/nfc/nfc.ko] undefined!
ERROR: "mod_timer" [net/nfc/nfc.ko] undefined!
ERROR: "netlink_unicast" [net/nfc/nfc.ko] undefined!
ERROR: "device_add" [net/nfc/nfc.ko] undefined!
ERROR: "skb_pull" [net/nfc/nfc.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [net/nfc/nfc.ko] undefined!
ERROR: "init_net" [net/nfc/nfc.ko] undefined!
ERROR: "__class_register" [net/nfc/nfc.ko] undefined!
ERROR: "devm_kfree" [net/nfc/nfc.ko] undefined!
ERROR: "__list_add_valid" [net/nfc/nfc.ko] undefined!
ERROR: "sock_no_shutdown" [net/nfc/nfc.ko] undefined!
ERROR: "__sock_recv_timestamp" [net/nfc/nfc.ko] undefined!
ERROR: "find_first_zero_bit" [net/nfc/nfc.ko] undefined!
ERROR: "print_hex_dump" [net/nfc/nfc.ko] undefined!
ERROR: "skb_queue_tail" [net/nfc/nfc.ko] undefined!
ERROR: "capable" [net/nfc/nfc.ko] undefined!
ERROR: "proto_register" [net/nfc/nfc.ko] undefined!
ERROR: "__put_user_4" [net/nfc/nfc.ko] undefined!
ERROR: "__alloc_skb" [net/nfc/nfc.ko] undefined!
ERROR: "netlink_broadcast" [net/nfc/nfc.ko] undefined!
ERROR: "put_device" [net/nfc/nfc.ko] undefined!
ERROR: "_raw_spin_unlock_bh" [net/nfc/nfc.ko] undefined!
ERROR: "refcount_warn_saturate" [net/nfc/nfc.ko] undefined!
ERROR: "datagram_poll" [net/nfc/nfc.ko] undefined!
ERROR: "sock_register" [net/nfc/nfc.ko] undefined!
ERROR: "schedule_timeout" [net/nfc/nfc.ko] undefined!
ERROR: "kfree_skb" [net/nfc/nfc.ko] undefined!
ERROR: "proto_unregister" [net/nfc/nfc.ko] undefined!
ERROR: "_copy_from_iter_full" [net/nfc/nfc.ko] undefined!
ERROR: "class_dev_iter_exit" [net/nfc/nfc.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [net/nfc/nfc.ko] undefined!
ERROR: "__raw_spin_lock_init" [net/nfc/nfc.ko] undefined!
ERROR: "sock_alloc_send_skb" [net/nfc/nfc.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [net/nfc/nfc.ko] undefined!
ERROR: "__pskb_copy_fclone" [net/nfc/nfc.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [net/nfc/nfc.ko] undefined!
ERROR: "_raw_spin_lock" [net/nfc/nfc.ko] undefined!
ERROR: "sock_no_connect" [net/nfc/nfc.ko] undefined!
ERROR: "_raw_write_unlock_bh" [net/nfc/nfc.ko] undefined!
ERROR: "mutex_lock_nested" [net/nfc/nfc.ko] undefined!
ERROR: "add_wait_queue" [net/nfc/nfc.ko] undefined!
ERROR: "kfree" [net/nfc/nfc.ko] undefined!
ERROR: "genlmsg_put" [net/nfc/nfc.ko] undefined!
ERROR: "sock_unregister" [net/nfc/nfc.ko] undefined!
ERROR: "sock_no_sendmsg" [net/nfc/nfc.ko] undefined!
ERROR: "nla_strlcpy" [net/nfc/nfc.ko] undefined!
ERROR: "device_initialize" [net/nfc/nfc.ko] undefined!
ERROR: "add_wait_queue_exclusive" [net/nfc/nfc.ko] undefined!
ERROR: "lockdep_init_map" [net/nfc/nfc.ko] undefined!
ERROR: "_raw_write_lock_bh" [net/nfc/nfc.ko] undefined!
ERROR: "skb_dequeue" [net/nfc/nfc.ko] undefined!
ERROR: "queue_work_on" [net/nfc/nfc.ko] undefined!
ERROR: "dev_set_name" [net/nfc/nfc.ko] undefined!
ERROR: "__msecs_to_jiffies" [net/nfc/nfc.ko] undefined!
ERROR: "skb_put" [net/nfc/nfc.ko] undefined!
ERROR: "class_dev_iter_next" [net/nfc/nfc.ko] undefined!
ERROR: "ida_alloc_range" [net/nfc/nfc.ko] undefined!
ERROR: "skb_free_datagram" [net/nfc/nfc.ko] undefined!
ERROR: "__kmalloc" [net/dns_resolver/dns_resolver.ko] undefined!
ERROR: "up_read" [net/dns_resolver/dns_resolver.ko] undefined!
ERROR: "key_invalidate" [net/dns_resolver/dns_resolver.ko] undefined!
ERROR: "strlen" [net/dns_resolver/dns_resolver.ko] undefined!
ERROR: "prepare_kernel_cred" [net/dns_resolver/dns_resolver.ko] undefined!
ERROR: "seq_puts" [net/dns_resolver/dns_resolver.ko] undefined!
ERROR: "seq_printf" [net/dns_resolver/dns_resolver.ko] undefined!
ERROR: "generic_key_instantiate" [net/dns_resolver/dns_resolver.ko] undefined!
ERROR: "request_key_tag" [net/dns_resolver/dns_resolver.ko] undefined!
ERROR: "user_read" [net/dns_resolver/dns_resolver.ko] undefined!
ERROR: "override_creds" [net/dns_resolver/dns_resolver.ko] undefined!
ERROR: "down_read" [net/dns_resolver/dns_resolver.ko] undefined!
ERROR: "key_validate" [net/dns_resolver/dns_resolver.ko] undefined!
ERROR: "key_revoke" [net/dns_resolver/dns_resolver.ko] undefined!
ERROR: "debug_lockdep_rcu_enabled" [net/dns_resolver/dns_resolver.ko] undefined!
ERROR: "current_task" [net/dns_resolver/dns_resolver.ko] undefined!
ERROR: "printk" [net/dns_resolver/dns_resolver.ko] undefined!
ERROR: "strcasecmp" [net/dns_resolver/dns_resolver.ko] undefined!
ERROR: "kmemdup_nul" [net/dns_resolver/dns_resolver.ko] undefined!
ERROR: "__invalid_creds" [net/dns_resolver/dns_resolver.ko] undefined!
ERROR: "memchr" [net/dns_resolver/dns_resolver.ko] undefined!
ERROR: "key_put" [net/dns_resolver/dns_resolver.ko] undefined!
ERROR: "___ratelimit" [net/dns_resolver/dns_resolver.ko] undefined!
ERROR: "strncasecmp" [net/dns_resolver/dns_resolver.ko] undefined!
ERROR: "_kstrtoul" [net/dns_resolver/dns_resolver.ko] undefined!
ERROR: "__put_cred" [net/dns_resolver/dns_resolver.ko] undefined!
ERROR: "keyring_alloc" [net/dns_resolver/dns_resolver.ko] undefined!
ERROR: "creds_are_invalid" [net/dns_resolver/dns_resolver.ko] undefined!
ERROR: "register_key_type" [net/dns_resolver/dns_resolver.ko] undefined!
ERROR: "kfree" [net/dns_resolver/dns_resolver.ko] undefined!
ERROR: "unregister_key_type" [net/dns_resolver/dns_resolver.ko] undefined!
ERROR: "user_revoke" [net/dns_resolver/dns_resolver.ko] undefined!
ERROR: "param_ops_uint" [net/dns_resolver/dns_resolver.ko] undefined!
ERROR: "user_destroy" [net/dns_resolver/dns_resolver.ko] undefined!
ERROR: "revert_creds" [net/dns_resolver/dns_resolver.ko] undefined!
ERROR: "lockdep_rcu_suspicious" [net/dns_resolver/dns_resolver.ko] undefined!
ERROR: "skb_queue_head" [net/phonet/pn_pep.ko] undefined!
ERROR: "release_sock" [net/phonet/pn_pep.ko] undefined!
ERROR: "sock_init_data" [net/phonet/pn_pep.ko] undefined!
ERROR: "remove_wait_queue" [net/phonet/pn_pep.ko] undefined!
ERROR: "wait_woken" [net/phonet/pn_pep.ko] undefined!
ERROR: "pn_sock_unhash" [net/phonet/pn_pep.ko] undefined!
ERROR: "__might_fault" [net/phonet/pn_pep.ko] undefined!
ERROR: "sk_stream_wait_connect" [net/phonet/pn_pep.ko] undefined!
ERROR: "netif_carrier_off" [net/phonet/pn_pep.ko] undefined!
ERROR: "__dynamic_pr_debug" [net/phonet/pn_pep.ko] undefined!
ERROR: "sock_queue_rcv_skb" [net/phonet/pn_pep.ko] undefined!
ERROR: "__get_user_4" [net/phonet/pn_pep.ko] undefined!
ERROR: "skb_recv_datagram" [net/phonet/pn_pep.ko] undefined!
ERROR: "skb_set_owner_w" [net/phonet/pn_pep.ko] undefined!
ERROR: "pn_sock_hash" [net/phonet/pn_pep.ko] undefined!
ERROR: "phonet_proto_register" [net/phonet/pn_pep.ko] undefined!
ERROR: "sock_rfree" [net/phonet/pn_pep.ko] undefined!
ERROR: "sk_common_release" [net/phonet/pn_pep.ko] undefined!
ERROR: "__might_sleep" [net/phonet/pn_pep.ko] undefined!
ERROR: "__netdev_alloc_skb" [net/phonet/pn_pep.ko] undefined!
ERROR: "netif_rx" [net/phonet/pn_pep.ko] undefined!
ERROR: "pn_sock_get_port" [net/phonet/pn_pep.ko] undefined!
ERROR: "__pskb_pull_tail" [net/phonet/pn_pep.ko] undefined!
ERROR: "skb_queue_purge" [net/phonet/pn_pep.ko] undefined!
ERROR: "netif_tx_wake_queue" [net/phonet/pn_pep.ko] undefined!
ERROR: "sk_alloc" [net/phonet/pn_pep.ko] undefined!
ERROR: "current_task" [net/phonet/pn_pep.ko] undefined!
ERROR: "skb_copy_datagram_iter" [net/phonet/pn_pep.ko] undefined!
ERROR: "printk" [net/phonet/pn_pep.ko] undefined!
ERROR: "lock_sock_nested" [net/phonet/pn_pep.ko] undefined!
ERROR: "free_netdev" [net/phonet/pn_pep.ko] undefined!
ERROR: "register_netdev" [net/phonet/pn_pep.ko] undefined!
ERROR: "skb_push" [net/phonet/pn_pep.ko] undefined!
ERROR: "sk_free" [net/phonet/pn_pep.ko] undefined!
ERROR: "init_net" [net/phonet/pn_pep.ko] undefined!
ERROR: "__sk_receive_skb" [net/phonet/pn_pep.ko] undefined!
ERROR: "skb_queue_tail" [net/phonet/pn_pep.ko] undefined!
ERROR: "capable" [net/phonet/pn_pep.ko] undefined!
ERROR: "woken_wake_function" [net/phonet/pn_pep.ko] undefined!
ERROR: "__put_user_4" [net/phonet/pn_pep.ko] undefined!
ERROR: "__alloc_skb" [net/phonet/pn_pep.ko] undefined!
ERROR: "refcount_warn_saturate" [net/phonet/pn_pep.ko] undefined!
ERROR: "kfree_skb" [net/phonet/pn_pep.ko] undefined!
ERROR: "_copy_from_iter_full" [net/phonet/pn_pep.ko] undefined!
ERROR: "alloc_netdev_mqs" [net/phonet/pn_pep.ko] undefined!
ERROR: "__raw_spin_lock_init" [net/phonet/pn_pep.ko] undefined!
ERROR: "sock_alloc_send_skb" [net/phonet/pn_pep.ko] undefined!
ERROR: "phonet_proto_unregister" [net/phonet/pn_pep.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [net/phonet/pn_pep.ko] undefined!
ERROR: "net_ratelimit" [net/phonet/pn_pep.ko] undefined!
ERROR: "add_wait_queue" [net/phonet/pn_pep.ko] undefined!
ERROR: "pn_skb_send" [net/phonet/pn_pep.ko] undefined!
ERROR: "skb_dequeue" [net/phonet/pn_pep.ko] undefined!
ERROR: "unregister_netdev" [net/phonet/pn_pep.ko] undefined!
ERROR: "phonet_stream_ops" [net/phonet/pn_pep.ko] undefined!
ERROR: "consume_skb" [net/phonet/pn_pep.ko] undefined!
ERROR: "skb_put" [net/phonet/pn_pep.ko] undefined!
ERROR: "skb_copy_bits" [net/phonet/pn_pep.ko] undefined!
ERROR: "skb_free_datagram" [net/phonet/pn_pep.ko] undefined!
ERROR: "proc_dointvec_minmax" [net/phonet/phonet.ko] undefined!
ERROR: "rcu_lock_map" [net/phonet/phonet.ko] undefined!
ERROR: "release_sock" [net/phonet/phonet.ko] undefined!
ERROR: "__request_module" [net/phonet/phonet.ko] undefined!
ERROR: "kmalloc_caches" [net/phonet/phonet.ko] undefined!
ERROR: "sock_init_data" [net/phonet/phonet.ko] undefined!
ERROR: "_raw_spin_unlock" [net/phonet/phonet.ko] undefined!
ERROR: "__nla_parse" [net/phonet/phonet.ko] undefined!
ERROR: "sock_no_setsockopt" [net/phonet/phonet.ko] undefined!
ERROR: "autoremove_wake_function" [net/phonet/phonet.ko] undefined!
ERROR: "unregister_net_sysctl_table" [net/phonet/phonet.ko] undefined!
ERROR: "sock_no_getsockopt" [net/phonet/phonet.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [net/phonet/phonet.ko] undefined!
ERROR: "seq_puts" [net/phonet/phonet.ko] undefined!
ERROR: "__might_fault" [net/phonet/phonet.ko] undefined!
ERROR: "skb_clone" [net/phonet/phonet.ko] undefined!
ERROR: "find_next_bit" [net/phonet/phonet.ko] undefined!
ERROR: "seq_printf" [net/phonet/phonet.ko] undefined!
ERROR: "register_netdevice_notifier" [net/phonet/phonet.ko] undefined!
ERROR: "__warn_printk" [net/phonet/phonet.ko] undefined!
ERROR: "rtnl_notify" [net/phonet/phonet.ko] undefined!
ERROR: "remove_proc_entry" [net/phonet/phonet.ko] undefined!
ERROR: "__dynamic_pr_debug" [net/phonet/phonet.ko] undefined!
ERROR: "sock_queue_rcv_skb" [net/phonet/phonet.ko] undefined!
ERROR: "__get_user_4" [net/phonet/phonet.ko] undefined!
ERROR: "skb_recv_datagram" [net/phonet/phonet.ko] undefined!
ERROR: "prepare_to_wait_exclusive" [net/phonet/phonet.ko] undefined!
ERROR: "mutex_unlock" [net/phonet/phonet.ko] undefined!
ERROR: "__preempt_count" [net/phonet/phonet.ko] undefined!
ERROR: "call_rcu" [net/phonet/phonet.ko] undefined!
ERROR: "sock_i_ino" [net/phonet/phonet.ko] undefined!
ERROR: "seq_pad" [net/phonet/phonet.ko] undefined!
ERROR: "trace_hardirqs_on" [net/phonet/phonet.ko] undefined!
ERROR: "sk_common_release" [net/phonet/phonet.ko] undefined!
ERROR: "rcu_read_lock_held" [net/phonet/phonet.ko] undefined!
ERROR: "unregister_netdevice_notifier" [net/phonet/phonet.ko] undefined!
ERROR: "skb_trim" [net/phonet/phonet.ko] undefined!
ERROR: "sock_common_recvmsg" [net/phonet/phonet.ko] undefined!
ERROR: "netif_rx" [net/phonet/phonet.ko] undefined!
ERROR: "sock_no_sendpage" [net/phonet/phonet.ko] undefined!
ERROR: "lock_release" [net/phonet/phonet.ko] undefined!
ERROR: "__pskb_pull_tail" [net/phonet/phonet.ko] undefined!
ERROR: "sock_no_mmap" [net/phonet/phonet.ko] undefined!
ERROR: "skb_queue_purge" [net/phonet/phonet.ko] undefined!
ERROR: "lock_acquire" [net/phonet/phonet.ko] undefined!
ERROR: "netif_rx_ni" [net/phonet/phonet.ko] undefined!
ERROR: "sock_no_socketpair" [net/phonet/phonet.ko] undefined!
ERROR: "unregister_pernet_subsys" [net/phonet/phonet.ko] undefined!
ERROR: "sk_alloc" [net/phonet/phonet.ko] undefined!
ERROR: "rtnl_register_module" [net/phonet/phonet.ko] undefined!
ERROR: "debug_lockdep_rcu_enabled" [net/phonet/phonet.ko] undefined!
ERROR: "current_task" [net/phonet/phonet.ko] undefined!
ERROR: "skb_copy_datagram_iter" [net/phonet/phonet.ko] undefined!
ERROR: "__mutex_init" [net/phonet/phonet.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [net/phonet/phonet.ko] undefined!
ERROR: "printk" [net/phonet/phonet.ko] undefined!
ERROR: "__list_del_entry_valid" [net/phonet/phonet.ko] undefined!
ERROR: "lock_sock_nested" [net/phonet/phonet.ko] undefined!
ERROR: "mutex_is_locked" [net/phonet/phonet.ko] undefined!
ERROR: "nla_put" [net/phonet/phonet.ko] undefined!
ERROR: "sock_no_listen" [net/phonet/phonet.ko] undefined!
ERROR: "skb_push" [net/phonet/phonet.ko] undefined!
ERROR: "sock_no_accept" [net/phonet/phonet.ko] undefined!
ERROR: "sk_free" [net/phonet/phonet.ko] undefined!
ERROR: "dev_get_by_index" [net/phonet/phonet.ko] undefined!
ERROR: "dev_remove_pack" [net/phonet/phonet.ko] undefined!
ERROR: "synchronize_rcu" [net/phonet/phonet.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [net/phonet/phonet.ko] undefined!
ERROR: "init_net" [net/phonet/phonet.ko] undefined!
ERROR: "__dev_get_by_index" [net/phonet/phonet.ko] undefined!
ERROR: "__list_add_valid" [net/phonet/phonet.ko] undefined!
ERROR: "sock_no_shutdown" [net/phonet/phonet.ko] undefined!
ERROR: "__sk_receive_skb" [net/phonet/phonet.ko] undefined!
ERROR: "capable" [net/phonet/phonet.ko] undefined!
ERROR: "proto_register" [net/phonet/phonet.ko] undefined!
ERROR: "rtnl_set_sk_err" [net/phonet/phonet.ko] undefined!
ERROR: "netlink_capable" [net/phonet/phonet.ko] undefined!
ERROR: "__put_user_4" [net/phonet/phonet.ko] undefined!
ERROR: "__alloc_skb" [net/phonet/phonet.ko] undefined!
ERROR: "refcount_warn_saturate" [net/phonet/phonet.ko] undefined!
ERROR: "datagram_poll" [net/phonet/phonet.ko] undefined!
ERROR: "sock_register" [net/phonet/phonet.ko] undefined!
ERROR: "schedule_timeout" [net/phonet/phonet.ko] undefined!
ERROR: "kfree_skb" [net/phonet/phonet.ko] undefined!
ERROR: "proto_unregister" [net/phonet/phonet.ko] undefined!
ERROR: "_copy_from_iter_full" [net/phonet/phonet.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [net/phonet/phonet.ko] undefined!
ERROR: "sock_alloc_send_skb" [net/phonet/phonet.ko] undefined!
ERROR: "register_pernet_subsys" [net/phonet/phonet.ko] undefined!
ERROR: "pskb_expand_head" [net/phonet/phonet.ko] undefined!
ERROR: "proc_create_net_data" [net/phonet/phonet.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [net/phonet/phonet.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [net/phonet/phonet.ko] undefined!
ERROR: "_raw_spin_lock" [net/phonet/phonet.ko] undefined!
ERROR: "net_ratelimit" [net/phonet/phonet.ko] undefined!
ERROR: "sock_common_setsockopt" [net/phonet/phonet.ko] undefined!
ERROR: "sock_no_connect" [net/phonet/phonet.ko] undefined!
ERROR: "_raw_write_unlock_bh" [net/phonet/phonet.ko] undefined!
ERROR: "mutex_lock_nested" [net/phonet/phonet.ko] undefined!
ERROR: "kfree" [net/phonet/phonet.ko] undefined!
ERROR: "___pskb_trim" [net/phonet/phonet.ko] undefined!
ERROR: "sock_unregister" [net/phonet/phonet.ko] undefined!
ERROR: "sock_common_getsockopt" [net/phonet/phonet.ko] undefined!
ERROR: "rtnl_unregister_all" [net/phonet/phonet.ko] undefined!
ERROR: "_raw_write_lock_bh" [net/phonet/phonet.ko] undefined!
ERROR: "__put_user_2" [net/phonet/phonet.ko] undefined!
ERROR: "find_first_bit" [net/phonet/phonet.ko] undefined!
ERROR: "finish_wait" [net/phonet/phonet.ko] undefined!
ERROR: "overflowuid" [net/phonet/phonet.ko] undefined!
ERROR: "__get_user_2" [net/phonet/phonet.ko] undefined!
ERROR: "dev_add_pack" [net/phonet/phonet.ko] undefined!
ERROR: "consume_skb" [net/phonet/phonet.ko] undefined!
ERROR: "rtnl_is_locked" [net/phonet/phonet.ko] undefined!
ERROR: "dev_queue_xmit" [net/phonet/phonet.ko] undefined!
ERROR: "register_net_sysctl" [net/phonet/phonet.ko] undefined!
ERROR: "skb_put" [net/phonet/phonet.ko] undefined!
ERROR: "trace_hardirqs_off" [net/phonet/phonet.ko] undefined!
ERROR: "__nlmsg_put" [net/phonet/phonet.ko] undefined!
ERROR: "sock_i_uid" [net/phonet/phonet.ko] undefined!
ERROR: "lockdep_rcu_suspicious" [net/phonet/phonet.ko] undefined!
ERROR: "skb_free_datagram" [net/phonet/phonet.ko] undefined!
ERROR: "unregister_netdev" [net/atm/lec.ko] undefined!
ERROR: "deregister_atm_ioctl" [net/atm/lec.ko] undefined!
ERROR: "remove_proc_entry" [net/atm/lec.ko] undefined!
ERROR: "register_atm_ioctl" [net/atm/lec.ko] undefined!
ERROR: "proc_create_seq_private" [net/atm/lec.ko] undefined!
ERROR: "atm_proc_root" [net/atm/lec.ko] undefined!
ERROR: "rtnl_unlock" [net/atm/lec.ko] undefined!
ERROR: "dev_set_mtu" [net/atm/lec.ko] undefined!
ERROR: "rtnl_lock" [net/atm/lec.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [net/atm/lec.ko] undefined!
ERROR: "netif_rx" [net/atm/lec.ko] undefined!
ERROR: "eth_type_trans" [net/atm/lec.ko] undefined!
ERROR: "skb_pull" [net/atm/lec.ko] undefined!
ERROR: "kfree_skb" [net/atm/lec.ko] undefined!
ERROR: "skb_copy_expand" [net/atm/lec.ko] undefined!
ERROR: "skb_put" [net/atm/lec.ko] undefined!
ERROR: "skb_push" [net/atm/lec.ko] undefined!
ERROR: "skb_realloc_headroom" [net/atm/lec.ko] undefined!
ERROR: "free_netdev" [net/atm/lec.ko] undefined!
ERROR: "register_netdev" [net/atm/lec.ko] undefined!
ERROR: "snprintf" [net/atm/lec.ko] undefined!
ERROR: "alloc_etherdev_mqs" [net/atm/lec.ko] undefined!
ERROR: "add_timer" [net/atm/lec.ko] undefined!
ERROR: "_copy_from_user" [net/atm/lec.ko] undefined!
ERROR: "vcc_insert_socket" [net/atm/lec.ko] undefined!
ERROR: "delayed_work_timer_fn" [net/atm/lec.ko] undefined!
ERROR: "lockdep_init_map" [net/atm/lec.ko] undefined!
ERROR: "capable" [net/atm/lec.ko] undefined!
ERROR: "queue_delayed_work_on" [net/atm/lec.ko] undefined!
ERROR: "system_wq" [net/atm/lec.ko] undefined!
ERROR: "refcount_warn_saturate" [net/atm/lec.ko] undefined!
ERROR: "skb_dequeue" [net/atm/lec.ko] undefined!
ERROR: "consume_skb" [net/atm/lec.ko] undefined!
ERROR: "cancel_delayed_work_sync" [net/atm/lec.ko] undefined!
ERROR: "seq_puts" [net/atm/lec.ko] undefined!
ERROR: "seq_putc" [net/atm/lec.ko] undefined!
ERROR: "seq_printf" [net/atm/lec.ko] undefined!
ERROR: "__raw_spin_lock_init" [net/atm/lec.ko] undefined!
ERROR: "init_timer_key" [net/atm/lec.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [net/atm/lec.ko] undefined!
ERROR: "kmalloc_caches" [net/atm/lec.ko] undefined!
ERROR: "mod_timer" [net/atm/lec.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [net/atm/lec.ko] undefined!
ERROR: "jiffies" [net/atm/lec.ko] undefined!
ERROR: "skb_queue_purge" [net/atm/lec.ko] undefined!
ERROR: "memcmp" [net/atm/lec.ko] undefined!
ERROR: "del_timer" [net/atm/lec.ko] undefined!
ERROR: "netif_tx_wake_queue" [net/atm/lec.ko] undefined!
ERROR: "vcc_release_async" [net/atm/lec.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [net/atm/lec.ko] undefined!
ERROR: "printk" [net/atm/lec.ko] undefined!
ERROR: "kmemdup" [net/atm/lec.ko] undefined!
ERROR: "kfree" [net/atm/lec.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [net/atm/lec.ko] undefined!
ERROR: "skb_queue_tail" [net/atm/lec.ko] undefined!
ERROR: "__alloc_skb" [net/atm/lec.ko] undefined!
ERROR: "__dynamic_pr_debug" [net/atm/lec.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [net/atm/lec.ko] undefined!
ERROR: "rcu_lock_map" [net/atm/atm.ko] undefined!
ERROR: "release_sock" [net/atm/atm.ko] undefined!
ERROR: "__request_module" [net/atm/atm.ko] undefined!
ERROR: "device_remove_file" [net/atm/atm.ko] undefined!
ERROR: "kmalloc_caches" [net/atm/atm.ko] undefined!
ERROR: "__kmalloc" [net/atm/atm.ko] undefined!
ERROR: "sock_init_data" [net/atm/atm.ko] undefined!
ERROR: "get_zeroed_page" [net/atm/atm.ko] undefined!
ERROR: "_raw_spin_unlock" [net/atm/atm.ko] undefined!
ERROR: "proc_create_seq_private" [net/atm/atm.ko] undefined!
ERROR: "strlen" [net/atm/atm.ko] undefined!
ERROR: "autoremove_wake_function" [net/atm/atm.ko] undefined!
ERROR: "send_sig" [net/atm/atm.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [net/atm/atm.ko] undefined!
ERROR: "sock_gettstamp" [net/atm/atm.ko] undefined!
ERROR: "seq_puts" [net/atm/atm.ko] undefined!
ERROR: "__might_fault" [net/atm/atm.ko] undefined!
ERROR: "_raw_read_lock" [net/atm/atm.ko] undefined!
ERROR: "seq_printf" [net/atm/atm.ko] undefined!
ERROR: "remove_proc_entry" [net/atm/atm.ko] undefined!
ERROR: "__dynamic_pr_debug" [net/atm/atm.ko] undefined!
ERROR: "__get_user_4" [net/atm/atm.ko] undefined!
ERROR: "skb_recv_datagram" [net/atm/atm.ko] undefined!
ERROR: "__dev_kfree_skb_any" [net/atm/atm.ko] undefined!
ERROR: "mutex_unlock" [net/atm/atm.ko] undefined!
ERROR: "atomic_notifier_chain_unregister" [net/atm/atm.ko] undefined!
ERROR: "__preempt_count" [net/atm/atm.ko] undefined!
ERROR: "rcu_read_lock_held" [net/atm/atm.ko] undefined!
ERROR: "strcmp" [net/atm/atm.ko] undefined!
ERROR: "kasprintf" [net/atm/atm.ko] undefined!
ERROR: "sock_no_sendpage" [net/atm/atm.ko] undefined!
ERROR: "lock_release" [net/atm/atm.ko] undefined!
ERROR: "sock_no_mmap" [net/atm/atm.ko] undefined!
ERROR: "atomic_notifier_call_chain" [net/atm/atm.ko] undefined!
ERROR: "_copy_to_user" [net/atm/atm.ko] undefined!
ERROR: "PDE_DATA" [net/atm/atm.ko] undefined!
ERROR: "skb_queue_purge" [net/atm/atm.ko] undefined!
ERROR: "lock_acquire" [net/atm/atm.ko] undefined!
ERROR: "sock_no_socketpair" [net/atm/atm.ko] undefined!
ERROR: "_raw_write_unlock_irq" [net/atm/atm.ko] undefined!
ERROR: "device_del" [net/atm/atm.ko] undefined!
ERROR: "device_register" [net/atm/atm.ko] undefined!
ERROR: "sk_alloc" [net/atm/atm.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [net/atm/atm.ko] undefined!
ERROR: "debug_lockdep_rcu_enabled" [net/atm/atm.ko] undefined!
ERROR: "current_task" [net/atm/atm.ko] undefined!
ERROR: "skb_copy_datagram_iter" [net/atm/atm.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [net/atm/atm.ko] undefined!
ERROR: "printk" [net/atm/atm.ko] undefined!
ERROR: "__list_del_entry_valid" [net/atm/atm.ko] undefined!
ERROR: "lock_sock_nested" [net/atm/atm.ko] undefined!
ERROR: "memcmp" [net/atm/atm.ko] undefined!
ERROR: "_raw_read_unlock" [net/atm/atm.ko] undefined!
ERROR: "class_unregister" [net/atm/atm.ko] undefined!
ERROR: "seq_putc" [net/atm/atm.ko] undefined!
ERROR: "sock_no_listen" [net/atm/atm.ko] undefined!
ERROR: "proc_mkdir_data" [net/atm/atm.ko] undefined!
ERROR: "sock_no_accept" [net/atm/atm.ko] undefined!
ERROR: "sock_wake_async" [net/atm/atm.ko] undefined!
ERROR: "sk_free" [net/atm/atm.ko] undefined!
ERROR: "noop_llseek" [net/atm/atm.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [net/atm/atm.ko] undefined!
ERROR: "init_net" [net/atm/atm.ko] undefined!
ERROR: "__class_register" [net/atm/atm.ko] undefined!
ERROR: "__list_add_valid" [net/atm/atm.ko] undefined!
ERROR: "device_create_file" [net/atm/atm.ko] undefined!
ERROR: "__sock_recv_ts_and_drops" [net/atm/atm.ko] undefined!
ERROR: "skb_queue_tail" [net/atm/atm.ko] undefined!
ERROR: "capable" [net/atm/atm.ko] undefined!
ERROR: "proto_register" [net/atm/atm.ko] undefined!
ERROR: "__put_user_4" [net/atm/atm.ko] undefined!
ERROR: "__alloc_skb" [net/atm/atm.ko] undefined!
ERROR: "put_device" [net/atm/atm.ko] undefined!
ERROR: "refcount_warn_saturate" [net/atm/atm.ko] undefined!
ERROR: "atomic_notifier_chain_register" [net/atm/atm.ko] undefined!
ERROR: "sock_register" [net/atm/atm.ko] undefined!
ERROR: "schedule" [net/atm/atm.ko] undefined!
ERROR: "kfree_skb" [net/atm/atm.ko] undefined!
ERROR: "proto_unregister" [net/atm/atm.ko] undefined!
ERROR: "_copy_from_iter_full" [net/atm/atm.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [net/atm/atm.ko] undefined!
ERROR: "__raw_spin_lock_init" [net/atm/atm.ko] undefined!
ERROR: "_raw_write_lock_irq" [net/atm/atm.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [net/atm/atm.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [net/atm/atm.ko] undefined!
ERROR: "_raw_spin_lock" [net/atm/atm.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [net/atm/atm.ko] undefined!
ERROR: "free_pages" [net/atm/atm.ko] undefined!
ERROR: "__wake_up" [net/atm/atm.ko] undefined!
ERROR: "net_ratelimit" [net/atm/atm.ko] undefined!
ERROR: "remove_proc_subtree" [net/atm/atm.ko] undefined!
ERROR: "proc_create_data" [net/atm/atm.ko] undefined!
ERROR: "mutex_lock_nested" [net/atm/atm.ko] undefined!
ERROR: "kfree" [net/atm/atm.ko] undefined!
ERROR: "prepare_to_wait" [net/atm/atm.ko] undefined!
ERROR: "sock_unregister" [net/atm/atm.ko] undefined!
ERROR: "scnprintf" [net/atm/atm.ko] undefined!
ERROR: "finish_wait" [net/atm/atm.ko] undefined!
ERROR: "skb_dequeue" [net/atm/atm.ko] undefined!
ERROR: "seq_list_start_head" [net/atm/atm.ko] undefined!
ERROR: "__get_user_2" [net/atm/atm.ko] undefined!
ERROR: "seq_list_next" [net/atm/atm.ko] undefined!
ERROR: "consume_skb" [net/atm/atm.ko] undefined!
ERROR: "dev_set_name" [net/atm/atm.ko] undefined!
ERROR: "skb_put" [net/atm/atm.ko] undefined!
ERROR: "_copy_from_user" [net/atm/atm.ko] undefined!
ERROR: "lockdep_rcu_suspicious" [net/atm/atm.ko] undefined!
ERROR: "skb_free_datagram" [net/atm/atm.ko] undefined!
ERROR: "add_uevent_var" [net/atm/atm.ko] undefined!
ERROR: "register_netdevice" [net/8021q/8021q.ko] undefined!
ERROR: "rcu_lock_map" [net/8021q/8021q.ko] undefined!
ERROR: "kmalloc_caches" [net/8021q/8021q.ko] undefined!
ERROR: "dev_change_flags" [net/8021q/8021q.ko] undefined!
ERROR: "vlan_filter_push_vids" [net/8021q/8021q.ko] undefined!
ERROR: "dev_mc_unsync" [net/8021q/8021q.ko] undefined!
ERROR: "vlan_filter_drop_vids" [net/8021q/8021q.ko] undefined!
ERROR: "dev_get_flags" [net/8021q/8021q.ko] undefined!
ERROR: "rcu_barrier" [net/8021q/8021q.ko] undefined!
ERROR: "proc_create_single_data" [net/8021q/8021q.ko] undefined!
ERROR: "garp_uninit_applicant" [net/8021q/8021q.ko] undefined!
ERROR: "vlan_dev_vlan_id" [net/8021q/8021q.ko] undefined!
ERROR: "dev_uc_add" [net/8021q/8021q.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [net/8021q/8021q.ko] undefined!
ERROR: "seq_puts" [net/8021q/8021q.ko] undefined!
ERROR: "garp_request_join" [net/8021q/8021q.ko] undefined!
ERROR: "rtnl_lock" [net/8021q/8021q.ko] undefined!
ERROR: "vlan_uses_dev" [net/8021q/8021q.ko] undefined!
ERROR: "netif_carrier_on" [net/8021q/8021q.ko] undefined!
ERROR: "seq_printf" [net/8021q/8021q.ko] undefined!
ERROR: "register_netdevice_notifier" [net/8021q/8021q.ko] undefined!
ERROR: "netif_carrier_off" [net/8021q/8021q.ko] undefined!
ERROR: "__warn_printk" [net/8021q/8021q.ko] undefined!
ERROR: "remove_proc_entry" [net/8021q/8021q.ko] undefined!
ERROR: "dev_set_allmulti" [net/8021q/8021q.ko] undefined!
ERROR: "vlan_vid_del" [net/8021q/8021q.ko] undefined!
ERROR: "call_netdevice_notifiers" [net/8021q/8021q.ko] undefined!
ERROR: "lockdep_rtnl_is_held" [net/8021q/8021q.ko] undefined!
ERROR: "linkwatch_fire_event" [net/8021q/8021q.ko] undefined!
ERROR: "vlan_vid_add" [net/8021q/8021q.ko] undefined!
ERROR: "__preempt_count" [net/8021q/8021q.ko] undefined!
ERROR: "garp_init_applicant" [net/8021q/8021q.ko] undefined!
ERROR: "trace_hardirqs_on" [net/8021q/8021q.ko] undefined!
ERROR: "rcu_read_lock_held" [net/8021q/8021q.ko] undefined!
ERROR: "free_percpu" [net/8021q/8021q.ko] undefined!
ERROR: "unregister_netdevice_notifier" [net/8021q/8021q.ko] undefined!
ERROR: "strcmp" [net/8021q/8021q.ko] undefined!
ERROR: "proc_remove" [net/8021q/8021q.ko] undefined!
ERROR: "vlan_ioctl_set" [net/8021q/8021q.ko] undefined!
ERROR: "lock_release" [net/8021q/8021q.ko] undefined!
ERROR: "_copy_to_user" [net/8021q/8021q.ko] undefined!
ERROR: "lock_acquire" [net/8021q/8021q.ko] undefined!
ERROR: "unregister_pernet_subsys" [net/8021q/8021q.ko] undefined!
ERROR: "unregister_netdevice_many" [net/8021q/8021q.ko] undefined!
ERROR: "debug_lockdep_rcu_enabled" [net/8021q/8021q.ko] undefined!
ERROR: "__ethtool_get_link_ksettings" [net/8021q/8021q.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [net/8021q/8021q.ko] undefined!
ERROR: "printk" [net/8021q/8021q.ko] undefined!
ERROR: "ethtool_op_get_link" [net/8021q/8021q.ko] undefined!
ERROR: "__list_del_entry_valid" [net/8021q/8021q.ko] undefined!
ERROR: "ns_capable" [net/8021q/8021q.ko] undefined!
ERROR: "free_netdev" [net/8021q/8021q.ko] undefined!
ERROR: "strncpy" [net/8021q/8021q.ko] undefined!
ERROR: "garp_register_application" [net/8021q/8021q.ko] undefined!
ERROR: "nla_put" [net/8021q/8021q.ko] undefined!
ERROR: "netdev_upper_dev_unlink" [net/8021q/8021q.ko] undefined!
ERROR: "strlcpy" [net/8021q/8021q.ko] undefined!
ERROR: "skb_push" [net/8021q/8021q.ko] undefined!
ERROR: "proc_mkdir_data" [net/8021q/8021q.ko] undefined!
ERROR: "netif_stacked_transfer_operstate" [net/8021q/8021q.ko] undefined!
ERROR: "init_net" [net/8021q/8021q.ko] undefined!
ERROR: "rtnl_link_unregister" [net/8021q/8021q.ko] undefined!
ERROR: "__dev_get_by_index" [net/8021q/8021q.ko] undefined!
ERROR: "__list_add_valid" [net/8021q/8021q.ko] undefined!
ERROR: "garp_request_leave" [net/8021q/8021q.ko] undefined!
ERROR: "__alloc_percpu_gfp" [net/8021q/8021q.ko] undefined!
ERROR: "eth_header_parse" [net/8021q/8021q.ko] undefined!
ERROR: "alloc_netdev_mqs" [net/8021q/8021q.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [net/8021q/8021q.ko] undefined!
ERROR: "register_pernet_subsys" [net/8021q/8021q.ko] undefined!
ERROR: "netdev_upper_dev_link" [net/8021q/8021q.ko] undefined!
ERROR: "proc_create_net_data" [net/8021q/8021q.ko] undefined!
ERROR: "ether_setup" [net/8021q/8021q.ko] undefined!
ERROR: "dev_uc_unsync" [net/8021q/8021q.ko] undefined!
ERROR: "__dev_get_by_name" [net/8021q/8021q.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [net/8021q/8021q.ko] undefined!
ERROR: "garp_unregister_application" [net/8021q/8021q.ko] undefined!
ERROR: "unregister_netdevice_queue" [net/8021q/8021q.ko] undefined!
ERROR: "netdev_warn" [net/8021q/8021q.ko] undefined!
ERROR: "eth_validate_addr" [net/8021q/8021q.ko] undefined!
ERROR: "dev_set_promiscuity" [net/8021q/8021q.ko] undefined!
ERROR: "kfree" [net/8021q/8021q.ko] undefined!
ERROR: "dev_close_many" [net/8021q/8021q.ko] undefined!
ERROR: "rtnl_link_register" [net/8021q/8021q.ko] undefined!
ERROR: "dev_uc_del" [net/8021q/8021q.ko] undefined!
ERROR: "dev_uc_sync" [net/8021q/8021q.ko] undefined!
ERROR: "snprintf" [net/8021q/8021q.ko] undefined!
ERROR: "__nla_validate" [net/8021q/8021q.ko] undefined!
ERROR: "netdev_update_features" [net/8021q/8021q.ko] undefined!
ERROR: "rtnl_is_locked" [net/8021q/8021q.ko] undefined!
ERROR: "dev_queue_xmit" [net/8021q/8021q.ko] undefined!
ERROR: "_copy_from_user" [net/8021q/8021q.ko] undefined!
ERROR: "trace_hardirqs_off" [net/8021q/8021q.ko] undefined!
ERROR: "dev_mc_sync" [net/8021q/8021q.ko] undefined!
ERROR: "rtnl_unlock" [net/8021q/8021q.ko] undefined!
ERROR: "dev_get_stats" [net/8021q/8021q.ko] undefined!
ERROR: "lockdep_rcu_suspicious" [net/8021q/8021q.ko] undefined!
ERROR: "dev_set_mtu" [net/8021q/8021q.ko] undefined!
ERROR: "param_ops_uint" [net/802/garp.ko] undefined!
ERROR: "stp_proto_unregister" [net/802/garp.ko] undefined!
ERROR: "stp_proto_register" [net/802/garp.ko] undefined!
ERROR: "dev_mc_del" [net/802/garp.ko] undefined!
ERROR: "del_timer" [net/802/garp.ko] undefined!
ERROR: "__warn_printk" [net/802/garp.ko] undefined!
ERROR: "init_timer_key" [net/802/garp.ko] undefined!
ERROR: "__raw_spin_lock_init" [net/802/garp.ko] undefined!
ERROR: "dev_mc_add" [net/802/garp.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [net/802/garp.ko] undefined!
ERROR: "kmalloc_caches" [net/802/garp.ko] undefined!
ERROR: "rtnl_is_locked" [net/802/garp.ko] undefined!
ERROR: "_raw_spin_unlock_bh" [net/802/garp.ko] undefined!
ERROR: "rb_insert_color" [net/802/garp.ko] undefined!
ERROR: "__kmalloc" [net/802/garp.ko] undefined!
ERROR: "_raw_spin_lock_bh" [net/802/garp.ko] undefined!
ERROR: "rcu_read_lock_held" [net/802/garp.ko] undefined!
ERROR: "kfree_skb" [net/802/garp.ko] undefined!
ERROR: "skb_pull" [net/802/garp.ko] undefined!
ERROR: "__pskb_pull_tail" [net/802/garp.ko] undefined!
ERROR: "skb_dequeue" [net/802/garp.ko] undefined!
ERROR: "dev_queue_xmit" [net/802/garp.ko] undefined!
ERROR: "_raw_spin_unlock" [net/802/garp.ko] undefined!
ERROR: "_raw_spin_lock" [net/802/garp.ko] undefined!
ERROR: "lockdep_rcu_suspicious" [net/802/garp.ko] undefined!
ERROR: "lockdep_rtnl_is_held" [net/802/garp.ko] undefined!
ERROR: "call_rcu" [net/802/garp.ko] undefined!
ERROR: "debug_lockdep_rcu_enabled" [net/802/garp.ko] undefined!
ERROR: "mod_timer" [net/802/garp.ko] undefined!
ERROR: "jiffies" [net/802/garp.ko] undefined!
ERROR: "prandom_u32" [net/802/garp.ko] undefined!
ERROR: "__msecs_to_jiffies" [net/802/garp.ko] undefined!
ERROR: "rb_next" [net/802/garp.ko] undefined!
ERROR: "rb_first" [net/802/garp.ko] undefined!
ERROR: "kfree" [net/802/garp.ko] undefined!
ERROR: "rb_erase" [net/802/garp.ko] undefined!
ERROR: "__alloc_skb" [net/802/garp.ko] undefined!
ERROR: "skb_queue_tail" [net/802/garp.ko] undefined!
ERROR: "llc_mac_hdr_init" [net/802/garp.ko] undefined!
ERROR: "skb_push" [net/802/garp.ko] undefined!
ERROR: "memcmp" [net/802/garp.ko] undefined!
ERROR: "llc_sap_close" [net/802/stp.ko] undefined!
ERROR: "refcount_warn_saturate" [net/802/stp.ko] undefined!
ERROR: "synchronize_rcu" [net/802/stp.ko] undefined!
ERROR: "llc_sap_open" [net/802/stp.ko] undefined!
ERROR: "mutex_unlock" [net/802/stp.ko] undefined!
ERROR: "mutex_lock_nested" [net/802/stp.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [net/802/stp.ko] undefined!
ERROR: "lockdep_rcu_suspicious" [net/802/stp.ko] undefined!
ERROR: "rcu_read_lock_held" [net/802/stp.ko] undefined!
ERROR: "debug_lockdep_rcu_enabled" [net/802/stp.ko] undefined!
ERROR: "kfree_skb" [net/802/stp.ko] undefined!
ERROR: "unregister_netdevice_notifier" [net/core/failover.ko] undefined!
ERROR: "register_netdevice_notifier" [net/core/failover.ko] undefined!
ERROR: "kfree" [net/core/failover.ko] undefined!
ERROR: "__list_del_entry_valid" [net/core/failover.ko] undefined!
ERROR: "rcu_read_lock_held" [net/core/failover.ko] undefined!
ERROR: "rtnl_unlock" [net/core/failover.ko] undefined!
ERROR: "init_net" [net/core/failover.ko] undefined!
ERROR: "rtnl_lock" [net/core/failover.ko] undefined!
ERROR: "netdev_info" [net/core/failover.ko] undefined!
ERROR: "__list_add_valid" [net/core/failover.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [net/core/failover.ko] undefined!
ERROR: "kmalloc_caches" [net/core/failover.ko] undefined!
ERROR: "netdev_err" [net/core/failover.ko] undefined!
ERROR: "__warn_printk" [net/core/failover.ko] undefined!
ERROR: "netdev_rx_handler_unregister" [net/core/failover.ko] undefined!
ERROR: "netdev_upper_dev_unlink" [net/core/failover.ko] undefined!
ERROR: "netdev_master_upper_dev_link" [net/core/failover.ko] undefined!
ERROR: "netdev_rx_handler_register" [net/core/failover.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [net/core/failover.ko] undefined!
ERROR: "rtnl_is_locked" [net/core/failover.ko] undefined!
ERROR: "_raw_spin_unlock" [net/core/failover.ko] undefined!
ERROR: "lockdep_rcu_suspicious" [net/core/failover.ko] undefined!
ERROR: "lockdep_rtnl_is_held" [net/core/failover.ko] undefined!
ERROR: "debug_lockdep_rcu_enabled" [net/core/failover.ko] undefined!
ERROR: "_raw_spin_lock" [net/core/failover.ko] undefined!
ERROR: "kasprintf" [sound/soundcore.ko] undefined!
ERROR: "class_destroy" [sound/soundcore.ko] undefined!
ERROR: "__class_create" [sound/soundcore.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/siox/siox-bus-gpio.ko] undefined!
ERROR: "__platform_driver_register" [drivers/siox/siox-bus-gpio.ko] undefined!
ERROR: "put_device" [drivers/siox/siox-bus-gpio.ko] undefined!
ERROR: "_dev_err" [drivers/siox/siox-bus-gpio.ko] undefined!
ERROR: "siox_master_register" [drivers/siox/siox-bus-gpio.ko] undefined!
ERROR: "devm_gpiod_get" [drivers/siox/siox-bus-gpio.ko] undefined!
ERROR: "siox_master_alloc" [drivers/siox/siox-bus-gpio.ko] undefined!
ERROR: "gpiod_get_value_cansleep" [drivers/siox/siox-bus-gpio.ko] undefined!
ERROR: "__const_udelay" [drivers/siox/siox-bus-gpio.ko] undefined!
ERROR: "gpiod_set_value_cansleep" [drivers/siox/siox-bus-gpio.ko] undefined!
ERROR: "siox_master_unregister" [drivers/siox/siox-bus-gpio.ko] undefined!
ERROR: "trace_event_raw_init" [drivers/siox/siox-core.ko] undefined!
ERROR: "trace_event_reg" [drivers/siox/siox-core.ko] undefined!
ERROR: "bus_unregister" [drivers/siox/siox-core.ko] undefined!
ERROR: "bus_register" [drivers/siox/siox-core.ko] undefined!
ERROR: "printk" [drivers/siox/siox-core.ko] undefined!
ERROR: "driver_register" [drivers/siox/siox-core.ko] undefined!
ERROR: "device_del" [drivers/siox/siox-core.ko] undefined!
ERROR: "kthread_stop" [drivers/siox/siox-core.ko] undefined!
ERROR: "device_add" [drivers/siox/siox-core.ko] undefined!
ERROR: "kthread_create_on_node" [drivers/siox/siox-core.ko] undefined!
ERROR: "__mutex_init" [drivers/siox/siox-core.ko] undefined!
ERROR: "device_initialize" [drivers/siox/siox-core.ko] undefined!
ERROR: "__kmalloc" [drivers/siox/siox-core.ko] undefined!
ERROR: "_dev_err" [drivers/siox/siox-core.ko] undefined!
ERROR: "krealloc" [drivers/siox/siox-core.ko] undefined!
ERROR: "kernfs_find_and_get_ns" [drivers/siox/siox-core.ko] undefined!
ERROR: "__list_add_valid" [drivers/siox/siox-core.ko] undefined!
ERROR: "device_register" [drivers/siox/siox-core.ko] undefined!
ERROR: "dev_set_name" [drivers/siox/siox-core.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/siox/siox-core.ko] undefined!
ERROR: "kmalloc_caches" [drivers/siox/siox-core.ko] undefined!
ERROR: "strcmp" [drivers/siox/siox-core.ko] undefined!
ERROR: "sscanf" [drivers/siox/siox-core.ko] undefined!
ERROR: "put_device" [drivers/siox/siox-core.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/siox/siox-core.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/siox/siox-core.ko] undefined!
ERROR: "lockdep_rcu_suspicious" [drivers/siox/siox-core.ko] undefined!
ERROR: "rcu_read_lock_sched_held" [drivers/siox/siox-core.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/siox/siox-core.ko] undefined!
ERROR: "debug_lockdep_rcu_enabled" [drivers/siox/siox-core.ko] undefined!
ERROR: "__preempt_count" [drivers/siox/siox-core.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/siox/siox-core.ko] undefined!
ERROR: "kthread_should_stop" [drivers/siox/siox-core.ko] undefined!
ERROR: "schedule_timeout" [drivers/siox/siox-core.ko] undefined!
ERROR: "current_task" [drivers/siox/siox-core.ko] undefined!
ERROR: "jiffies" [drivers/siox/siox-core.ko] undefined!
ERROR: "get_device" [drivers/siox/siox-core.ko] undefined!
ERROR: "wake_up_process" [drivers/siox/siox-core.ko] undefined!
ERROR: "kstrtoint" [drivers/siox/siox-core.ko] undefined!
ERROR: "device_unregister" [drivers/siox/siox-core.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/siox/siox-core.ko] undefined!
ERROR: "kernfs_notify" [drivers/siox/siox-core.ko] undefined!
ERROR: "jiffies_to_usecs" [drivers/siox/siox-core.ko] undefined!
ERROR: "sprintf" [drivers/siox/siox-core.ko] undefined!
ERROR: "mutex_unlock" [drivers/siox/siox-core.ko] undefined!
ERROR: "nsecs_to_jiffies" [drivers/siox/siox-core.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/siox/siox-core.ko] undefined!
ERROR: "kstrtoull" [drivers/siox/siox-core.ko] undefined!
ERROR: "kfree" [drivers/siox/siox-core.ko] undefined!
ERROR: "bpf_trace_run5" [drivers/siox/siox-core.ko] undefined!
ERROR: "bpf_trace_run4" [drivers/siox/siox-core.ko] undefined!
ERROR: "trace_handle_return" [drivers/siox/siox-core.ko] undefined!
ERROR: "trace_seq_printf" [drivers/siox/siox-core.ko] undefined!
ERROR: "trace_raw_output_prep" [drivers/siox/siox-core.ko] undefined!
ERROR: "trace_event_ignore_this_pid" [drivers/siox/siox-core.ko] undefined!
ERROR: "event_triggers_call" [drivers/siox/siox-core.ko] undefined!
ERROR: "trace_event_buffer_commit" [drivers/siox/siox-core.ko] undefined!
ERROR: "trace_event_buffer_reserve" [drivers/siox/siox-core.ko] undefined!
ERROR: "perf_trace_run_bpf_submit" [drivers/siox/siox-core.ko] undefined!
ERROR: "perf_trace_buf_alloc" [drivers/siox/siox-core.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/siox/siox-core.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/memstick/host/rtsx_pci_ms.ko] undefined!
ERROR: "__platform_driver_register" [drivers/memstick/host/rtsx_pci_ms.ko] undefined!
ERROR: "memstick_detect_change" [drivers/memstick/host/rtsx_pci_ms.ko] undefined!
ERROR: "rtsx_pci_transfer_data" [drivers/memstick/host/rtsx_pci_ms.ko] undefined!
ERROR: "rtsx_pci_send_cmd_no_wait" [drivers/memstick/host/rtsx_pci_ms.ko] undefined!
ERROR: "rtsx_pci_start_run" [drivers/memstick/host/rtsx_pci_ms.ko] undefined!
ERROR: "rtsx_pci_read_register" [drivers/memstick/host/rtsx_pci_ms.ko] undefined!
ERROR: "queue_work_on" [drivers/memstick/host/rtsx_pci_ms.ko] undefined!
ERROR: "system_wq" [drivers/memstick/host/rtsx_pci_ms.ko] undefined!
ERROR: "msleep" [drivers/memstick/host/rtsx_pci_ms.ko] undefined!
ERROR: "rtsx_pci_card_power_on" [drivers/memstick/host/rtsx_pci_ms.ko] undefined!
ERROR: "rtsx_pci_card_pull_ctl_enable" [drivers/memstick/host/rtsx_pci_ms.ko] undefined!
ERROR: "rtsx_pci_card_pull_ctl_disable" [drivers/memstick/host/rtsx_pci_ms.ko] undefined!
ERROR: "rtsx_pci_card_power_off" [drivers/memstick/host/rtsx_pci_ms.ko] undefined!
ERROR: "rtsx_pci_switch_clock" [drivers/memstick/host/rtsx_pci_ms.ko] undefined!
ERROR: "rtsx_pci_write_register" [drivers/memstick/host/rtsx_pci_ms.ko] undefined!
ERROR: "rtsx_pci_card_exclusive_check" [drivers/memstick/host/rtsx_pci_ms.ko] undefined!
ERROR: "rtsx_pci_send_cmd" [drivers/memstick/host/rtsx_pci_ms.ko] undefined!
ERROR: "rtsx_pci_add_cmd" [drivers/memstick/host/rtsx_pci_ms.ko] undefined!
ERROR: "memstick_add_host" [drivers/memstick/host/rtsx_pci_ms.ko] undefined!
ERROR: "lockdep_init_map" [drivers/memstick/host/rtsx_pci_ms.ko] undefined!
ERROR: "__mutex_init" [drivers/memstick/host/rtsx_pci_ms.ko] undefined!
ERROR: "memstick_alloc_host" [drivers/memstick/host/rtsx_pci_ms.ko] undefined!
ERROR: "memstick_free_host" [drivers/memstick/host/rtsx_pci_ms.ko] undefined!
ERROR: "memstick_remove_host" [drivers/memstick/host/rtsx_pci_ms.ko] undefined!
ERROR: "mutex_unlock" [drivers/memstick/host/rtsx_pci_ms.ko] undefined!
ERROR: "memstick_next_req" [drivers/memstick/host/rtsx_pci_ms.ko] undefined!
ERROR: "rtsx_pci_complete_unfinished_transfer" [drivers/memstick/host/rtsx_pci_ms.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/memstick/host/rtsx_pci_ms.ko] undefined!
ERROR: "cancel_work_sync" [drivers/memstick/host/rtsx_pci_ms.ko] undefined!
ERROR: "memstick_suspend_host" [drivers/memstick/host/rtsx_pci_ms.ko] undefined!
ERROR: "memstick_resume_host" [drivers/memstick/host/rtsx_pci_ms.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/memstick/host/rtsx_pci_ms.ko] undefined!
ERROR: "param_ops_bool" [drivers/memstick/host/r592.ko] undefined!
ERROR: "param_ops_int" [drivers/memstick/host/r592.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/memstick/host/r592.ko] undefined!
ERROR: "__pci_register_driver" [drivers/memstick/host/r592.ko] undefined!
ERROR: "schedule" [drivers/memstick/host/r592.ko] undefined!
ERROR: "current_task" [drivers/memstick/host/r592.ko] undefined!
ERROR: "kthread_should_stop" [drivers/memstick/host/r592.ko] undefined!
ERROR: "dma_direct_map_sg" [drivers/memstick/host/r592.ko] undefined!
ERROR: "dma_ops" [drivers/memstick/host/r592.ko] undefined!
ERROR: "wait_for_completion_timeout" [drivers/memstick/host/r592.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/memstick/host/r592.ko] undefined!
ERROR: "memstick_add_host" [drivers/memstick/host/r592.ko] undefined!
ERROR: "request_threaded_irq" [drivers/memstick/host/r592.ko] undefined!
ERROR: "dma_alloc_attrs" [drivers/memstick/host/r592.ko] undefined!
ERROR: "kthread_create_on_node" [drivers/memstick/host/r592.ko] undefined!
ERROR: "init_timer_key" [drivers/memstick/host/r592.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/memstick/host/r592.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/memstick/host/r592.ko] undefined!
ERROR: "pci_ioremap_bar" [drivers/memstick/host/r592.ko] undefined!
ERROR: "pci_request_regions" [drivers/memstick/host/r592.ko] undefined!
ERROR: "dma_set_mask" [drivers/memstick/host/r592.ko] undefined!
ERROR: "pci_set_master" [drivers/memstick/host/r592.ko] undefined!
ERROR: "pci_enable_device" [drivers/memstick/host/r592.ko] undefined!
ERROR: "memstick_alloc_host" [drivers/memstick/host/r592.ko] undefined!
ERROR: "mod_timer" [drivers/memstick/host/r592.ko] undefined!
ERROR: "jiffies" [drivers/memstick/host/r592.ko] undefined!
ERROR: "__msecs_to_jiffies" [drivers/memstick/host/r592.ko] undefined!
ERROR: "complete" [drivers/memstick/host/r592.ko] undefined!
ERROR: "del_timer" [drivers/memstick/host/r592.ko] undefined!
ERROR: "memstick_suspend_host" [drivers/memstick/host/r592.ko] undefined!
ERROR: "memstick_resume_host" [drivers/memstick/host/r592.ko] undefined!
ERROR: "dma_free_attrs" [drivers/memstick/host/r592.ko] undefined!
ERROR: "memstick_free_host" [drivers/memstick/host/r592.ko] undefined!
ERROR: "pci_disable_device" [drivers/memstick/host/r592.ko] undefined!
ERROR: "pci_release_regions" [drivers/memstick/host/r592.ko] undefined!
ERROR: "iounmap" [drivers/memstick/host/r592.ko] undefined!
ERROR: "free_irq" [drivers/memstick/host/r592.ko] undefined!
ERROR: "memstick_remove_host" [drivers/memstick/host/r592.ko] undefined!
ERROR: "memstick_next_req" [drivers/memstick/host/r592.ko] undefined!
ERROR: "kthread_stop" [drivers/memstick/host/r592.ko] undefined!
ERROR: "msleep" [drivers/memstick/host/r592.ko] undefined!
ERROR: "memstick_detect_change" [drivers/memstick/host/r592.ko] undefined!
ERROR: "trace_hardirqs_on" [drivers/memstick/host/r592.ko] undefined!
ERROR: "sg_miter_stop" [drivers/memstick/host/r592.ko] undefined!
ERROR: "sg_miter_next" [drivers/memstick/host/r592.ko] undefined!
ERROR: "sg_miter_start" [drivers/memstick/host/r592.ko] undefined!
ERROR: "trace_hardirqs_off" [drivers/memstick/host/r592.ko] undefined!
ERROR: "__kfifo_out" [drivers/memstick/host/r592.ko] undefined!
ERROR: "__kfifo_in" [drivers/memstick/host/r592.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/memstick/host/r592.ko] undefined!
ERROR: "wake_up_process" [drivers/memstick/host/r592.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/memstick/host/r592.ko] undefined!
ERROR: "printk" [drivers/memstick/host/r592.ko] undefined!
ERROR: "param_ops_bool" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "__pci_register_driver" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "memstick_remove_host" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "tasklet_kill" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "memstick_free_host" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "free_irq" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "pci_release_regions" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "kfree" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "iounmap" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "request_threaded_irq" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "init_timer_key" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "tasklet_init" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "snprintf" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "ioremap" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "memstick_alloc_host" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "memstick_add_host" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "__kmalloc" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "pci_request_regions" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "dma_set_mask" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "memstick_next_req" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "del_timer" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "dma_direct_map_sg" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "dma_ops" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "mod_timer" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "jiffies" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "__tasklet_schedule" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "msleep" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "__const_udelay" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "trace_hardirqs_on" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "__kunmap_atomic" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "kmap_atomic" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "trace_hardirqs_off" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "mem_section" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "pci_disable_device" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "pci_enable_wake" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "pci_choose_state" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "pci_save_state" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "memstick_suspend_host" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "memstick_detect_change" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "memstick_resume_host" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "pci_set_master" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "pci_enable_device" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "pci_restore_state" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "pci_set_power_state" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "pci_write_config_byte" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "pci_read_config_byte" [drivers/memstick/host/jmb38x_ms.ko] undefined!
ERROR: "param_ops_bool" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: "tifm_unregister_driver" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: "tifm_register_driver" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: "tifm_eject" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: "__tasklet_schedule" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: "trace_hardirqs_on" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: "__kunmap_atomic" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: "kmap_atomic" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: "trace_hardirqs_off" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: "mem_section" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: "mod_timer" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: "jiffies" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: "tifm_map_sg" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: "printk" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: "memstick_add_host" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: "tifm_has_ms_pif" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: "tasklet_init" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: "init_timer_key" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: "memstick_alloc_host" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: "tifm_unmap_sg" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: "memstick_free_host" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: "memstick_remove_host" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: "memstick_next_req" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: "del_timer" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: "tasklet_kill" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: "memstick_suspend_host" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: "memstick_resume_host" [drivers/memstick/host/tifm_ms.ko] undefined!
ERROR: "param_ops_uint" [drivers/memstick/core/memstick.ko] undefined!
ERROR: "idr_destroy" [drivers/memstick/core/memstick.ko] undefined!
ERROR: "class_unregister" [drivers/memstick/core/memstick.ko] undefined!
ERROR: "destroy_workqueue" [drivers/memstick/core/memstick.ko] undefined!
ERROR: "bus_unregister" [drivers/memstick/core/memstick.ko] undefined!
ERROR: "__class_register" [drivers/memstick/core/memstick.ko] undefined!
ERROR: "bus_register" [drivers/memstick/core/memstick.ko] undefined!
ERROR: "alloc_workqueue" [drivers/memstick/core/memstick.ko] undefined!
ERROR: "driver_unregister" [drivers/memstick/core/memstick.ko] undefined!
ERROR: "driver_register" [drivers/memstick/core/memstick.ko] undefined!
ERROR: "mutex_destroy" [drivers/memstick/core/memstick.ko] undefined!
ERROR: "device_del" [drivers/memstick/core/memstick.ko] undefined!
ERROR: "flush_workqueue" [drivers/memstick/core/memstick.ko] undefined!
ERROR: "idr_remove" [drivers/memstick/core/memstick.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/memstick/core/memstick.ko] undefined!
ERROR: "device_add" [drivers/memstick/core/memstick.ko] undefined!
ERROR: "__preempt_count" [drivers/memstick/core/memstick.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/memstick/core/memstick.ko] undefined!
ERROR: "idr_alloc" [drivers/memstick/core/memstick.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/memstick/core/memstick.ko] undefined!
ERROR: "idr_preload" [drivers/memstick/core/memstick.ko] undefined!
ERROR: "device_initialize" [drivers/memstick/core/memstick.ko] undefined!
ERROR: "lockdep_init_map" [drivers/memstick/core/memstick.ko] undefined!
ERROR: "__mutex_init" [drivers/memstick/core/memstick.ko] undefined!
ERROR: "__kmalloc" [drivers/memstick/core/memstick.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/memstick/core/memstick.ko] undefined!
ERROR: "__pm_runtime_idle" [drivers/memstick/core/memstick.ko] undefined!
ERROR: "mutex_unlock" [drivers/memstick/core/memstick.ko] undefined!
ERROR: "device_register" [drivers/memstick/core/memstick.ko] undefined!
ERROR: "device_unregister" [drivers/memstick/core/memstick.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/memstick/core/memstick.ko] undefined!
ERROR: "dev_set_name" [drivers/memstick/core/memstick.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/memstick/core/memstick.ko] undefined!
ERROR: "kmalloc_caches" [drivers/memstick/core/memstick.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/memstick/core/memstick.ko] undefined!
ERROR: "wait_for_completion" [drivers/memstick/core/memstick.ko] undefined!
ERROR: "queue_work_on" [drivers/memstick/core/memstick.ko] undefined!
ERROR: "sprintf" [drivers/memstick/core/memstick.ko] undefined!
ERROR: "add_uevent_var" [drivers/memstick/core/memstick.ko] undefined!
ERROR: "get_device" [drivers/memstick/core/memstick.ko] undefined!
ERROR: "put_device" [drivers/memstick/core/memstick.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/memstick/core/memstick.ko] undefined!
ERROR: "kfree" [drivers/memstick/core/memstick.ko] undefined!
ERROR: "complete" [drivers/memstick/core/memstick.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/memstick/core/memstick.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/memstick/core/memstick.ko] undefined!
ERROR: "param_ops_int" [drivers/edac/i3200_edac.ko] undefined!
ERROR: "pci_dev_put" [drivers/edac/i3200_edac.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/edac/i3200_edac.ko] undefined!
ERROR: "pci_get_device" [drivers/edac/i3200_edac.ko] undefined!
ERROR: "__pci_register_driver" [drivers/edac/i3200_edac.ko] undefined!
ERROR: "edac_op_state" [drivers/edac/i3200_edac.ko] undefined!
ERROR: "edac_mc_handle_error" [drivers/edac/i3200_edac.ko] undefined!
ERROR: "printk" [drivers/edac/i3200_edac.ko] undefined!
ERROR: "pci_dev_get" [drivers/edac/i3200_edac.ko] undefined!
ERROR: "edac_mc_add_mc_with_groups" [drivers/edac/i3200_edac.ko] undefined!
ERROR: "pci_write_config_word" [drivers/edac/i3200_edac.ko] undefined!
ERROR: "pci_read_config_word" [drivers/edac/i3200_edac.ko] undefined!
ERROR: "edac_mc_alloc" [drivers/edac/i3200_edac.ko] undefined!
ERROR: "pci_read_config_byte" [drivers/edac/i3200_edac.ko] undefined!
ERROR: "ioremap" [drivers/edac/i3200_edac.ko] undefined!
ERROR: "pci_read_config_dword" [drivers/edac/i3200_edac.ko] undefined!
ERROR: "pci_enable_device" [drivers/edac/i3200_edac.ko] undefined!
ERROR: "pci_disable_device" [drivers/edac/i3200_edac.ko] undefined!
ERROR: "edac_mc_free" [drivers/edac/i3200_edac.ko] undefined!
ERROR: "iounmap" [drivers/edac/i3200_edac.ko] undefined!
ERROR: "edac_mc_del_mc" [drivers/edac/i3200_edac.ko] undefined!
ERROR: "param_ops_int" [drivers/edac/i3000_edac.ko] undefined!
ERROR: "pci_dev_put" [drivers/edac/i3000_edac.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/edac/i3000_edac.ko] undefined!
ERROR: "pci_get_device" [drivers/edac/i3000_edac.ko] undefined!
ERROR: "__pci_register_driver" [drivers/edac/i3000_edac.ko] undefined!
ERROR: "edac_op_state" [drivers/edac/i3000_edac.ko] undefined!
ERROR: "edac_mc_handle_error" [drivers/edac/i3000_edac.ko] undefined!
ERROR: "edac_mc_find_csrow_by_page" [drivers/edac/i3000_edac.ko] undefined!
ERROR: "pci_read_config_byte" [drivers/edac/i3000_edac.ko] undefined!
ERROR: "printk" [drivers/edac/i3000_edac.ko] undefined!
ERROR: "pci_dev_get" [drivers/edac/i3000_edac.ko] undefined!
ERROR: "edac_pci_create_generic_ctl" [drivers/edac/i3000_edac.ko] undefined!
ERROR: "edac_mc_add_mc_with_groups" [drivers/edac/i3000_edac.ko] undefined!
ERROR: "pci_write_config_word" [drivers/edac/i3000_edac.ko] undefined!
ERROR: "pci_read_config_word" [drivers/edac/i3000_edac.ko] undefined!
ERROR: "edac_mc_alloc" [drivers/edac/i3000_edac.ko] undefined!
ERROR: "iounmap" [drivers/edac/i3000_edac.ko] undefined!
ERROR: "ioremap" [drivers/edac/i3000_edac.ko] undefined!
ERROR: "pci_read_config_dword" [drivers/edac/i3000_edac.ko] undefined!
ERROR: "pci_enable_device" [drivers/edac/i3000_edac.ko] undefined!
ERROR: "edac_mc_free" [drivers/edac/i3000_edac.ko] undefined!
ERROR: "edac_mc_del_mc" [drivers/edac/i3000_edac.ko] undefined!
ERROR: "edac_pci_release_generic_ctl" [drivers/edac/i3000_edac.ko] undefined!
ERROR: "param_ops_int" [drivers/edac/i82875p_edac.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/edac/i82875p_edac.ko] undefined!
ERROR: "__pci_register_driver" [drivers/edac/i82875p_edac.ko] undefined!
ERROR: "edac_op_state" [drivers/edac/i82875p_edac.ko] undefined!
ERROR: "edac_mc_handle_error" [drivers/edac/i82875p_edac.ko] undefined!
ERROR: "edac_mc_find_csrow_by_page" [drivers/edac/i82875p_edac.ko] undefined!
ERROR: "edac_mc_add_mc_with_groups" [drivers/edac/i82875p_edac.ko] undefined!
ERROR: "edac_mc_alloc" [drivers/edac/i82875p_edac.ko] undefined!
ERROR: "pci_dev_get" [drivers/edac/i82875p_edac.ko] undefined!
ERROR: "edac_pci_create_generic_ctl" [drivers/edac/i82875p_edac.ko] undefined!
ERROR: "pci_release_regions" [drivers/edac/i82875p_edac.ko] undefined!
ERROR: "pci_ioremap_bar" [drivers/edac/i82875p_edac.ko] undefined!
ERROR: "pci_request_regions" [drivers/edac/i82875p_edac.ko] undefined!
ERROR: "pci_bus_add_device" [drivers/edac/i82875p_edac.ko] undefined!
ERROR: "pci_bus_assign_resources" [drivers/edac/i82875p_edac.ko] undefined!
ERROR: "pci_scan_single_device" [drivers/edac/i82875p_edac.ko] undefined!
ERROR: "pci_write_config_byte" [drivers/edac/i82875p_edac.ko] undefined!
ERROR: "pci_get_device" [drivers/edac/i82875p_edac.ko] undefined!
ERROR: "pci_enable_device" [drivers/edac/i82875p_edac.ko] undefined!
ERROR: "printk" [drivers/edac/i82875p_edac.ko] undefined!
ERROR: "pci_write_config_word" [drivers/edac/i82875p_edac.ko] undefined!
ERROR: "pci_read_config_byte" [drivers/edac/i82875p_edac.ko] undefined!
ERROR: "pci_read_config_dword" [drivers/edac/i82875p_edac.ko] undefined!
ERROR: "pci_read_config_word" [drivers/edac/i82875p_edac.ko] undefined!
ERROR: "edac_mc_free" [drivers/edac/i82875p_edac.ko] undefined!
ERROR: "pci_dev_put" [drivers/edac/i82875p_edac.ko] undefined!
ERROR: "pci_disable_device" [drivers/edac/i82875p_edac.ko] undefined!
ERROR: "iounmap" [drivers/edac/i82875p_edac.ko] undefined!
ERROR: "edac_mc_del_mc" [drivers/edac/i82875p_edac.ko] undefined!
ERROR: "edac_pci_release_generic_ctl" [drivers/edac/i82875p_edac.ko] undefined!
ERROR: "param_ops_int" [drivers/edac/e752x_edac.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/edac/e752x_edac.ko] undefined!
ERROR: "__pci_register_driver" [drivers/edac/e752x_edac.ko] undefined!
ERROR: "edac_op_state" [drivers/edac/e752x_edac.ko] undefined!
ERROR: "strstr" [drivers/edac/e752x_edac.ko] undefined!
ERROR: "boot_cpu_data" [drivers/edac/e752x_edac.ko] undefined!
ERROR: "pci_dev_get" [drivers/edac/e752x_edac.ko] undefined!
ERROR: "pci_scan_single_device" [drivers/edac/e752x_edac.ko] undefined!
ERROR: "edac_pci_create_generic_ctl" [drivers/edac/e752x_edac.ko] undefined!
ERROR: "edac_mc_add_mc_with_groups" [drivers/edac/e752x_edac.ko] undefined!
ERROR: "pci_get_device" [drivers/edac/e752x_edac.ko] undefined!
ERROR: "edac_mc_alloc" [drivers/edac/e752x_edac.ko] undefined!
ERROR: "pci_enable_device" [drivers/edac/e752x_edac.ko] undefined!
ERROR: "pci_write_config_byte" [drivers/edac/e752x_edac.ko] undefined!
ERROR: "pci_write_config_dword" [drivers/edac/e752x_edac.ko] undefined!
ERROR: "pci_read_config_byte" [drivers/edac/e752x_edac.ko] undefined!
ERROR: "pci_read_config_dword" [drivers/edac/e752x_edac.ko] undefined!
ERROR: "edac_mc_handle_error" [drivers/edac/e752x_edac.ko] undefined!
ERROR: "edac_mc_find_csrow_by_page" [drivers/edac/e752x_edac.ko] undefined!
ERROR: "pci_write_config_word" [drivers/edac/e752x_edac.ko] undefined!
ERROR: "pci_read_config_word" [drivers/edac/e752x_edac.ko] undefined!
ERROR: "printk" [drivers/edac/e752x_edac.ko] undefined!
ERROR: "edac_mc_free" [drivers/edac/e752x_edac.ko] undefined!
ERROR: "pci_dev_put" [drivers/edac/e752x_edac.ko] undefined!
ERROR: "edac_mc_del_mc" [drivers/edac/e752x_edac.ko] undefined!
ERROR: "edac_pci_release_generic_ctl" [drivers/edac/e752x_edac.ko] undefined!
ERROR: "param_ops_int" [drivers/edac/e7xxx_edac.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/edac/e7xxx_edac.ko] undefined!
ERROR: "__pci_register_driver" [drivers/edac/e7xxx_edac.ko] undefined!
ERROR: "edac_op_state" [drivers/edac/e7xxx_edac.ko] undefined!
ERROR: "edac_pci_create_generic_ctl" [drivers/edac/e7xxx_edac.ko] undefined!
ERROR: "edac_mc_add_mc_with_groups" [drivers/edac/e7xxx_edac.ko] undefined!
ERROR: "pci_get_device" [drivers/edac/e7xxx_edac.ko] undefined!
ERROR: "edac_mc_alloc" [drivers/edac/e7xxx_edac.ko] undefined!
ERROR: "pci_enable_device" [drivers/edac/e7xxx_edac.ko] undefined!
ERROR: "pci_read_config_word" [drivers/edac/e7xxx_edac.ko] undefined!
ERROR: "pci_write_config_byte" [drivers/edac/e7xxx_edac.ko] undefined!
ERROR: "pci_read_config_dword" [drivers/edac/e7xxx_edac.ko] undefined!
ERROR: "pci_read_config_byte" [drivers/edac/e7xxx_edac.ko] undefined!
ERROR: "edac_mc_handle_error" [drivers/edac/e7xxx_edac.ko] undefined!
ERROR: "edac_mc_find_csrow_by_page" [drivers/edac/e7xxx_edac.ko] undefined!
ERROR: "printk" [drivers/edac/e7xxx_edac.ko] undefined!
ERROR: "edac_mc_free" [drivers/edac/e7xxx_edac.ko] undefined!
ERROR: "pci_dev_put" [drivers/edac/e7xxx_edac.ko] undefined!
ERROR: "edac_mc_del_mc" [drivers/edac/e7xxx_edac.ko] undefined!
ERROR: "edac_pci_release_generic_ctl" [drivers/edac/e7xxx_edac.ko] undefined!
ERROR: "param_ops_int" [drivers/edac/i5400_edac.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/edac/i5400_edac.ko] undefined!
ERROR: "__pci_register_driver" [drivers/edac/i5400_edac.ko] undefined!
ERROR: "edac_op_state" [drivers/edac/i5400_edac.ko] undefined!
ERROR: "edac_pci_create_generic_ctl" [drivers/edac/i5400_edac.ko] undefined!
ERROR: "edac_mc_add_mc_with_groups" [drivers/edac/i5400_edac.ko] undefined!
ERROR: "kfree" [drivers/edac/i5400_edac.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/edac/i5400_edac.ko] undefined!
ERROR: "kmalloc_caches" [drivers/edac/i5400_edac.ko] undefined!
ERROR: "pci_get_device" [drivers/edac/i5400_edac.ko] undefined!
ERROR: "edac_mc_alloc" [drivers/edac/i5400_edac.ko] undefined!
ERROR: "pci_enable_device" [drivers/edac/i5400_edac.ko] undefined!
ERROR: "printk" [drivers/edac/i5400_edac.ko] undefined!
ERROR: "edac_mc_handle_error" [drivers/edac/i5400_edac.ko] undefined!
ERROR: "snprintf" [drivers/edac/i5400_edac.ko] undefined!
ERROR: "find_first_bit" [drivers/edac/i5400_edac.ko] undefined!
ERROR: "pci_write_config_dword" [drivers/edac/i5400_edac.ko] undefined!
ERROR: "pci_read_config_word" [drivers/edac/i5400_edac.ko] undefined!
ERROR: "pci_read_config_dword" [drivers/edac/i5400_edac.ko] undefined!
ERROR: "edac_mc_free" [drivers/edac/i5400_edac.ko] undefined!
ERROR: "pci_disable_device" [drivers/edac/i5400_edac.ko] undefined!
ERROR: "edac_mc_del_mc" [drivers/edac/i5400_edac.ko] undefined!
ERROR: "edac_pci_release_generic_ctl" [drivers/edac/i5400_edac.ko] undefined!
ERROR: "pci_dev_put" [drivers/edac/i5400_edac.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/edac/i5100_edac.ko] undefined!
ERROR: "debugfs_remove" [drivers/edac/i5100_edac.ko] undefined!
ERROR: "__pci_register_driver" [drivers/edac/i5100_edac.ko] undefined!
ERROR: "printk" [drivers/edac/i5100_edac.ko] undefined!
ERROR: "edac_mc_add_mc_with_groups" [drivers/edac/i5100_edac.ko] undefined!
ERROR: "edac_op_state" [drivers/edac/i5100_edac.ko] undefined!
ERROR: "__const_udelay" [drivers/edac/i5100_edac.ko] undefined!
ERROR: "pci_read_config_word" [drivers/edac/i5100_edac.ko] undefined!
ERROR: "init_timer_key" [drivers/edac/i5100_edac.ko] undefined!
ERROR: "delayed_work_timer_fn" [drivers/edac/i5100_edac.ko] undefined!
ERROR: "lockdep_init_map" [drivers/edac/i5100_edac.ko] undefined!
ERROR: "edac_mc_alloc" [drivers/edac/i5100_edac.ko] undefined!
ERROR: "pci_get_device" [drivers/edac/i5100_edac.ko] undefined!
ERROR: "pci_enable_device" [drivers/edac/i5100_edac.ko] undefined!
ERROR: "cancel_delayed_work" [drivers/edac/i5100_edac.ko] undefined!
ERROR: "queue_delayed_work_on" [drivers/edac/i5100_edac.ko] undefined!
ERROR: "system_wq" [drivers/edac/i5100_edac.ko] undefined!
ERROR: "edac_mc_handle_error" [drivers/edac/i5100_edac.ko] undefined!
ERROR: "snprintf" [drivers/edac/i5100_edac.ko] undefined!
ERROR: "pci_write_config_dword" [drivers/edac/i5100_edac.ko] undefined!
ERROR: "pci_read_config_dword" [drivers/edac/i5100_edac.ko] undefined!
ERROR: "edac_mc_free" [drivers/edac/i5100_edac.ko] undefined!
ERROR: "pci_dev_put" [drivers/edac/i5100_edac.ko] undefined!
ERROR: "pci_disable_device" [drivers/edac/i5100_edac.ko] undefined!
ERROR: "cancel_delayed_work_sync" [drivers/edac/i5100_edac.ko] undefined!
ERROR: "debugfs_remove_recursive" [drivers/edac/i5100_edac.ko] undefined!
ERROR: "edac_mc_del_mc" [drivers/edac/i5100_edac.ko] undefined!
ERROR: "param_ops_int" [drivers/edac/i5000_edac.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/edac/i5000_edac.ko] undefined!
ERROR: "__pci_register_driver" [drivers/edac/i5000_edac.ko] undefined!
ERROR: "edac_op_state" [drivers/edac/i5000_edac.ko] undefined!
ERROR: "printk" [drivers/edac/i5000_edac.ko] undefined!
ERROR: "edac_pci_create_generic_ctl" [drivers/edac/i5000_edac.ko] undefined!
ERROR: "edac_mc_add_mc_with_groups" [drivers/edac/i5000_edac.ko] undefined!
ERROR: "kfree" [drivers/edac/i5000_edac.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/edac/i5000_edac.ko] undefined!
ERROR: "kmalloc_caches" [drivers/edac/i5000_edac.ko] undefined!
ERROR: "pci_get_device" [drivers/edac/i5000_edac.ko] undefined!
ERROR: "edac_mc_alloc" [drivers/edac/i5000_edac.ko] undefined!
ERROR: "pci_read_config_byte" [drivers/edac/i5000_edac.ko] undefined!
ERROR: "pci_enable_device" [drivers/edac/i5000_edac.ko] undefined!
ERROR: "edac_mc_handle_error" [drivers/edac/i5000_edac.ko] undefined!
ERROR: "snprintf" [drivers/edac/i5000_edac.ko] undefined!
ERROR: "pci_write_config_dword" [drivers/edac/i5000_edac.ko] undefined!
ERROR: "pci_read_config_word" [drivers/edac/i5000_edac.ko] undefined!
ERROR: "pci_read_config_dword" [drivers/edac/i5000_edac.ko] undefined!
ERROR: "edac_mc_free" [drivers/edac/i5000_edac.ko] undefined!
ERROR: "edac_mc_del_mc" [drivers/edac/i5000_edac.ko] undefined!
ERROR: "edac_pci_release_generic_ctl" [drivers/edac/i5000_edac.ko] undefined!
ERROR: "pci_dev_put" [drivers/edac/i5000_edac.ko] undefined!
ERROR: "param_ops_int" [drivers/edac/amd76x_edac.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/edac/amd76x_edac.ko] undefined!
ERROR: "__pci_register_driver" [drivers/edac/amd76x_edac.ko] undefined!
ERROR: "edac_op_state" [drivers/edac/amd76x_edac.ko] undefined!
ERROR: "edac_mc_handle_error" [drivers/edac/amd76x_edac.ko] undefined!
ERROR: "printk" [drivers/edac/amd76x_edac.ko] undefined!
ERROR: "edac_pci_create_generic_ctl" [drivers/edac/amd76x_edac.ko] undefined!
ERROR: "edac_mc_add_mc_with_groups" [drivers/edac/amd76x_edac.ko] undefined!
ERROR: "edac_mc_alloc" [drivers/edac/amd76x_edac.ko] undefined!
ERROR: "pci_write_config_dword" [drivers/edac/amd76x_edac.ko] undefined!
ERROR: "pci_read_config_dword" [drivers/edac/amd76x_edac.ko] undefined!
ERROR: "edac_mc_free" [drivers/edac/amd76x_edac.ko] undefined!
ERROR: "edac_mc_del_mc" [drivers/edac/amd76x_edac.ko] undefined!
ERROR: "edac_pci_release_generic_ctl" [drivers/edac/amd76x_edac.ko] undefined!
ERROR: "kobject_put" [drivers/edac/edac_core.ko] undefined!
ERROR: "kmalloc_caches" [drivers/edac/edac_core.ko] undefined!
ERROR: "kobject_get" [drivers/edac/edac_core.ko] undefined!
ERROR: "__kmalloc" [drivers/edac/edac_core.ko] undefined!
ERROR: "subsys_system_register" [drivers/edac/edac_core.ko] undefined!
ERROR: "pci_write_config_word" [drivers/edac/edac_core.ko] undefined!
ERROR: "param_ops_int" [drivers/edac/edac_core.ko] undefined!
ERROR: "strlen" [drivers/edac/edac_core.ko] undefined!
ERROR: "pci_read_config_byte" [drivers/edac/edac_core.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/edac/edac_core.ko] undefined!
ERROR: "kobject_uevent" [drivers/edac/edac_core.ko] undefined!
ERROR: "__tracepoint_mc_event" [drivers/edac/edac_core.ko] undefined!
ERROR: "simple_strtoul" [drivers/edac/edac_core.ko] undefined!
ERROR: "delayed_work_timer_fn" [drivers/edac/edac_core.ko] undefined!
ERROR: "__warn_printk" [drivers/edac/edac_core.ko] undefined!
ERROR: "init_timer_key" [drivers/edac/edac_core.ko] undefined!
ERROR: "cancel_delayed_work_sync" [drivers/edac/edac_core.ko] undefined!
ERROR: "mutex_unlock" [drivers/edac/edac_core.ko] undefined!
ERROR: "pm_runtime_forbid" [drivers/edac/edac_core.ko] undefined!
ERROR: "__preempt_count" [drivers/edac/edac_core.ko] undefined!
ERROR: "sprintf" [drivers/edac/edac_core.ko] undefined!
ERROR: "trace_hardirqs_on" [drivers/edac/edac_core.ko] undefined!
ERROR: "jiffies" [drivers/edac/edac_core.ko] undefined!
ERROR: "kmap_atomic" [drivers/edac/edac_core.ko] undefined!
ERROR: "device_del" [drivers/edac/edac_core.ko] undefined!
ERROR: "debug_lockdep_rcu_enabled" [drivers/edac/edac_core.ko] undefined!
ERROR: "movable_zone" [drivers/edac/edac_core.ko] undefined!
ERROR: "printk" [drivers/edac/edac_core.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/edac/edac_core.ko] undefined!
ERROR: "kobject_init_and_add" [drivers/edac/edac_core.ko] undefined!
ERROR: "panic" [drivers/edac/edac_core.ko] undefined!
ERROR: "mod_delayed_work_on" [drivers/edac/edac_core.ko] undefined!
ERROR: "strncpy" [drivers/edac/edac_core.ko] undefined!
ERROR: "strncmp" [drivers/edac/edac_core.ko] undefined!
ERROR: "pci_read_config_word" [drivers/edac/edac_core.ko] undefined!
ERROR: "mem_section" [drivers/edac/edac_core.ko] undefined!
ERROR: "__kunmap_atomic" [drivers/edac/edac_core.ko] undefined!
ERROR: "destroy_workqueue" [drivers/edac/edac_core.ko] undefined!
ERROR: "sysfs_remove_link" [drivers/edac/edac_core.ko] undefined!
ERROR: "device_add" [drivers/edac/edac_core.ko] undefined!
ERROR: "synchronize_rcu" [drivers/edac/edac_core.ko] undefined!
ERROR: "bus_unregister" [drivers/edac/edac_core.ko] undefined!
ERROR: "__list_add_valid" [drivers/edac/edac_core.ko] undefined!
ERROR: "flush_workqueue" [drivers/edac/edac_core.ko] undefined!
ERROR: "rcu_read_lock_sched_held" [drivers/edac/edac_core.ko] undefined!
ERROR: "sysfs_create_link" [drivers/edac/edac_core.ko] undefined!
ERROR: "sysfs_remove_file_ns" [drivers/edac/edac_core.ko] undefined!
ERROR: "put_device" [drivers/edac/edac_core.ko] undefined!
ERROR: "queue_delayed_work_on" [drivers/edac/edac_core.ko] undefined!
ERROR: "param_get_uint" [drivers/edac/edac_core.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/edac/edac_core.ko] undefined!
ERROR: "_kstrtoul" [drivers/edac/edac_core.ko] undefined!
ERROR: "pci_read_config_dword" [drivers/edac/edac_core.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/edac/edac_core.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/edac/edac_core.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/edac/edac_core.ko] undefined!
ERROR: "round_jiffies_relative" [drivers/edac/edac_core.ko] undefined!
ERROR: "kfree" [drivers/edac/edac_core.ko] undefined!
ERROR: "kstrtouint" [drivers/edac/edac_core.ko] undefined!
ERROR: "device_initialize" [drivers/edac/edac_core.ko] undefined!
ERROR: "lockdep_init_map" [drivers/edac/edac_core.ko] undefined!
ERROR: "pci_get_device" [drivers/edac/edac_core.ko] undefined!
ERROR: "device_unregister" [drivers/edac/edac_core.ko] undefined!
ERROR: "snprintf" [drivers/edac/edac_core.ko] undefined!
ERROR: "dev_set_name" [drivers/edac/edac_core.ko] undefined!
ERROR: "__msecs_to_jiffies" [drivers/edac/edac_core.ko] undefined!
ERROR: "sysfs_create_file_ns" [drivers/edac/edac_core.ko] undefined!
ERROR: "trace_hardirqs_off" [drivers/edac/edac_core.ko] undefined!
ERROR: "alloc_workqueue" [drivers/edac/edac_core.ko] undefined!
ERROR: "lockdep_rcu_suspicious" [drivers/edac/edac_core.ko] undefined!
ERROR: "strcpy" [drivers/edac/edac_core.ko] undefined!
ERROR: "pnp_unregister_driver" [drivers/input/gameport/ns558.ko] undefined!
ERROR: "gameport_unregister_port" [drivers/input/gameport/ns558.ko] undefined!
ERROR: "msleep" [drivers/input/gameport/ns558.ko] undefined!
ERROR: "__release_region" [drivers/input/gameport/ns558.ko] undefined!
ERROR: "pnp_register_driver" [drivers/input/gameport/ns558.ko] undefined!
ERROR: "kfree" [drivers/input/gameport/ns558.ko] undefined!
ERROR: "printk" [drivers/input/gameport/ns558.ko] undefined!
ERROR: "__list_add_valid" [drivers/input/gameport/ns558.ko] undefined!
ERROR: "__gameport_register_port" [drivers/input/gameport/ns558.ko] undefined!
ERROR: "gameport_set_phys" [drivers/input/gameport/ns558.ko] undefined!
ERROR: "strlcpy" [drivers/input/gameport/ns558.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/input/gameport/ns558.ko] undefined!
ERROR: "kmalloc_caches" [drivers/input/gameport/ns558.ko] undefined!
ERROR: "__request_region" [drivers/input/gameport/ns558.ko] undefined!
ERROR: "ioport_resource" [drivers/input/gameport/ns558.ko] undefined!
ERROR: "pnp_get_resource" [drivers/input/gameport/ns558.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/input/gameport/fm801-gp.ko] undefined!
ERROR: "__pci_register_driver" [drivers/input/gameport/fm801-gp.ko] undefined!
ERROR: "printk" [drivers/input/gameport/fm801-gp.ko] undefined!
ERROR: "__gameport_register_port" [drivers/input/gameport/fm801-gp.ko] undefined!
ERROR: "__request_region" [drivers/input/gameport/fm801-gp.ko] undefined!
ERROR: "ioport_resource" [drivers/input/gameport/fm801-gp.ko] undefined!
ERROR: "gameport_set_phys" [drivers/input/gameport/fm801-gp.ko] undefined!
ERROR: "strlcpy" [drivers/input/gameport/fm801-gp.ko] undefined!
ERROR: "pci_enable_device" [drivers/input/gameport/fm801-gp.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/input/gameport/fm801-gp.ko] undefined!
ERROR: "kmalloc_caches" [drivers/input/gameport/fm801-gp.ko] undefined!
ERROR: "pci_disable_device" [drivers/input/gameport/fm801-gp.ko] undefined!
ERROR: "kfree" [drivers/input/gameport/fm801-gp.ko] undefined!
ERROR: "release_resource" [drivers/input/gameport/fm801-gp.ko] undefined!
ERROR: "gameport_unregister_port" [drivers/input/gameport/fm801-gp.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/input/gameport/emu10k1-gp.ko] undefined!
ERROR: "__pci_register_driver" [drivers/input/gameport/emu10k1-gp.ko] undefined!
ERROR: "printk" [drivers/input/gameport/emu10k1-gp.ko] undefined!
ERROR: "__gameport_register_port" [drivers/input/gameport/emu10k1-gp.ko] undefined!
ERROR: "__request_region" [drivers/input/gameport/emu10k1-gp.ko] undefined!
ERROR: "gameport_set_phys" [drivers/input/gameport/emu10k1-gp.ko] undefined!
ERROR: "strlcpy" [drivers/input/gameport/emu10k1-gp.ko] undefined!
ERROR: "pci_enable_device" [drivers/input/gameport/emu10k1-gp.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/input/gameport/emu10k1-gp.ko] undefined!
ERROR: "kmalloc_caches" [drivers/input/gameport/emu10k1-gp.ko] undefined!
ERROR: "pci_disable_device" [drivers/input/gameport/emu10k1-gp.ko] undefined!
ERROR: "kfree" [drivers/input/gameport/emu10k1-gp.ko] undefined!
ERROR: "__release_region" [drivers/input/gameport/emu10k1-gp.ko] undefined!
ERROR: "ioport_resource" [drivers/input/gameport/emu10k1-gp.ko] undefined!
ERROR: "gameport_unregister_port" [drivers/input/gameport/emu10k1-gp.ko] undefined!
ERROR: "param_ops_bool" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "cancel_work_sync" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "bus_unregister" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "bus_register" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "_dev_err" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "device_add" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "_dev_info" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "trace_hardirqs_on" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "ktime_get" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "__udelay" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "trace_hardirqs_off" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "driver_attach" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "driver_unregister" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "driver_register" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "init_timer_key" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "dev_set_name" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "device_initialize" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "__mutex_init" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "vsnprintf" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "del_timer" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "printk" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "queue_work_on" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "system_long_wq" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "__list_add_valid" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "kmalloc_caches" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "device_bind_driver" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "driver_find" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "mutex_unlock" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "strncmp" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "mutex_lock_interruptible_nested" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "device_release_driver" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "device_del" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "put_device" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "_dev_warn" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "device_attach" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "sprintf" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "kfree" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "mod_timer" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "jiffies" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "__msecs_to_jiffies" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "__x86_indirect_thunk_eax" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "pv_ops" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "i8253_lock" [drivers/input/gameport/gameport.ko] undefined!
ERROR: "kmalloc_caches" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "msleep" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "sg_init_table" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "__pm_runtime_idle" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "pm_runtime_force_suspend" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "qmi_add_lookup" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "__pm_runtime_use_autosuspend" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "__pm_runtime_suspend" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "of_slim_get_device" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "pm_runtime_force_resume" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "dma_free_attrs" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "dma_request_chan" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "__platform_driver_register" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "__might_sleep" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "slim_unregister_controller" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "qmi_handle_release" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "slim_free_txn_tid" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "kernel_connect" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "slim_get_logical_addr" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "printk" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "of_match_node" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "qmi_txn_init" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "platform_device_alloc" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "platform_device_add" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "dma_alloc_attrs" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "destroy_workqueue" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "platform_get_resource" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "qmi_txn_cancel" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "_dev_err" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "devm_kfree" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "_dev_info" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "qmi_txn_wait" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "slim_msg_response" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "of_get_next_child" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "qmi_send_request" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "__pm_runtime_set_status" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "of_get_next_available_child" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "slim_register_controller" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "dma_release_channel" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "kfree" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "lockdep_init_map" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "pm_runtime_set_autosuspend_delay" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "queue_work_on" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "complete" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "ktime_get_mono_fast_ns" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "qmi_handle_init" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "qmi_response_type_v01_ei" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "of_node_put" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "devm_kmalloc" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "wait_for_completion_timeout" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "alloc_workqueue" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "slim_alloc_txn_tid" [drivers/slimbus/slim-qcom-ngd-ctrl.ko] undefined!
ERROR: "clk_unprepare" [drivers/slimbus/slim-qcom-ctrl.ko] undefined!
ERROR: "disable_irq" [drivers/slimbus/slim-qcom-ctrl.ko] undefined!
ERROR: "kmalloc_caches" [drivers/slimbus/slim-qcom-ctrl.ko] undefined!
ERROR: "clk_enable" [drivers/slimbus/slim-qcom-ctrl.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/slimbus/slim-qcom-ctrl.ko] undefined!
ERROR: "__pm_runtime_use_autosuspend" [drivers/slimbus/slim-qcom-ctrl.ko] undefined!
ERROR: "__pm_runtime_suspend" [drivers/slimbus/slim-qcom-ctrl.ko] undefined!
ERROR: "clk_disable" [drivers/slimbus/slim-qcom-ctrl.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/slimbus/slim-qcom-ctrl.ko] undefined!
ERROR: "slim_device_report_present" [drivers/slimbus/slim-qcom-ctrl.ko] undefined!
ERROR: "__platform_driver_register" [drivers/slimbus/slim-qcom-ctrl.ko] undefined!
ERROR: "slim_unregister_controller" [drivers/slimbus/slim-qcom-ctrl.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/slimbus/slim-qcom-ctrl.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/slimbus/slim-qcom-ctrl.ko] undefined!
ERROR: "__ioread32_copy" [drivers/slimbus/slim-qcom-ctrl.ko] undefined!
ERROR: "destroy_workqueue" [drivers/slimbus/slim-qcom-ctrl.ko] undefined!
ERROR: "_dev_err" [drivers/slimbus/slim-qcom-ctrl.ko] undefined!
ERROR: "__iowrite32_copy" [drivers/slimbus/slim-qcom-ctrl.ko] undefined!
ERROR: "slim_msg_response" [drivers/slimbus/slim-qcom-ctrl.ko] undefined!
ERROR: "usleep_range" [drivers/slimbus/slim-qcom-ctrl.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/slimbus/slim-qcom-ctrl.ko] undefined!
ERROR: "clk_prepare" [drivers/slimbus/slim-qcom-ctrl.ko] undefined!
ERROR: "__pm_runtime_set_status" [drivers/slimbus/slim-qcom-ctrl.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/slimbus/slim-qcom-ctrl.ko] undefined!
ERROR: "devm_clk_get" [drivers/slimbus/slim-qcom-ctrl.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/slimbus/slim-qcom-ctrl.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/slimbus/slim-qcom-ctrl.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/slimbus/slim-qcom-ctrl.ko] undefined!
ERROR: "clk_set_rate" [drivers/slimbus/slim-qcom-ctrl.ko] undefined!
ERROR: "platform_get_resource_byname" [drivers/slimbus/slim-qcom-ctrl.ko] undefined!
ERROR: "slim_register_controller" [drivers/slimbus/slim-qcom-ctrl.ko] undefined!
ERROR: "enable_irq" [drivers/slimbus/slim-qcom-ctrl.ko] undefined!
ERROR: "devm_ioremap" [drivers/slimbus/slim-qcom-ctrl.ko] undefined!
ERROR: "lockdep_init_map" [drivers/slimbus/slim-qcom-ctrl.ko] undefined!
ERROR: "pm_runtime_set_autosuspend_delay" [drivers/slimbus/slim-qcom-ctrl.ko] undefined!
ERROR: "queue_work_on" [drivers/slimbus/slim-qcom-ctrl.ko] undefined!
ERROR: "complete" [drivers/slimbus/slim-qcom-ctrl.ko] undefined!
ERROR: "platform_get_irq" [drivers/slimbus/slim-qcom-ctrl.ko] undefined!
ERROR: "ktime_get_mono_fast_ns" [drivers/slimbus/slim-qcom-ctrl.ko] undefined!
ERROR: "slim_ctrl_clk_pause" [drivers/slimbus/slim-qcom-ctrl.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/slimbus/slim-qcom-ctrl.ko] undefined!
ERROR: "__msecs_to_jiffies" [drivers/slimbus/slim-qcom-ctrl.ko] undefined!
ERROR: "slim_do_transfer" [drivers/slimbus/slim-qcom-ctrl.ko] undefined!
ERROR: "devm_kmalloc" [drivers/slimbus/slim-qcom-ctrl.ko] undefined!
ERROR: "wait_for_completion_timeout" [drivers/slimbus/slim-qcom-ctrl.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/slimbus/slim-qcom-ctrl.ko] undefined!
ERROR: "alloc_workqueue" [drivers/slimbus/slim-qcom-ctrl.ko] undefined!
ERROR: "bus_register" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "kmalloc_caches" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "__kmalloc" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "driver_register" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "__pm_runtime_suspend" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "find_next_bit" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "mutex_unlock" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "kasprintf" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "device_register" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "idr_alloc_cyclic" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "__mutex_init" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "device_find_child" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "printk" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "sscanf" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "driver_unregister" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "ida_free" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "_dev_err" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "bus_unregister" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "__list_add_valid" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "of_match_device" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "idr_remove" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "put_device" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "of_get_next_child" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "of_get_property" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "device_for_each_child" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "of_node_get" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "kfree" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "__sw_hweight32" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "find_first_bit" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "device_unregister" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "complete" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "ktime_get_mono_fast_ns" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "dev_set_name" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "__msecs_to_jiffies" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "wait_for_completion_timeout" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "idr_find" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "ida_alloc_range" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "add_uevent_var" [drivers/slimbus/slimbus.ko] undefined!
ERROR: "bus_register" [drivers/hsi/hsi.ko] undefined!
ERROR: "kmalloc_caches" [drivers/hsi/hsi.ko] undefined!
ERROR: "__kmalloc" [drivers/hsi/hsi.ko] undefined!
ERROR: "of_property_read_string_helper" [drivers/hsi/hsi.ko] undefined!
ERROR: "driver_register" [drivers/hsi/hsi.ko] undefined!
ERROR: "of_property_read_u32_index" [drivers/hsi/hsi.ko] undefined!
ERROR: "of_modalias_node" [drivers/hsi/hsi.ko] undefined!
ERROR: "kmemdup" [drivers/hsi/hsi.ko] undefined!
ERROR: "mutex_unlock" [drivers/hsi/hsi.ko] undefined!
ERROR: "blocking_notifier_chain_unregister" [drivers/hsi/hsi.ko] undefined!
ERROR: "sprintf" [drivers/hsi/hsi.ko] undefined!
ERROR: "strcmp" [drivers/hsi/hsi.ko] undefined!
ERROR: "device_del" [drivers/hsi/hsi.ko] undefined!
ERROR: "device_register" [drivers/hsi/hsi.ko] undefined!
ERROR: "__mutex_init" [drivers/hsi/hsi.ko] undefined!
ERROR: "printk" [drivers/hsi/hsi.ko] undefined!
ERROR: "of_find_property" [drivers/hsi/hsi.ko] undefined!
ERROR: "of_property_read_string" [drivers/hsi/hsi.ko] undefined!
ERROR: "device_add" [drivers/hsi/hsi.ko] undefined!
ERROR: "bus_unregister" [drivers/hsi/hsi.ko] undefined!
ERROR: "__list_add_valid" [drivers/hsi/hsi.ko] undefined!
ERROR: "of_match_device" [drivers/hsi/hsi.ko] undefined!
ERROR: "sg_alloc_table" [drivers/hsi/hsi.ko] undefined!
ERROR: "put_device" [drivers/hsi/hsi.ko] undefined!
ERROR: "blocking_notifier_call_chain" [drivers/hsi/hsi.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/hsi/hsi.ko] undefined!
ERROR: "blocking_notifier_chain_register" [drivers/hsi/hsi.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/hsi/hsi.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/hsi/hsi.ko] undefined!
ERROR: "of_get_next_available_child" [drivers/hsi/hsi.ko] undefined!
ERROR: "device_for_each_child" [drivers/hsi/hsi.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/hsi/hsi.ko] undefined!
ERROR: "kfree" [drivers/hsi/hsi.ko] undefined!
ERROR: "device_initialize" [drivers/hsi/hsi.ko] undefined!
ERROR: "device_unregister" [drivers/hsi/hsi.ko] undefined!
ERROR: "sg_free_table" [drivers/hsi/hsi.ko] undefined!
ERROR: "dev_set_name" [drivers/hsi/hsi.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/hsi/hsi.ko] undefined!
ERROR: "__init_rwsem" [drivers/hsi/hsi.ko] undefined!
ERROR: "add_uevent_var" [drivers/hsi/hsi.ko] undefined!
ERROR: "param_ops_uint" [drivers/hsi/clients/hsi_char.ko] undefined!
ERROR: "driver_unregister" [drivers/hsi/clients/hsi_char.ko] undefined!
ERROR: "hsi_register_client_driver" [drivers/hsi/clients/hsi_char.ko] undefined!
ERROR: "printk" [drivers/hsi/clients/hsi_char.ko] undefined!
ERROR: "hsi_release_port" [drivers/hsi/clients/hsi_char.ko] undefined!
ERROR: "hsi_claim_port" [drivers/hsi/clients/hsi_char.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/hsi/clients/hsi_char.ko] undefined!
ERROR: "mutex_unlock" [drivers/hsi/clients/hsi_char.ko] undefined!
ERROR: "sg_init_one" [drivers/hsi/clients/hsi_char.ko] undefined!
ERROR: "__kmalloc" [drivers/hsi/clients/hsi_char.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/hsi/clients/hsi_char.ko] undefined!
ERROR: "_dev_err" [drivers/hsi/clients/hsi_char.ko] undefined!
ERROR: "alloc_chrdev_region" [drivers/hsi/clients/hsi_char.ko] undefined!
ERROR: "cdev_add" [drivers/hsi/clients/hsi_char.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/hsi/clients/hsi_char.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/hsi/clients/hsi_char.ko] undefined!
ERROR: "cdev_init" [drivers/hsi/clients/hsi_char.ko] undefined!
ERROR: "__mutex_init" [drivers/hsi/clients/hsi_char.ko] undefined!
ERROR: "register_chrdev_region" [drivers/hsi/clients/hsi_char.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/hsi/clients/hsi_char.ko] undefined!
ERROR: "kmalloc_caches" [drivers/hsi/clients/hsi_char.ko] undefined!
ERROR: "finish_wait" [drivers/hsi/clients/hsi_char.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/hsi/clients/hsi_char.ko] undefined!
ERROR: "schedule" [drivers/hsi/clients/hsi_char.ko] undefined!
ERROR: "init_wait_entry" [drivers/hsi/clients/hsi_char.ko] undefined!
ERROR: "page_address" [drivers/hsi/clients/hsi_char.ko] undefined!
ERROR: "__might_sleep" [drivers/hsi/clients/hsi_char.ko] undefined!
ERROR: "hsi_alloc_msg" [drivers/hsi/clients/hsi_char.ko] undefined!
ERROR: "_copy_from_user" [drivers/hsi/clients/hsi_char.ko] undefined!
ERROR: "_copy_to_user" [drivers/hsi/clients/hsi_char.ko] undefined!
ERROR: "hsi_async" [drivers/hsi/clients/hsi_char.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/hsi/clients/hsi_char.ko] undefined!
ERROR: "__wake_up" [drivers/hsi/clients/hsi_char.ko] undefined!
ERROR: "__list_add_valid" [drivers/hsi/clients/hsi_char.ko] undefined!
ERROR: "hsi_free_msg" [drivers/hsi/clients/hsi_char.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/hsi/clients/hsi_char.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/hsi/clients/hsi_char.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/hsi/clients/hsi_char.ko] undefined!
ERROR: "kfree" [drivers/hsi/clients/hsi_char.ko] undefined!
ERROR: "unregister_chrdev_region" [drivers/hsi/clients/hsi_char.ko] undefined!
ERROR: "cdev_del" [drivers/hsi/clients/hsi_char.ko] undefined!
ERROR: "param_ops_int" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "rio_mport_class" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "class_interface_unregister" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "class_destroy" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "unregister_chrdev_region" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "class_interface_register" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "alloc_chrdev_region" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "__class_create" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "rio_map_outb_region" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "rio_mport_get_feature" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "rio_mport_get_physefb" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "rio_add_net" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "rio_alloc_net" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "__kmalloc" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "rio_map_inb_region" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "dma_alloc_attrs" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "rio_pw_enable" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "rio_add_mport_pw_handler" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "rio_local_set_device_id" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "rio_request_inb_dbell" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "rio_dev_get" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "rio_add_device" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "rio_attach_device" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "bus_find_device" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "rio_bus_type" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "device_match_name" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "rio_free_net" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "rio_del_device" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "rio_dev_put" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "rio_get_comptag" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "strlen" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "__kfifo_free" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "rio_release_inb_dbell" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "kill_fasync" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "cdev_device_del" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "rio_del_mport_pw_handler" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "rio_query_mport" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "cdev_device_add" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "cdev_init" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "dev_set_name" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "device_initialize" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "__mutex_init" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "refcount_warn_saturate" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "dma_mmap_attrs" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "vm_iomap_memory" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "__cachemode2pte_tbl" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "boot_cpu_data" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "_dev_err" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "put_device" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "__kfifo_alloc" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "mutex_unlock" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "__list_add_valid" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "kmalloc_caches" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "get_device" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "finish_wait" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "schedule" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "init_wait_entry" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "__kfifo_to_user" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "__might_sleep" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "rio_mport_send_doorbell" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "_copy_to_user" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "rio_mport_read_config_32" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "__rio_local_read_config_32" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "vfree" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "rio_mport_write_config_32" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "__rio_local_write_config_32" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "vmalloc" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "_copy_from_user" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "fasync_helper" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "___ratelimit" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "__kfifo_in" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "_dev_warn" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "__wake_up" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "rio_unmap_inb_region" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "rio_unmap_outb_region" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "dma_free_attrs" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "printk" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "kfree" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/rapidio/devices/rio_mport_cdev.ko] undefined!
ERROR: "system_wq" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "kmalloc_caches" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "pci_write_config_dword" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "__kfifo_out" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "param_ops_int" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "__kfifo_alloc" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "rio_unregister_mport" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "dma_set_mask" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "pci_disable_device" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "iowrite16be" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "__const_udelay" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "pci_release_regions" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "pcie_capability_clear_and_set_word" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "dma_free_attrs" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "rio_mport_initialize" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "dma_set_coherent_mask" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "pci_set_master" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "rio_register_mport" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "dma_alloc_attrs" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "request_threaded_irq" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "_dev_err" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "__list_add_valid" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "flush_workqueue" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "rio_inb_pwrite_handler" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "pci_clear_master" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "_dev_info" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "kmalloc_order_trace" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "dev_driver_string" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "pci_ioremap_bar" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "__kfifo_free" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "param_ops_byte" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "kfree" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "pci_request_regions" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "iounmap" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "__pci_register_driver" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "lockdep_init_map" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "__kfifo_in" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "queue_work_on" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "snprintf" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "iowrite32" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "pci_enable_device" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "ioread32" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "free_irq" [drivers/rapidio/devices/tsi721_mport.ko] undefined!
ERROR: "rio_unregister_driver" [drivers/rapidio/switches/idt_gen3.ko] undefined!
ERROR: "rio_register_driver" [drivers/rapidio/switches/idt_gen3.ko] undefined!
ERROR: "msleep" [drivers/rapidio/switches/idt_gen3.ko] undefined!
ERROR: "__const_udelay" [drivers/rapidio/switches/idt_gen3.ko] undefined!
ERROR: "rio_mport_write_config_32" [drivers/rapidio/switches/idt_gen3.ko] undefined!
ERROR: "rio_mport_read_config_32" [drivers/rapidio/switches/idt_gen3.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/rapidio/switches/idt_gen3.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/rapidio/switches/idt_gen3.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/rapidio/switches/idt_gen3.ko] undefined!
ERROR: "bus_register" [drivers/rapidio/rapidio.ko] undefined!
ERROR: "kmalloc_caches" [drivers/rapidio/rapidio.ko] undefined!
ERROR: "__kmalloc" [drivers/rapidio/rapidio.ko] undefined!
ERROR: "driver_register" [drivers/rapidio/rapidio.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/rapidio/rapidio.ko] undefined!
ERROR: "param_ops_int" [drivers/rapidio/rapidio.ko] undefined!
ERROR: "release_resource" [drivers/rapidio/rapidio.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/rapidio/rapidio.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/rapidio/rapidio.ko] undefined!
ERROR: "__const_udelay" [drivers/rapidio/rapidio.ko] undefined!
ERROR: "mutex_unlock" [drivers/rapidio/rapidio.ko] undefined!
ERROR: "__preempt_count" [drivers/rapidio/rapidio.ko] undefined!
ERROR: "sprintf" [drivers/rapidio/rapidio.ko] undefined!
ERROR: "device_register" [drivers/rapidio/rapidio.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/rapidio/rapidio.ko] undefined!
ERROR: "__mutex_init" [drivers/rapidio/rapidio.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/rapidio/rapidio.ko] undefined!
ERROR: "printk" [drivers/rapidio/rapidio.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/rapidio/rapidio.ko] undefined!
ERROR: "_kstrtol" [drivers/rapidio/rapidio.ko] undefined!
ERROR: "class_unregister" [drivers/rapidio/rapidio.ko] undefined!
ERROR: "driver_unregister" [drivers/rapidio/rapidio.ko] undefined!
ERROR: "destroy_workqueue" [drivers/rapidio/rapidio.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/rapidio/rapidio.ko] undefined!
ERROR: "__class_register" [drivers/rapidio/rapidio.ko] undefined!
ERROR: "_dev_err" [drivers/rapidio/rapidio.ko] undefined!
ERROR: "__list_add_valid" [drivers/rapidio/rapidio.ko] undefined!
ERROR: "flush_workqueue" [drivers/rapidio/rapidio.ko] undefined!
ERROR: "capable" [drivers/rapidio/rapidio.ko] undefined!
ERROR: "put_device" [drivers/rapidio/rapidio.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/rapidio/rapidio.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/rapidio/rapidio.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/rapidio/rapidio.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/rapidio/rapidio.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/rapidio/rapidio.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/rapidio/rapidio.ko] undefined!
ERROR: "get_device" [drivers/rapidio/rapidio.ko] undefined!
ERROR: "device_for_each_child" [drivers/rapidio/rapidio.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/rapidio/rapidio.ko] undefined!
ERROR: "kfree" [drivers/rapidio/rapidio.ko] undefined!
ERROR: "param_array_ops" [drivers/rapidio/rapidio.ko] undefined!
ERROR: "lockdep_init_map" [drivers/rapidio/rapidio.ko] undefined!
ERROR: "device_unregister" [drivers/rapidio/rapidio.ko] undefined!
ERROR: "queue_work_on" [drivers/rapidio/rapidio.ko] undefined!
ERROR: "dev_set_name" [drivers/rapidio/rapidio.ko] undefined!
ERROR: "alloc_workqueue" [drivers/rapidio/rapidio.ko] undefined!
ERROR: "request_resource" [drivers/rapidio/rapidio.ko] undefined!
ERROR: "add_uevent_var" [drivers/rapidio/rapidio.ko] undefined!
ERROR: "of_property_read_u32_index" [drivers/mux/mux-mmio.ko] undefined!
ERROR: "of_device_is_compatible" [drivers/mux/mux-mmio.ko] undefined!
ERROR: "__platform_driver_register" [drivers/mux/mux-mmio.ko] undefined!
ERROR: "of_property_count_elems_of_size" [drivers/mux/mux-mmio.ko] undefined!
ERROR: "syscon_node_to_regmap" [drivers/mux/mux-mmio.ko] undefined!
ERROR: "dev_get_regmap" [drivers/mux/mux-mmio.ko] undefined!
ERROR: "_dev_err" [drivers/mux/mux-mmio.ko] undefined!
ERROR: "devm_regmap_field_alloc" [drivers/mux/mux-mmio.ko] undefined!
ERROR: "devm_mux_chip_register" [drivers/mux/mux-mmio.ko] undefined!
ERROR: "regmap_field_update_bits_base" [drivers/mux/mux-mmio.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/mux/mux-mmio.ko] undefined!
ERROR: "devm_mux_chip_alloc" [drivers/mux/mux-mmio.ko] undefined!
ERROR: "devm_gpiod_get_array" [drivers/mux/mux-gpio.ko] undefined!
ERROR: "__platform_driver_register" [drivers/mux/mux-gpio.ko] undefined!
ERROR: "_dev_err" [drivers/mux/mux-gpio.ko] undefined!
ERROR: "_dev_info" [drivers/mux/mux-gpio.ko] undefined!
ERROR: "device_property_read_u32_array" [drivers/mux/mux-gpio.ko] undefined!
ERROR: "devm_mux_chip_register" [drivers/mux/mux-gpio.ko] undefined!
ERROR: "gpiod_set_array_value_cansleep" [drivers/mux/mux-gpio.ko] undefined!
ERROR: "gpiod_count" [drivers/mux/mux-gpio.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/mux/mux-gpio.ko] undefined!
ERROR: "devm_mux_chip_alloc" [drivers/mux/mux-gpio.ko] undefined!
ERROR: "i2c_del_driver" [drivers/mux/mux-adg792a.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/mux/mux-adg792a.ko] undefined!
ERROR: "_dev_err" [drivers/mux/mux-adg792a.ko] undefined!
ERROR: "i2c_register_driver" [drivers/mux/mux-adg792a.ko] undefined!
ERROR: "_dev_info" [drivers/mux/mux-adg792a.ko] undefined!
ERROR: "device_property_read_u32_array" [drivers/mux/mux-adg792a.ko] undefined!
ERROR: "devm_mux_chip_register" [drivers/mux/mux-adg792a.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/mux/mux-adg792a.ko] undefined!
ERROR: "devm_mux_chip_alloc" [drivers/mux/mux-adg792a.ko] undefined!
ERROR: "fsi_bus_type" [drivers/fsi/fsi-scom.ko] undefined!
ERROR: "fsi_driver_unregister" [drivers/fsi/fsi-scom.ko] undefined!
ERROR: "fsi_driver_register" [drivers/fsi/fsi-scom.ko] undefined!
ERROR: "_dev_err" [drivers/fsi/fsi-scom.ko] undefined!
ERROR: "cdev_device_add" [drivers/fsi/fsi-scom.ko] undefined!
ERROR: "cdev_init" [drivers/fsi/fsi-scom.ko] undefined!
ERROR: "dev_set_name" [drivers/fsi/fsi-scom.ko] undefined!
ERROR: "fsi_get_new_minor" [drivers/fsi/fsi-scom.ko] undefined!
ERROR: "device_initialize" [drivers/fsi/fsi-scom.ko] undefined!
ERROR: "fsi_cdev_type" [drivers/fsi/fsi-scom.ko] undefined!
ERROR: "get_device" [drivers/fsi/fsi-scom.ko] undefined!
ERROR: "__mutex_init" [drivers/fsi/fsi-scom.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/fsi/fsi-scom.ko] undefined!
ERROR: "kmalloc_caches" [drivers/fsi/fsi-scom.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/fsi/fsi-scom.ko] undefined!
ERROR: "__put_user_4" [drivers/fsi/fsi-scom.ko] undefined!
ERROR: "__get_user_4" [drivers/fsi/fsi-scom.ko] undefined!
ERROR: "__might_fault" [drivers/fsi/fsi-scom.ko] undefined!
ERROR: "_copy_to_user" [drivers/fsi/fsi-scom.ko] undefined!
ERROR: "_copy_from_user" [drivers/fsi/fsi-scom.ko] undefined!
ERROR: "msleep" [drivers/fsi/fsi-scom.ko] undefined!
ERROR: "fsi_device_read" [drivers/fsi/fsi-scom.ko] undefined!
ERROR: "fsi_device_write" [drivers/fsi/fsi-scom.ko] undefined!
ERROR: "kfree" [drivers/fsi/fsi-scom.ko] undefined!
ERROR: "put_device" [drivers/fsi/fsi-scom.ko] undefined!
ERROR: "fsi_free_minor" [drivers/fsi/fsi-scom.ko] undefined!
ERROR: "cdev_device_del" [drivers/fsi/fsi-scom.ko] undefined!
ERROR: "mutex_unlock" [drivers/fsi/fsi-scom.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/fsi/fsi-scom.ko] undefined!
ERROR: "trace_event_raw_init" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "trace_event_reg" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "__platform_driver_register" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "gen_pool_virt_to_phys" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "devm_of_iomap" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "kfree" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "gen_pool_free_owner" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "put_device" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "fsi_master_register" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "device_create_file" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "__mutex_init" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "of_node_get" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "aspeed_gpio_copro_set_ops" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "gen_pool_alloc_algo_owner" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "gen_pool_fixed_alloc" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "of_gen_pool_get" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "of_node_put" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "of_address_to_resource" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "of_parse_phandle" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "devm_gpiod_get_optional" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "devm_gpiod_get" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "syscon_regmap_lookup_by_compatible" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "of_device_is_compatible" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "kmalloc_caches" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "fsi_master_rescan" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "gpiod_direction_input" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "_kstrtoul" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "trace_hardirqs_on" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "trace_hardirqs_off" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "regmap_read" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "sprintf" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "crc4" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "__const_udelay" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "_dev_warn" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "lockdep_rcu_suspicious" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "rcu_read_lock_sched_held" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "debug_lockdep_rcu_enabled" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "__preempt_count" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "gpiod_set_value" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "snprintf" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "ioread32" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "aspeed_gpio_copro_release_gpio" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "msleep" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "ioread8" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "iowrite32be" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "_dev_info" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "_dev_err" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "ioread32be" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "ioread16be" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "release_firmware" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "memcpy_toio" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "request_firmware" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "aspeed_gpio_copro_grab_gpio" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "gpiod_direction_output" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "memset_io" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "iowrite16be" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "mutex_unlock" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "usleep_range" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "regmap_write" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "iowrite32" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "iowrite8" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "fsi_master_unregister" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "device_remove_file" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "bpf_trace_run1" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "bpf_trace_run5" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "bpf_trace_run3" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "bpf_trace_run2" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "trace_handle_return" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "trace_seq_printf" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "trace_raw_output_prep" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "trace_event_ignore_this_pid" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "event_triggers_call" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "trace_event_buffer_commit" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "trace_event_buffer_reserve" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "perf_trace_run_bpf_submit" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "perf_trace_buf_alloc" [drivers/fsi/fsi-master-ast-cf.ko] undefined!
ERROR: "trace_event_raw_init" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "trace_event_reg" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "__platform_driver_register" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "put_device" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "fsi_master_register" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "device_create_file" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "__mutex_init" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "device_property_present" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "devm_gpiod_get_optional" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "devm_gpiod_get" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "of_node_get" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "kmalloc_caches" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "kfree" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "of_node_put" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "_dev_err" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "msleep" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "gpiod_get_value" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "_dev_warn" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "crc4" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "snprintf" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "fsi_master_rescan" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "gpiod_direction_input" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "_kstrtoul" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "trace_hardirqs_on" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "trace_hardirqs_off" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "lockdep_rcu_suspicious" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "rcu_read_lock_sched_held" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "gpiod_direction_output" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "debug_lockdep_rcu_enabled" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "__preempt_count" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "__const_udelay" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "gpiod_set_value" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "mutex_unlock" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "fsi_master_unregister" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "device_remove_file" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "bpf_trace_run1" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "bpf_trace_run2" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "bpf_trace_run3" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "trace_handle_return" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "trace_seq_printf" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "trace_raw_output_prep" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "trace_event_ignore_this_pid" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "event_triggers_call" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "trace_event_buffer_commit" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "trace_event_buffer_reserve" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "perf_trace_run_bpf_submit" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "perf_trace_buf_alloc" [drivers/fsi/fsi-master-gpio.ko] undefined!
ERROR: "trace_event_raw_init" [drivers/fsi/fsi-master-aspeed.ko] undefined!
ERROR: "trace_event_reg" [drivers/fsi/fsi-master-aspeed.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/fsi/fsi-master-aspeed.ko] undefined!
ERROR: "__platform_driver_register" [drivers/fsi/fsi-master-aspeed.ko] undefined!
ERROR: "get_device" [drivers/fsi/fsi-master-aspeed.ko] undefined!
ERROR: "fsi_master_register" [drivers/fsi/fsi-master-aspeed.ko] undefined!
ERROR: "of_node_get" [drivers/fsi/fsi-master-aspeed.ko] undefined!
ERROR: "_dev_info" [drivers/fsi/fsi-master-aspeed.ko] undefined!
ERROR: "clk_enable" [drivers/fsi/fsi-master-aspeed.ko] undefined!
ERROR: "clk_prepare" [drivers/fsi/fsi-master-aspeed.ko] undefined!
ERROR: "devm_clk_get" [drivers/fsi/fsi-master-aspeed.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/fsi/fsi-master-aspeed.ko] undefined!
ERROR: "platform_get_resource" [drivers/fsi/fsi-master-aspeed.ko] undefined!
ERROR: "devm_kmalloc" [drivers/fsi/fsi-master-aspeed.ko] undefined!
ERROR: "kfree" [drivers/fsi/fsi-master-aspeed.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/fsi/fsi-master-aspeed.ko] undefined!
ERROR: "_dev_err" [drivers/fsi/fsi-master-aspeed.ko] undefined!
ERROR: "__const_udelay" [drivers/fsi/fsi-master-aspeed.ko] undefined!
ERROR: "lockdep_rcu_suspicious" [drivers/fsi/fsi-master-aspeed.ko] undefined!
ERROR: "rcu_read_lock_sched_held" [drivers/fsi/fsi-master-aspeed.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/fsi/fsi-master-aspeed.ko] undefined!
ERROR: "debug_lockdep_rcu_enabled" [drivers/fsi/fsi-master-aspeed.ko] undefined!
ERROR: "__preempt_count" [drivers/fsi/fsi-master-aspeed.ko] undefined!
ERROR: "ktime_get" [drivers/fsi/fsi-master-aspeed.ko] undefined!
ERROR: "clk_unprepare" [drivers/fsi/fsi-master-aspeed.ko] undefined!
ERROR: "clk_disable" [drivers/fsi/fsi-master-aspeed.ko] undefined!
ERROR: "fsi_master_unregister" [drivers/fsi/fsi-master-aspeed.ko] undefined!
ERROR: "bpf_trace_run3" [drivers/fsi/fsi-master-aspeed.ko] undefined!
ERROR: "bpf_trace_run5" [drivers/fsi/fsi-master-aspeed.ko] undefined!
ERROR: "trace_handle_return" [drivers/fsi/fsi-master-aspeed.ko] undefined!
ERROR: "trace_seq_printf" [drivers/fsi/fsi-master-aspeed.ko] undefined!
ERROR: "trace_raw_output_prep" [drivers/fsi/fsi-master-aspeed.ko] undefined!
ERROR: "trace_event_ignore_this_pid" [drivers/fsi/fsi-master-aspeed.ko] undefined!
ERROR: "event_triggers_call" [drivers/fsi/fsi-master-aspeed.ko] undefined!
ERROR: "trace_event_buffer_commit" [drivers/fsi/fsi-master-aspeed.ko] undefined!
ERROR: "trace_event_buffer_reserve" [drivers/fsi/fsi-master-aspeed.ko] undefined!
ERROR: "perf_trace_run_bpf_submit" [drivers/fsi/fsi-master-aspeed.ko] undefined!
ERROR: "perf_trace_buf_alloc" [drivers/fsi/fsi-master-aspeed.ko] undefined!
ERROR: "fsi_bus_type" [drivers/fsi/fsi-master-hub.ko] undefined!
ERROR: "fsi_driver_unregister" [drivers/fsi/fsi-master-hub.ko] undefined!
ERROR: "fsi_driver_register" [drivers/fsi/fsi-master-hub.ko] undefined!
ERROR: "_dev_err" [drivers/fsi/fsi-master-hub.ko] undefined!
ERROR: "get_device" [drivers/fsi/fsi-master-hub.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/fsi/fsi-master-hub.ko] undefined!
ERROR: "fsi_master_register" [drivers/fsi/fsi-master-hub.ko] undefined!
ERROR: "of_node_get" [drivers/fsi/fsi-master-hub.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/fsi/fsi-master-hub.ko] undefined!
ERROR: "kmalloc_caches" [drivers/fsi/fsi-master-hub.ko] undefined!
ERROR: "fsi_slave_claim_range" [drivers/fsi/fsi-master-hub.ko] undefined!
ERROR: "kfree" [drivers/fsi/fsi-master-hub.ko] undefined!
ERROR: "fsi_slave_read" [drivers/fsi/fsi-master-hub.ko] undefined!
ERROR: "fsi_slave_write" [drivers/fsi/fsi-master-hub.ko] undefined!
ERROR: "fsi_device_read" [drivers/fsi/fsi-master-hub.ko] undefined!
ERROR: "__const_udelay" [drivers/fsi/fsi-master-hub.ko] undefined!
ERROR: "fsi_device_write" [drivers/fsi/fsi-master-hub.ko] undefined!
ERROR: "put_device" [drivers/fsi/fsi-master-hub.ko] undefined!
ERROR: "of_node_put" [drivers/fsi/fsi-master-hub.ko] undefined!
ERROR: "fsi_slave_release_range" [drivers/fsi/fsi-master-hub.ko] undefined!
ERROR: "fsi_master_unregister" [drivers/fsi/fsi-master-hub.ko] undefined!
ERROR: "fpga_mgr_unregister" [drivers/fpga/altera-pr-ip-core.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/fpga/altera-pr-ip-core.ko] undefined!
ERROR: "fpga_mgr_register" [drivers/fpga/altera-pr-ip-core.ko] undefined!
ERROR: "devm_fpga_mgr_create" [drivers/fpga/altera-pr-ip-core.ko] undefined!
ERROR: "devm_kmalloc" [drivers/fpga/altera-pr-ip-core.ko] undefined!
ERROR: "_dev_info" [drivers/fpga/altera-pr-ip-core.ko] undefined!
ERROR: "__const_udelay" [drivers/fpga/altera-pr-ip-core.ko] undefined!
ERROR: "_dev_err" [drivers/fpga/altera-pr-ip-core.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/fpga/altera-cvp.ko] undefined!
ERROR: "driver_remove_file" [drivers/fpga/altera-cvp.ko] undefined!
ERROR: "printk" [drivers/fpga/altera-cvp.ko] undefined!
ERROR: "driver_create_file" [drivers/fpga/altera-cvp.ko] undefined!
ERROR: "__pci_register_driver" [drivers/fpga/altera-cvp.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/fpga/altera-cvp.ko] undefined!
ERROR: "_dev_warn" [drivers/fpga/altera-cvp.ko] undefined!
ERROR: "fpga_mgr_register" [drivers/fpga/altera-cvp.ko] undefined!
ERROR: "devm_fpga_mgr_create" [drivers/fpga/altera-cvp.ko] undefined!
ERROR: "pci_iomap" [drivers/fpga/altera-cvp.ko] undefined!
ERROR: "pci_request_region" [drivers/fpga/altera-cvp.ko] undefined!
ERROR: "devm_kmalloc" [drivers/fpga/altera-cvp.ko] undefined!
ERROR: "pci_find_next_ext_capability" [drivers/fpga/altera-cvp.ko] undefined!
ERROR: "pci_read_config_byte" [drivers/fpga/altera-cvp.ko] undefined!
ERROR: "usleep_range" [drivers/fpga/altera-cvp.ko] undefined!
ERROR: "pci_write_config_dword" [drivers/fpga/altera-cvp.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/fpga/altera-cvp.ko] undefined!
ERROR: "_dev_err" [drivers/fpga/altera-cvp.ko] undefined!
ERROR: "pci_read_config_dword" [drivers/fpga/altera-cvp.ko] undefined!
ERROR: "pci_write_config_word" [drivers/fpga/altera-cvp.ko] undefined!
ERROR: "pci_read_config_word" [drivers/fpga/altera-cvp.ko] undefined!
ERROR: "pci_release_region" [drivers/fpga/altera-cvp.ko] undefined!
ERROR: "pci_iounmap" [drivers/fpga/altera-cvp.ko] undefined!
ERROR: "fpga_mgr_unregister" [drivers/fpga/altera-cvp.ko] undefined!
ERROR: "snprintf" [drivers/fpga/altera-cvp.ko] undefined!
ERROR: "kstrtobool" [drivers/fpga/altera-cvp.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/nvmem/nvmem-uniphier-efuse.ko] undefined!
ERROR: "__platform_driver_register" [drivers/nvmem/nvmem-uniphier-efuse.ko] undefined!
ERROR: "platform_get_resource" [drivers/nvmem/nvmem-uniphier-efuse.ko] undefined!
ERROR: "devm_nvmem_register" [drivers/nvmem/nvmem-uniphier-efuse.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/nvmem/nvmem-uniphier-efuse.ko] undefined!
ERROR: "devm_kmalloc" [drivers/nvmem/nvmem-uniphier-efuse.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/nvmem/nvmem-rockchip-otp.ko] undefined!
ERROR: "clk_bulk_prepare" [drivers/nvmem/nvmem-rockchip-otp.ko] undefined!
ERROR: "ktime_get" [drivers/nvmem/nvmem-rockchip-otp.ko] undefined!
ERROR: "__const_udelay" [drivers/nvmem/nvmem-rockchip-otp.ko] undefined!
ERROR: "__devm_reset_control_get" [drivers/nvmem/nvmem-rockchip-otp.ko] undefined!
ERROR: "__platform_driver_register" [drivers/nvmem/nvmem-rockchip-otp.ko] undefined!
ERROR: "reset_control_deassert" [drivers/nvmem/nvmem-rockchip-otp.ko] undefined!
ERROR: "_dev_err" [drivers/nvmem/nvmem-rockchip-otp.ko] undefined!
ERROR: "clk_bulk_enable" [drivers/nvmem/nvmem-rockchip-otp.ko] undefined!
ERROR: "devm_clk_bulk_get" [drivers/nvmem/nvmem-rockchip-otp.ko] undefined!
ERROR: "clk_bulk_unprepare" [drivers/nvmem/nvmem-rockchip-otp.ko] undefined!
ERROR: "reset_control_assert" [drivers/nvmem/nvmem-rockchip-otp.ko] undefined!
ERROR: "clk_bulk_disable" [drivers/nvmem/nvmem-rockchip-otp.ko] undefined!
ERROR: "devm_nvmem_register" [drivers/nvmem/nvmem-rockchip-otp.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/nvmem/nvmem-rockchip-otp.ko] undefined!
ERROR: "devm_kmalloc" [drivers/nvmem/nvmem-rockchip-otp.ko] undefined!
ERROR: "devm_platform_ioremap_resource" [drivers/nvmem/nvmem-rockchip-otp.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/nvmem/nvmem_qfprom.ko] undefined!
ERROR: "__platform_driver_register" [drivers/nvmem/nvmem_qfprom.ko] undefined!
ERROR: "platform_get_resource" [drivers/nvmem/nvmem_qfprom.ko] undefined!
ERROR: "devm_nvmem_register" [drivers/nvmem/nvmem_qfprom.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/nvmem/nvmem_qfprom.ko] undefined!
ERROR: "devm_kmalloc" [drivers/nvmem/nvmem_qfprom.ko] undefined!
ERROR: "clk_unprepare" [drivers/nvmem/nvmem_lpc18xx_eeprom.ko] undefined!
ERROR: "clk_enable" [drivers/nvmem/nvmem_lpc18xx_eeprom.ko] undefined!
ERROR: "clk_disable" [drivers/nvmem/nvmem_lpc18xx_eeprom.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/nvmem/nvmem_lpc18xx_eeprom.ko] undefined!
ERROR: "clk_get_rate" [drivers/nvmem/nvmem_lpc18xx_eeprom.ko] undefined!
ERROR: "__devm_reset_control_get" [drivers/nvmem/nvmem_lpc18xx_eeprom.ko] undefined!
ERROR: "__platform_driver_register" [drivers/nvmem/nvmem_lpc18xx_eeprom.ko] undefined!
ERROR: "jiffies" [drivers/nvmem/nvmem_lpc18xx_eeprom.ko] undefined!
ERROR: "_dev_err" [drivers/nvmem/nvmem_lpc18xx_eeprom.ko] undefined!
ERROR: "usleep_range" [drivers/nvmem/nvmem_lpc18xx_eeprom.ko] undefined!
ERROR: "clk_prepare" [drivers/nvmem/nvmem_lpc18xx_eeprom.ko] undefined!
ERROR: "devm_clk_get" [drivers/nvmem/nvmem_lpc18xx_eeprom.ko] undefined!
ERROR: "platform_get_resource_byname" [drivers/nvmem/nvmem_lpc18xx_eeprom.ko] undefined!
ERROR: "reset_control_assert" [drivers/nvmem/nvmem_lpc18xx_eeprom.ko] undefined!
ERROR: "devm_nvmem_register" [drivers/nvmem/nvmem_lpc18xx_eeprom.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/nvmem/nvmem_lpc18xx_eeprom.ko] undefined!
ERROR: "devm_kmalloc" [drivers/nvmem/nvmem_lpc18xx_eeprom.ko] undefined!
ERROR: "clk_unprepare" [drivers/nvmem/nvmem-imx-ocotp.ko] undefined!
ERROR: "clk_enable" [drivers/nvmem/nvmem-imx-ocotp.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/nvmem/nvmem-imx-ocotp.ko] undefined!
ERROR: "clk_disable" [drivers/nvmem/nvmem-imx-ocotp.ko] undefined!
ERROR: "__const_udelay" [drivers/nvmem/nvmem-imx-ocotp.ko] undefined!
ERROR: "mutex_unlock" [drivers/nvmem/nvmem-imx-ocotp.ko] undefined!
ERROR: "clk_get_rate" [drivers/nvmem/nvmem-imx-ocotp.ko] undefined!
ERROR: "__platform_driver_register" [drivers/nvmem/nvmem-imx-ocotp.ko] undefined!
ERROR: "_dev_err" [drivers/nvmem/nvmem-imx-ocotp.ko] undefined!
ERROR: "clk_prepare" [drivers/nvmem/nvmem-imx-ocotp.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/nvmem/nvmem-imx-ocotp.ko] undefined!
ERROR: "devm_clk_get" [drivers/nvmem/nvmem-imx-ocotp.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/nvmem/nvmem-imx-ocotp.ko] undefined!
ERROR: "devm_nvmem_register" [drivers/nvmem/nvmem-imx-ocotp.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/nvmem/nvmem-imx-ocotp.ko] undefined!
ERROR: "devm_kmalloc" [drivers/nvmem/nvmem-imx-ocotp.ko] undefined!
ERROR: "devm_platform_ioremap_resource" [drivers/nvmem/nvmem-imx-ocotp.ko] undefined!
ERROR: "clk_unprepare" [drivers/nvmem/nvmem-imx-iim.ko] undefined!
ERROR: "clk_enable" [drivers/nvmem/nvmem-imx-iim.ko] undefined!
ERROR: "clk_disable" [drivers/nvmem/nvmem-imx-iim.ko] undefined!
ERROR: "__platform_driver_register" [drivers/nvmem/nvmem-imx-iim.ko] undefined!
ERROR: "of_match_device" [drivers/nvmem/nvmem-imx-iim.ko] undefined!
ERROR: "clk_prepare" [drivers/nvmem/nvmem-imx-iim.ko] undefined!
ERROR: "devm_clk_get" [drivers/nvmem/nvmem-imx-iim.ko] undefined!
ERROR: "devm_nvmem_register" [drivers/nvmem/nvmem-imx-iim.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/nvmem/nvmem-imx-iim.ko] undefined!
ERROR: "devm_kmalloc" [drivers/nvmem/nvmem-imx-iim.ko] undefined!
ERROR: "devm_platform_ioremap_resource" [drivers/nvmem/nvmem-imx-iim.ko] undefined!
ERROR: "kmalloc_caches" [drivers/hwtracing/stm/stm_p_sys-t.ko] undefined!
ERROR: "ktime_get_with_offset" [drivers/hwtracing/stm/stm_p_sys-t.ko] undefined!
ERROR: "stm_unregister_protocol" [drivers/hwtracing/stm/stm_p_sys-t.ko] undefined!
ERROR: "mutex_unlock" [drivers/hwtracing/stm/stm_p_sys-t.ko] undefined!
ERROR: "sprintf" [drivers/hwtracing/stm/stm_p_sys-t.ko] undefined!
ERROR: "jiffies" [drivers/hwtracing/stm/stm_p_sys-t.ko] undefined!
ERROR: "uuid_parse" [drivers/hwtracing/stm/stm_p_sys-t.ko] undefined!
ERROR: "to_pdrv_policy_node" [drivers/hwtracing/stm/stm_p_sys-t.ko] undefined!
ERROR: "stm_data_write" [drivers/hwtracing/stm/stm_p_sys-t.ko] undefined!
ERROR: "kstrtobool" [drivers/hwtracing/stm/stm_p_sys-t.ko] undefined!
ERROR: "jiffies_to_msecs" [drivers/hwtracing/stm/stm_p_sys-t.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/hwtracing/stm/stm_p_sys-t.ko] undefined!
ERROR: "generate_random_uuid" [drivers/hwtracing/stm/stm_p_sys-t.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/hwtracing/stm/stm_p_sys-t.ko] undefined!
ERROR: "stm_register_protocol" [drivers/hwtracing/stm/stm_p_sys-t.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/hwtracing/stm/stm_p_sys-t.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/hwtracing/stm/stm_p_sys-t.ko] undefined!
ERROR: "kfree" [drivers/hwtracing/stm/stm_p_sys-t.ko] undefined!
ERROR: "kstrtouint" [drivers/hwtracing/stm/stm_p_sys-t.ko] undefined!
ERROR: "__msecs_to_jiffies" [drivers/hwtracing/stm/stm_p_sys-t.ko] undefined!
ERROR: "intel_th_driver_unregister" [drivers/hwtracing/intel_th/intel_th_sth.ko] undefined!
ERROR: "intel_th_driver_register" [drivers/hwtracing/intel_th/intel_th_sth.ko] undefined!
ERROR: "stm_unregister_device" [drivers/hwtracing/intel_th/intel_th_sth.ko] undefined!
ERROR: "_dev_err" [drivers/hwtracing/intel_th/intel_th_sth.ko] undefined!
ERROR: "intel_th_set_output" [drivers/hwtracing/intel_th/intel_th_sth.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/hwtracing/intel_th/intel_th_sth.ko] undefined!
ERROR: "devm_ioremap" [drivers/hwtracing/intel_th/intel_th_sth.ko] undefined!
ERROR: "stm_register_device" [drivers/hwtracing/intel_th/intel_th_sth.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hwtracing/intel_th/intel_th_sth.ko] undefined!
ERROR: "ioread32" [drivers/hwtracing/intel_th/intel_th_sth.ko] undefined!
ERROR: "__pm_runtime_idle" [drivers/hwtracing/intel_th/intel_th_gth.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/hwtracing/intel_th/intel_th_gth.ko] undefined!
ERROR: "intel_th_driver_unregister" [drivers/hwtracing/intel_th/intel_th_gth.ko] undefined!
ERROR: "find_next_bit" [drivers/hwtracing/intel_th/intel_th_gth.ko] undefined!
ERROR: "intel_th_driver_register" [drivers/hwtracing/intel_th/intel_th_gth.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/hwtracing/intel_th/intel_th_gth.ko] undefined!
ERROR: "sysfs_remove_group" [drivers/hwtracing/intel_th/intel_th_gth.ko] undefined!
ERROR: "devm_kasprintf" [drivers/hwtracing/intel_th/intel_th_gth.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/hwtracing/intel_th/intel_th_gth.ko] undefined!
ERROR: "printk" [drivers/hwtracing/intel_th/intel_th_gth.ko] undefined!
ERROR: "sysfs_create_group" [drivers/hwtracing/intel_th/intel_th_gth.ko] undefined!
ERROR: "kstrtoint" [drivers/hwtracing/intel_th/intel_th_gth.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/hwtracing/intel_th/intel_th_gth.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/hwtracing/intel_th/intel_th_gth.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/hwtracing/intel_th/intel_th_gth.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/hwtracing/intel_th/intel_th_gth.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/hwtracing/intel_th/intel_th_gth.ko] undefined!
ERROR: "intel_th_output_enable" [drivers/hwtracing/intel_th/intel_th_gth.ko] undefined!
ERROR: "kstrtouint" [drivers/hwtracing/intel_th/intel_th_gth.ko] undefined!
ERROR: "devm_ioremap" [drivers/hwtracing/intel_th/intel_th_gth.ko] undefined!
ERROR: "find_first_bit" [drivers/hwtracing/intel_th/intel_th_gth.ko] undefined!
ERROR: "snprintf" [drivers/hwtracing/intel_th/intel_th_gth.ko] undefined!
ERROR: "iowrite32" [drivers/hwtracing/intel_th/intel_th_gth.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hwtracing/intel_th/intel_th_gth.ko] undefined!
ERROR: "ioread32" [drivers/hwtracing/intel_th/intel_th_gth.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/iio/trigger/stm32-lptimer-trigger.ko] undefined!
ERROR: "__platform_driver_register" [drivers/iio/trigger/stm32-lptimer-trigger.ko] undefined!
ERROR: "__devm_iio_trigger_register" [drivers/iio/trigger/stm32-lptimer-trigger.ko] undefined!
ERROR: "devm_iio_trigger_alloc" [drivers/iio/trigger/stm32-lptimer-trigger.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/iio/trigger/stm32-lptimer-trigger.ko] undefined!
ERROR: "devm_kmalloc" [drivers/iio/trigger/stm32-lptimer-trigger.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/iio/trigger/iio-trig-interrupt.ko] undefined!
ERROR: "__platform_driver_register" [drivers/iio/trigger/iio-trig-interrupt.ko] undefined!
ERROR: "_dev_err" [drivers/iio/trigger/iio-trig-interrupt.ko] undefined!
ERROR: "__iio_trigger_register" [drivers/iio/trigger/iio-trig-interrupt.ko] undefined!
ERROR: "request_threaded_irq" [drivers/iio/trigger/iio-trig-interrupt.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/iio/trigger/iio-trig-interrupt.ko] undefined!
ERROR: "kmalloc_caches" [drivers/iio/trigger/iio-trig-interrupt.ko] undefined!
ERROR: "iio_trigger_alloc" [drivers/iio/trigger/iio-trig-interrupt.ko] undefined!
ERROR: "platform_get_resource" [drivers/iio/trigger/iio-trig-interrupt.ko] undefined!
ERROR: "iio_trigger_poll" [drivers/iio/trigger/iio-trig-interrupt.ko] undefined!
ERROR: "iio_trigger_free" [drivers/iio/trigger/iio-trig-interrupt.ko] undefined!
ERROR: "kfree" [drivers/iio/trigger/iio-trig-interrupt.ko] undefined!
ERROR: "free_irq" [drivers/iio/trigger/iio-trig-interrupt.ko] undefined!
ERROR: "iio_trigger_unregister" [drivers/iio/trigger/iio-trig-interrupt.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/temperature/tsys01.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/temperature/tsys01.ko] undefined!
ERROR: "__devm_iio_device_register" [drivers/iio/temperature/tsys01.ko] undefined!
ERROR: "_dev_info" [drivers/iio/temperature/tsys01.ko] undefined!
ERROR: "_dev_err" [drivers/iio/temperature/tsys01.ko] undefined!
ERROR: "sprintf" [drivers/iio/temperature/tsys01.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/iio/temperature/tsys01.ko] undefined!
ERROR: "__mutex_init" [drivers/iio/temperature/tsys01.ko] undefined!
ERROR: "ms_sensors_convert_and_read" [drivers/iio/temperature/tsys01.ko] undefined!
ERROR: "ms_sensors_read_prom_word" [drivers/iio/temperature/tsys01.ko] undefined!
ERROR: "ms_sensors_reset" [drivers/iio/temperature/tsys01.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/temperature/tsys01.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/iio/temperature/tsys01.ko] undefined!
ERROR: "div64_s64" [drivers/iio/temperature/tsys01.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/temperature/tsys01.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/iio/temperature/tsys01.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/temperature/tsys01.ko] undefined!
ERROR: "iio_read_const_attr" [drivers/iio/temperature/tmp007.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/temperature/tmp007.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/temperature/tmp007.ko] undefined!
ERROR: "msleep" [drivers/iio/temperature/tmp007.ko] undefined!
ERROR: "__iio_device_register" [drivers/iio/temperature/tmp007.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/iio/temperature/tmp007.ko] undefined!
ERROR: "__mutex_init" [drivers/iio/temperature/tmp007.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/temperature/tmp007.ko] undefined!
ERROR: "_dev_err" [drivers/iio/temperature/tmp007.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/iio/temperature/tmp007.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/temperature/tmp007.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/temperature/tmp007.ko] undefined!
ERROR: "iio_push_event" [drivers/iio/temperature/tmp007.ko] undefined!
ERROR: "iio_get_time_ns" [drivers/iio/temperature/tmp007.ko] undefined!
ERROR: "i2c_smbus_read_word_data" [drivers/iio/temperature/tmp007.ko] undefined!
ERROR: "iio_device_unregister" [drivers/iio/temperature/tmp007.ko] undefined!
ERROR: "i2c_smbus_write_word_data" [drivers/iio/temperature/tmp007.ko] undefined!
ERROR: "iio_read_const_attr" [drivers/iio/temperature/tmp006.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/temperature/tmp006.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/temperature/tmp006.ko] undefined!
ERROR: "__iio_device_register" [drivers/iio/temperature/tmp006.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/temperature/tmp006.ko] undefined!
ERROR: "_dev_err" [drivers/iio/temperature/tmp006.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/iio/temperature/tmp006.ko] undefined!
ERROR: "i2c_smbus_read_word_data" [drivers/iio/temperature/tmp006.ko] undefined!
ERROR: "msleep" [drivers/iio/temperature/tmp006.ko] undefined!
ERROR: "iio_device_unregister" [drivers/iio/temperature/tmp006.ko] undefined!
ERROR: "i2c_smbus_write_word_data" [drivers/iio/temperature/tmp006.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/proximity/srf08.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/proximity/srf08.ko] undefined!
ERROR: "iio_str_to_fixpoint" [drivers/iio/proximity/srf08.ko] undefined!
ERROR: "kstrtouint" [drivers/iio/proximity/srf08.ko] undefined!
ERROR: "sprintf" [drivers/iio/proximity/srf08.ko] undefined!
ERROR: "iio_trigger_notify_done" [drivers/iio/proximity/srf08.ko] undefined!
ERROR: "iio_push_to_buffers" [drivers/iio/proximity/srf08.ko] undefined!
ERROR: "i2c_smbus_read_word_data" [drivers/iio/proximity/srf08.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/iio/proximity/srf08.ko] undefined!
ERROR: "msleep" [drivers/iio/proximity/srf08.ko] undefined!
ERROR: "__devm_iio_device_register" [drivers/iio/proximity/srf08.ko] undefined!
ERROR: "devm_iio_triggered_buffer_setup" [drivers/iio/proximity/srf08.ko] undefined!
ERROR: "iio_pollfunc_store_time" [drivers/iio/proximity/srf08.ko] undefined!
ERROR: "__mutex_init" [drivers/iio/proximity/srf08.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/proximity/srf08.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/iio/proximity/srf08.ko] undefined!
ERROR: "_dev_err" [drivers/iio/proximity/srf08.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/proximity/srf08.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/iio/proximity/srf08.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/proximity/srf08.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/proximity/rfd77402.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/proximity/rfd77402.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/proximity/rfd77402.ko] undefined!
ERROR: "msleep" [drivers/iio/proximity/rfd77402.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/iio/proximity/rfd77402.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/proximity/rfd77402.ko] undefined!
ERROR: "__iio_device_register" [drivers/iio/proximity/rfd77402.ko] undefined!
ERROR: "__mutex_init" [drivers/iio/proximity/rfd77402.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/proximity/rfd77402.ko] undefined!
ERROR: "iio_device_unregister" [drivers/iio/proximity/rfd77402.ko] undefined!
ERROR: "i2c_smbus_write_word_data" [drivers/iio/proximity/rfd77402.ko] undefined!
ERROR: "i2c_smbus_read_word_data" [drivers/iio/proximity/rfd77402.ko] undefined!
ERROR: "usleep_range" [drivers/iio/proximity/rfd77402.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/iio/proximity/rfd77402.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/proximity/pulsedlight-lidar-lite-v2.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/proximity/pulsedlight-lidar-lite-v2.ko] undefined!
ERROR: "__pm_runtime_idle" [drivers/iio/proximity/pulsedlight-lidar-lite-v2.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/iio/proximity/pulsedlight-lidar-lite-v2.ko] undefined!
ERROR: "__pm_runtime_use_autosuspend" [drivers/iio/proximity/pulsedlight-lidar-lite-v2.ko] undefined!
ERROR: "pm_runtime_set_autosuspend_delay" [drivers/iio/proximity/pulsedlight-lidar-lite-v2.ko] undefined!
ERROR: "__iio_device_register" [drivers/iio/proximity/pulsedlight-lidar-lite-v2.ko] undefined!
ERROR: "iio_triggered_buffer_setup" [drivers/iio/proximity/pulsedlight-lidar-lite-v2.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/iio/proximity/pulsedlight-lidar-lite-v2.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/proximity/pulsedlight-lidar-lite-v2.ko] undefined!
ERROR: "i2c_transfer" [drivers/iio/proximity/pulsedlight-lidar-lite-v2.ko] undefined!
ERROR: "i2c_smbus_read_byte" [drivers/iio/proximity/pulsedlight-lidar-lite-v2.ko] undefined!
ERROR: "i2c_smbus_write_byte" [drivers/iio/proximity/pulsedlight-lidar-lite-v2.ko] undefined!
ERROR: "iio_device_release_direct_mode" [drivers/iio/proximity/pulsedlight-lidar-lite-v2.ko] undefined!
ERROR: "iio_device_claim_direct_mode" [drivers/iio/proximity/pulsedlight-lidar-lite-v2.ko] undefined!
ERROR: "iio_push_to_buffers" [drivers/iio/proximity/pulsedlight-lidar-lite-v2.ko] undefined!
ERROR: "iio_get_time_ns" [drivers/iio/proximity/pulsedlight-lidar-lite-v2.ko] undefined!
ERROR: "iio_trigger_notify_done" [drivers/iio/proximity/pulsedlight-lidar-lite-v2.ko] undefined!
ERROR: "_dev_err" [drivers/iio/proximity/pulsedlight-lidar-lite-v2.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/iio/proximity/pulsedlight-lidar-lite-v2.ko] undefined!
ERROR: "__pm_runtime_suspend" [drivers/iio/proximity/pulsedlight-lidar-lite-v2.ko] undefined!
ERROR: "ktime_get_mono_fast_ns" [drivers/iio/proximity/pulsedlight-lidar-lite-v2.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/iio/proximity/pulsedlight-lidar-lite-v2.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/iio/proximity/pulsedlight-lidar-lite-v2.ko] undefined!
ERROR: "__pm_runtime_set_status" [drivers/iio/proximity/pulsedlight-lidar-lite-v2.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/iio/proximity/pulsedlight-lidar-lite-v2.ko] undefined!
ERROR: "iio_triggered_buffer_cleanup" [drivers/iio/proximity/pulsedlight-lidar-lite-v2.ko] undefined!
ERROR: "iio_device_unregister" [drivers/iio/proximity/pulsedlight-lidar-lite-v2.ko] undefined!
ERROR: "usleep_range" [drivers/iio/proximity/pulsedlight-lidar-lite-v2.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/iio/proximity/pulsedlight-lidar-lite-v2.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/pressure/st_pressure_i2c.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/pressure/st_pressure_i2c.ko] undefined!
ERROR: "_dev_err" [drivers/iio/pressure/st_pressure_i2c.ko] undefined!
ERROR: "st_press_common_probe" [drivers/iio/pressure/st_pressure_i2c.ko] undefined!
ERROR: "st_sensors_i2c_configure" [drivers/iio/pressure/st_pressure_i2c.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/pressure/st_pressure_i2c.ko] undefined!
ERROR: "st_press_get_settings" [drivers/iio/pressure/st_pressure_i2c.ko] undefined!
ERROR: "st_sensors_dev_name_probe" [drivers/iio/pressure/st_pressure_i2c.ko] undefined!
ERROR: "st_press_common_remove" [drivers/iio/pressure/st_pressure_i2c.ko] undefined!
ERROR: "zpa2326_isreg_precious" [drivers/iio/pressure/zpa2326_i2c.ko] undefined!
ERROR: "zpa2326_isreg_readable" [drivers/iio/pressure/zpa2326_i2c.ko] undefined!
ERROR: "zpa2326_isreg_writeable" [drivers/iio/pressure/zpa2326_i2c.ko] undefined!
ERROR: "zpa2326_pm_ops" [drivers/iio/pressure/zpa2326_i2c.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/pressure/zpa2326_i2c.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/pressure/zpa2326_i2c.ko] undefined!
ERROR: "_dev_err" [drivers/iio/pressure/zpa2326_i2c.ko] undefined!
ERROR: "zpa2326_probe" [drivers/iio/pressure/zpa2326_i2c.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/iio/pressure/zpa2326_i2c.ko] undefined!
ERROR: "zpa2326_remove" [drivers/iio/pressure/zpa2326_i2c.ko] undefined!
ERROR: "pm_runtime_force_resume" [drivers/iio/pressure/zpa2326.ko] undefined!
ERROR: "pm_runtime_force_suspend" [drivers/iio/pressure/zpa2326.ko] undefined!
ERROR: "iio_read_const_attr" [drivers/iio/pressure/zpa2326.ko] undefined!
ERROR: "iio_device_unregister" [drivers/iio/pressure/zpa2326.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/iio/pressure/zpa2326.ko] undefined!
ERROR: "__iio_device_register" [drivers/iio/pressure/zpa2326.ko] undefined!
ERROR: "__pm_runtime_use_autosuspend" [drivers/iio/pressure/zpa2326.ko] undefined!
ERROR: "pm_runtime_set_autosuspend_delay" [drivers/iio/pressure/zpa2326.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/iio/pressure/zpa2326.ko] undefined!
ERROR: "__pm_runtime_set_status" [drivers/iio/pressure/zpa2326.ko] undefined!
ERROR: "_dev_info" [drivers/iio/pressure/zpa2326.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/iio/pressure/zpa2326.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/iio/pressure/zpa2326.ko] undefined!
ERROR: "__devm_iio_trigger_register" [drivers/iio/pressure/zpa2326.ko] undefined!
ERROR: "devm_iio_trigger_alloc" [drivers/iio/pressure/zpa2326.ko] undefined!
ERROR: "devm_iio_triggered_buffer_setup" [drivers/iio/pressure/zpa2326.ko] undefined!
ERROR: "devm_regulator_get" [drivers/iio/pressure/zpa2326.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/pressure/zpa2326.ko] undefined!
ERROR: "complete" [drivers/iio/pressure/zpa2326.ko] undefined!
ERROR: "iio_trigger_poll_chained" [drivers/iio/pressure/zpa2326.ko] undefined!
ERROR: "enable_irq" [drivers/iio/pressure/zpa2326.ko] undefined!
ERROR: "disable_irq" [drivers/iio/pressure/zpa2326.ko] undefined!
ERROR: "iio_device_release_direct_mode" [drivers/iio/pressure/zpa2326.ko] undefined!
ERROR: "iio_device_claim_direct_mode" [drivers/iio/pressure/zpa2326.ko] undefined!
ERROR: "regmap_bulk_read" [drivers/iio/pressure/zpa2326.ko] undefined!
ERROR: "iio_trigger_notify_done" [drivers/iio/pressure/zpa2326.ko] undefined!
ERROR: "iio_push_to_buffers" [drivers/iio/pressure/zpa2326.ko] undefined!
ERROR: "wait_for_completion_interruptible_timeout" [drivers/iio/pressure/zpa2326.ko] undefined!
ERROR: "_dev_warn" [drivers/iio/pressure/zpa2326.ko] undefined!
ERROR: "msleep_interruptible" [drivers/iio/pressure/zpa2326.ko] undefined!
ERROR: "jiffies" [drivers/iio/pressure/zpa2326.ko] undefined!
ERROR: "iio_get_time_ns" [drivers/iio/pressure/zpa2326.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/iio/pressure/zpa2326.ko] undefined!
ERROR: "iio_triggered_buffer_predisable" [drivers/iio/pressure/zpa2326.ko] undefined!
ERROR: "iio_trigger_using_own" [drivers/iio/pressure/zpa2326.ko] undefined!
ERROR: "iio_triggered_buffer_postenable" [drivers/iio/pressure/zpa2326.ko] undefined!
ERROR: "__pm_runtime_suspend" [drivers/iio/pressure/zpa2326.ko] undefined!
ERROR: "ktime_get_mono_fast_ns" [drivers/iio/pressure/zpa2326.ko] undefined!
ERROR: "regmap_read" [drivers/iio/pressure/zpa2326.ko] undefined!
ERROR: "pm_runtime_autosuspend_expiration" [drivers/iio/pressure/zpa2326.ko] undefined!
ERROR: "usleep_range" [drivers/iio/pressure/zpa2326.ko] undefined!
ERROR: "regulator_enable" [drivers/iio/pressure/zpa2326.ko] undefined!
ERROR: "_dev_err" [drivers/iio/pressure/zpa2326.ko] undefined!
ERROR: "regmap_write" [drivers/iio/pressure/zpa2326.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/iio/pressure/zpa2326.ko] undefined!
ERROR: "regulator_disable" [drivers/iio/pressure/zpa2326.ko] undefined!
ERROR: "iio_read_const_attr" [drivers/iio/pressure/hp206c.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/pressure/hp206c.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/pressure/hp206c.ko] undefined!
ERROR: "__devm_iio_device_register" [drivers/iio/pressure/hp206c.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/iio/pressure/hp206c.ko] undefined!
ERROR: "__mutex_init" [drivers/iio/pressure/hp206c.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/pressure/hp206c.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/iio/pressure/hp206c.ko] undefined!
ERROR: "i2c_smbus_read_i2c_block_data" [drivers/iio/pressure/hp206c.ko] undefined!
ERROR: "i2c_smbus_write_byte" [drivers/iio/pressure/hp206c.ko] undefined!
ERROR: "_dev_err" [drivers/iio/pressure/hp206c.ko] undefined!
ERROR: "usleep_range" [drivers/iio/pressure/hp206c.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/iio/pressure/hp206c.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/pressure/hp206c.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/pressure/hp206c.ko] undefined!
ERROR: "iio_triggered_buffer_cleanup" [drivers/iio/pressure/st_pressure.ko] undefined!
ERROR: "st_sensors_set_dataready_irq" [drivers/iio/pressure/st_pressure.ko] undefined!
ERROR: "st_sensors_power_enable" [drivers/iio/pressure/st_pressure.ko] undefined!
ERROR: "st_sensors_set_enable" [drivers/iio/pressure/st_pressure.ko] undefined!
ERROR: "st_sensors_trigger_handler" [drivers/iio/pressure/st_pressure.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/pressure/st_pressure.ko] undefined!
ERROR: "st_sensors_deallocate_trigger" [drivers/iio/pressure/st_pressure.ko] undefined!
ERROR: "st_sensors_sysfs_sampling_frequency_avail" [drivers/iio/pressure/st_pressure.ko] undefined!
ERROR: "st_sensors_allocate_trigger" [drivers/iio/pressure/st_pressure.ko] undefined!
ERROR: "iio_device_unregister" [drivers/iio/pressure/st_pressure.ko] undefined!
ERROR: "st_sensors_validate_device" [drivers/iio/pressure/st_pressure.ko] undefined!
ERROR: "iio_triggered_buffer_postenable" [drivers/iio/pressure/st_pressure.ko] undefined!
ERROR: "st_sensors_power_disable" [drivers/iio/pressure/st_pressure.ko] undefined!
ERROR: "st_sensors_init_sensor" [drivers/iio/pressure/st_pressure.ko] undefined!
ERROR: "__iio_device_register" [drivers/iio/pressure/st_pressure.ko] undefined!
ERROR: "_dev_info" [drivers/iio/pressure/st_pressure.ko] undefined!
ERROR: "st_sensors_debugfs_reg_access" [drivers/iio/pressure/st_pressure.ko] undefined!
ERROR: "st_sensors_get_settings_index" [drivers/iio/pressure/st_pressure.ko] undefined!
ERROR: "iio_triggered_buffer_predisable" [drivers/iio/pressure/st_pressure.ko] undefined!
ERROR: "st_sensors_set_odr" [drivers/iio/pressure/st_pressure.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/pressure/st_pressure.ko] undefined!
ERROR: "st_sensors_verify_id" [drivers/iio/pressure/st_pressure.ko] undefined!
ERROR: "st_sensors_read_info_raw" [drivers/iio/pressure/st_pressure.ko] undefined!
ERROR: "iio_triggered_buffer_setup" [drivers/iio/pressure/st_pressure.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/pressure/hp03.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/pressure/hp03.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/pressure/hp03.ko] undefined!
ERROR: "gpiod_set_value_cansleep" [drivers/iio/pressure/hp03.ko] undefined!
ERROR: "regmap_bulk_read" [drivers/iio/pressure/hp03.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/pressure/hp03.ko] undefined!
ERROR: "i2c_smbus_read_word_data" [drivers/iio/pressure/hp03.ko] undefined!
ERROR: "msleep" [drivers/iio/pressure/hp03.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/iio/pressure/hp03.ko] undefined!
ERROR: "_dev_err" [drivers/iio/pressure/hp03.ko] undefined!
ERROR: "__iio_device_register" [drivers/iio/pressure/hp03.ko] undefined!
ERROR: "__regmap_init_i2c" [drivers/iio/pressure/hp03.ko] undefined!
ERROR: "i2c_new_dummy_device" [drivers/iio/pressure/hp03.ko] undefined!
ERROR: "devm_gpiod_get_index" [drivers/iio/pressure/hp03.ko] undefined!
ERROR: "__mutex_init" [drivers/iio/pressure/hp03.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/pressure/hp03.ko] undefined!
ERROR: "i2c_unregister_device" [drivers/iio/pressure/hp03.ko] undefined!
ERROR: "regmap_exit" [drivers/iio/pressure/hp03.ko] undefined!
ERROR: "iio_device_unregister" [drivers/iio/pressure/hp03.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/pressure/abp060mg.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/pressure/abp060mg.ko] undefined!
ERROR: "msleep_interruptible" [drivers/iio/pressure/abp060mg.ko] undefined!
ERROR: "i2c_transfer_buffer_flags" [drivers/iio/pressure/abp060mg.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/pressure/abp060mg.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/pressure/abp060mg.ko] undefined!
ERROR: "__devm_iio_device_register" [drivers/iio/pressure/abp060mg.ko] undefined!
ERROR: "__mutex_init" [drivers/iio/pressure/abp060mg.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/iio/pressure/abp060mg.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/pressure/abp060mg.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/potentiometer/mcp4531.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/potentiometer/mcp4531.ko] undefined!
ERROR: "i2c_smbus_read_word_data" [drivers/iio/potentiometer/mcp4531.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/iio/potentiometer/mcp4531.ko] undefined!
ERROR: "_dev_err" [drivers/iio/potentiometer/mcp4531.ko] undefined!
ERROR: "i2c_match_id" [drivers/iio/potentiometer/mcp4531.ko] undefined!
ERROR: "__devm_iio_device_register" [drivers/iio/potentiometer/mcp4531.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/iio/potentiometer/mcp4531.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/potentiometer/mcp4531.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/iio/potentiometer/mcp4531.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/potentiometer/ad5272.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/potentiometer/ad5272.ko] undefined!
ERROR: "__devm_iio_device_register" [drivers/iio/potentiometer/ad5272.ko] undefined!
ERROR: "usleep_range" [drivers/iio/potentiometer/ad5272.ko] undefined!
ERROR: "gpiod_set_value" [drivers/iio/potentiometer/ad5272.ko] undefined!
ERROR: "__const_udelay" [drivers/iio/potentiometer/ad5272.ko] undefined!
ERROR: "devm_gpiod_get_optional" [drivers/iio/potentiometer/ad5272.ko] undefined!
ERROR: "__mutex_init" [drivers/iio/potentiometer/ad5272.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/potentiometer/ad5272.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/potentiometer/ad5272.ko] undefined!
ERROR: "i2c_transfer_buffer_flags" [drivers/iio/potentiometer/ad5272.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/potentiometer/ad5272.ko] undefined!
ERROR: "bmc150_magn_pm_ops" [drivers/iio/magnetometer/bmc150_magn_i2c.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/magnetometer/bmc150_magn_i2c.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/magnetometer/bmc150_magn_i2c.ko] undefined!
ERROR: "_dev_err" [drivers/iio/magnetometer/bmc150_magn_i2c.ko] undefined!
ERROR: "bmc150_magn_probe" [drivers/iio/magnetometer/bmc150_magn_i2c.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/iio/magnetometer/bmc150_magn_i2c.ko] undefined!
ERROR: "bmc150_magn_regmap_config" [drivers/iio/magnetometer/bmc150_magn_i2c.ko] undefined!
ERROR: "bmc150_magn_remove" [drivers/iio/magnetometer/bmc150_magn_i2c.ko] undefined!
ERROR: "iio_show_mount_matrix" [drivers/iio/magnetometer/bmc150_magn.ko] undefined!
ERROR: "iio_triggered_buffer_predisable" [drivers/iio/magnetometer/bmc150_magn.ko] undefined!
ERROR: "iio_triggered_buffer_postenable" [drivers/iio/magnetometer/bmc150_magn.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/iio/magnetometer/bmc150_magn.ko] undefined!
ERROR: "iio_device_unregister" [drivers/iio/magnetometer/bmc150_magn.ko] undefined!
ERROR: "acpi_match_device" [drivers/iio/magnetometer/bmc150_magn.ko] undefined!
ERROR: "is_acpi_device_node" [drivers/iio/magnetometer/bmc150_magn.ko] undefined!
ERROR: "iio_trigger_unregister" [drivers/iio/magnetometer/bmc150_magn.ko] undefined!
ERROR: "free_irq" [drivers/iio/magnetometer/bmc150_magn.ko] undefined!
ERROR: "iio_triggered_buffer_cleanup" [drivers/iio/magnetometer/bmc150_magn.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/iio/magnetometer/bmc150_magn.ko] undefined!
ERROR: "__iio_device_register" [drivers/iio/magnetometer/bmc150_magn.ko] undefined!
ERROR: "__pm_runtime_use_autosuspend" [drivers/iio/magnetometer/bmc150_magn.ko] undefined!
ERROR: "pm_runtime_set_autosuspend_delay" [drivers/iio/magnetometer/bmc150_magn.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/iio/magnetometer/bmc150_magn.ko] undefined!
ERROR: "__pm_runtime_set_status" [drivers/iio/magnetometer/bmc150_magn.ko] undefined!
ERROR: "iio_triggered_buffer_setup" [drivers/iio/magnetometer/bmc150_magn.ko] undefined!
ERROR: "iio_pollfunc_store_time" [drivers/iio/magnetometer/bmc150_magn.ko] undefined!
ERROR: "request_threaded_irq" [drivers/iio/magnetometer/bmc150_magn.ko] undefined!
ERROR: "iio_trigger_generic_data_rdy_poll" [drivers/iio/magnetometer/bmc150_magn.ko] undefined!
ERROR: "__iio_trigger_register" [drivers/iio/magnetometer/bmc150_magn.ko] undefined!
ERROR: "devm_iio_trigger_alloc" [drivers/iio/magnetometer/bmc150_magn.ko] undefined!
ERROR: "regmap_write" [drivers/iio/magnetometer/bmc150_magn.ko] undefined!
ERROR: "__mutex_init" [drivers/iio/magnetometer/bmc150_magn.ko] undefined!
ERROR: "iio_read_mount_matrix" [drivers/iio/magnetometer/bmc150_magn.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/magnetometer/bmc150_magn.ko] undefined!
ERROR: "usleep_range" [drivers/iio/magnetometer/bmc150_magn.ko] undefined!
ERROR: "scnprintf" [drivers/iio/magnetometer/bmc150_magn.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/iio/magnetometer/bmc150_magn.ko] undefined!
ERROR: "regmap_read" [drivers/iio/magnetometer/bmc150_magn.ko] undefined!
ERROR: "iio_trigger_notify_done" [drivers/iio/magnetometer/bmc150_magn.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/magnetometer/bmc150_magn.ko] undefined!
ERROR: "iio_push_to_buffers" [drivers/iio/magnetometer/bmc150_magn.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/magnetometer/bmc150_magn.ko] undefined!
ERROR: "regmap_bulk_read" [drivers/iio/magnetometer/bmc150_magn.ko] undefined!
ERROR: "_dev_err" [drivers/iio/magnetometer/bmc150_magn.ko] undefined!
ERROR: "__pm_runtime_suspend" [drivers/iio/magnetometer/bmc150_magn.ko] undefined!
ERROR: "ktime_get_mono_fast_ns" [drivers/iio/magnetometer/bmc150_magn.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/iio/magnetometer/bmc150_magn.ko] undefined!
ERROR: "iio_show_mount_matrix" [drivers/iio/magnetometer/ak8974.ko] undefined!
ERROR: "pm_runtime_force_resume" [drivers/iio/magnetometer/ak8974.ko] undefined!
ERROR: "pm_runtime_force_suspend" [drivers/iio/magnetometer/ak8974.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/magnetometer/ak8974.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/magnetometer/ak8974.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/iio/magnetometer/ak8974.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/iio/magnetometer/ak8974.ko] undefined!
ERROR: "irq_get_irq_data" [drivers/iio/magnetometer/ak8974.ko] undefined!
ERROR: "__iio_device_register" [drivers/iio/magnetometer/ak8974.ko] undefined!
ERROR: "iio_triggered_buffer_setup" [drivers/iio/magnetometer/ak8974.ko] undefined!
ERROR: "__pm_runtime_idle" [drivers/iio/magnetometer/ak8974.ko] undefined!
ERROR: "__pm_runtime_use_autosuspend" [drivers/iio/magnetometer/ak8974.ko] undefined!
ERROR: "pm_runtime_set_autosuspend_delay" [drivers/iio/magnetometer/ak8974.ko] undefined!
ERROR: "_dev_info" [drivers/iio/magnetometer/ak8974.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/iio/magnetometer/ak8974.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/iio/magnetometer/ak8974.ko] undefined!
ERROR: "__pm_runtime_set_status" [drivers/iio/magnetometer/ak8974.ko] undefined!
ERROR: "devm_regulator_bulk_get" [drivers/iio/magnetometer/ak8974.ko] undefined!
ERROR: "iio_read_mount_matrix" [drivers/iio/magnetometer/ak8974.ko] undefined!
ERROR: "__mutex_init" [drivers/iio/magnetometer/ak8974.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/magnetometer/ak8974.ko] undefined!
ERROR: "_dev_warn" [drivers/iio/magnetometer/ak8974.ko] undefined!
ERROR: "add_device_randomness" [drivers/iio/magnetometer/ak8974.ko] undefined!
ERROR: "iio_trigger_notify_done" [drivers/iio/magnetometer/ak8974.ko] undefined!
ERROR: "__pm_runtime_suspend" [drivers/iio/magnetometer/ak8974.ko] undefined!
ERROR: "ktime_get_mono_fast_ns" [drivers/iio/magnetometer/ak8974.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/magnetometer/ak8974.ko] undefined!
ERROR: "iio_push_to_buffers" [drivers/iio/magnetometer/ak8974.ko] undefined!
ERROR: "iio_get_time_ns" [drivers/iio/magnetometer/ak8974.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/magnetometer/ak8974.ko] undefined!
ERROR: "regmap_bulk_read" [drivers/iio/magnetometer/ak8974.ko] undefined!
ERROR: "wait_for_completion_timeout" [drivers/iio/magnetometer/ak8974.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/iio/magnetometer/ak8974.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/iio/magnetometer/ak8974.ko] undefined!
ERROR: "_dev_err" [drivers/iio/magnetometer/ak8974.ko] undefined!
ERROR: "complete" [drivers/iio/magnetometer/ak8974.ko] undefined!
ERROR: "regmap_read" [drivers/iio/magnetometer/ak8974.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/iio/magnetometer/ak8974.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/iio/magnetometer/ak8974.ko] undefined!
ERROR: "iio_triggered_buffer_cleanup" [drivers/iio/magnetometer/ak8974.ko] undefined!
ERROR: "iio_device_unregister" [drivers/iio/magnetometer/ak8974.ko] undefined!
ERROR: "regmap_bulk_write" [drivers/iio/magnetometer/ak8974.ko] undefined!
ERROR: "regulator_bulk_enable" [drivers/iio/magnetometer/ak8974.ko] undefined!
ERROR: "regulator_bulk_disable" [drivers/iio/magnetometer/ak8974.ko] undefined!
ERROR: "msleep" [drivers/iio/magnetometer/ak8974.ko] undefined!
ERROR: "regmap_write" [drivers/iio/magnetometer/ak8974.ko] undefined!
ERROR: "iio_trigger_validate_own_device" [drivers/iio/light/vcnl4035.ko] undefined!
ERROR: "iio_read_const_attr" [drivers/iio/light/vcnl4035.ko] undefined!
ERROR: "iio_validate_scan_mask_onehot" [drivers/iio/light/vcnl4035.ko] undefined!
ERROR: "pm_runtime_force_resume" [drivers/iio/light/vcnl4035.ko] undefined!
ERROR: "pm_runtime_force_suspend" [drivers/iio/light/vcnl4035.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/light/vcnl4035.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/light/vcnl4035.ko] undefined!
ERROR: "iio_trigger_poll_chained" [drivers/iio/light/vcnl4035.ko] undefined!
ERROR: "iio_push_event" [drivers/iio/light/vcnl4035.ko] undefined!
ERROR: "iio_trigger_notify_done" [drivers/iio/light/vcnl4035.ko] undefined!
ERROR: "iio_push_to_buffers" [drivers/iio/light/vcnl4035.ko] undefined!
ERROR: "iio_get_time_ns" [drivers/iio/light/vcnl4035.ko] undefined!
ERROR: "_dev_err" [drivers/iio/light/vcnl4035.ko] undefined!
ERROR: "pm_runtime_set_autosuspend_delay" [drivers/iio/light/vcnl4035.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/iio/light/vcnl4035.ko] undefined!
ERROR: "__iio_device_register" [drivers/iio/light/vcnl4035.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/iio/light/vcnl4035.ko] undefined!
ERROR: "devm_iio_triggered_buffer_setup" [drivers/iio/light/vcnl4035.ko] undefined!
ERROR: "__devm_iio_trigger_register" [drivers/iio/light/vcnl4035.ko] undefined!
ERROR: "devm_iio_trigger_alloc" [drivers/iio/light/vcnl4035.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/iio/light/vcnl4035.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/light/vcnl4035.ko] undefined!
ERROR: "iio_device_release_direct_mode" [drivers/iio/light/vcnl4035.ko] undefined!
ERROR: "regmap_read" [drivers/iio/light/vcnl4035.ko] undefined!
ERROR: "iio_device_claim_direct_mode" [drivers/iio/light/vcnl4035.ko] undefined!
ERROR: "__pm_runtime_suspend" [drivers/iio/light/vcnl4035.ko] undefined!
ERROR: "ktime_get_mono_fast_ns" [drivers/iio/light/vcnl4035.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/iio/light/vcnl4035.ko] undefined!
ERROR: "regmap_write" [drivers/iio/light/vcnl4035.ko] undefined!
ERROR: "__sw_hweight32" [drivers/iio/light/vcnl4035.ko] undefined!
ERROR: "__pm_runtime_set_status" [drivers/iio/light/vcnl4035.ko] undefined!
ERROR: "iio_device_unregister" [drivers/iio/light/vcnl4035.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/iio/light/vcnl4035.ko] undefined!
ERROR: "__pm_runtime_use_autosuspend" [drivers/iio/light/vcnl4035.ko] undefined!
ERROR: "regcache_mark_dirty" [drivers/iio/light/vcnl4035.ko] undefined!
ERROR: "msleep" [drivers/iio/light/vcnl4035.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/iio/light/vcnl4035.ko] undefined!
ERROR: "regcache_sync" [drivers/iio/light/vcnl4035.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/light/tsl2563.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/light/tsl2563.ko] undefined!
ERROR: "i2c_smbus_read_word_data" [drivers/iio/light/tsl2563.ko] undefined!
ERROR: "cancel_delayed_work_sync" [drivers/iio/light/tsl2563.ko] undefined!
ERROR: "__iio_device_register" [drivers/iio/light/tsl2563.ko] undefined!
ERROR: "queue_delayed_work_on" [drivers/iio/light/tsl2563.ko] undefined!
ERROR: "init_timer_key" [drivers/iio/light/tsl2563.ko] undefined!
ERROR: "delayed_work_timer_fn" [drivers/iio/light/tsl2563.ko] undefined!
ERROR: "lockdep_init_map" [drivers/iio/light/tsl2563.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/iio/light/tsl2563.ko] undefined!
ERROR: "_dev_info" [drivers/iio/light/tsl2563.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/iio/light/tsl2563.ko] undefined!
ERROR: "__mutex_init" [drivers/iio/light/tsl2563.ko] undefined!
ERROR: "_dev_err" [drivers/iio/light/tsl2563.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/light/tsl2563.ko] undefined!
ERROR: "schedule_timeout_interruptible" [drivers/iio/light/tsl2563.ko] undefined!
ERROR: "__msecs_to_jiffies" [drivers/iio/light/tsl2563.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/iio/light/tsl2563.ko] undefined!
ERROR: "i2c_smbus_write_byte" [drivers/iio/light/tsl2563.ko] undefined!
ERROR: "iio_push_event" [drivers/iio/light/tsl2563.ko] undefined!
ERROR: "iio_get_time_ns" [drivers/iio/light/tsl2563.ko] undefined!
ERROR: "cancel_delayed_work" [drivers/iio/light/tsl2563.ko] undefined!
ERROR: "flush_workqueue" [drivers/iio/light/tsl2563.ko] undefined!
ERROR: "system_wq" [drivers/iio/light/tsl2563.ko] undefined!
ERROR: "iio_device_unregister" [drivers/iio/light/tsl2563.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/light/tsl2563.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/iio/light/tsl2563.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/light/tsl2563.ko] undefined!
ERROR: "iio_read_const_attr" [drivers/iio/light/rpr0521.ko] undefined!
ERROR: "iio_triggered_buffer_predisable" [drivers/iio/light/rpr0521.ko] undefined!
ERROR: "iio_triggered_buffer_postenable" [drivers/iio/light/rpr0521.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/light/rpr0521.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/light/rpr0521.ko] undefined!
ERROR: "msleep" [drivers/iio/light/rpr0521.ko] undefined!
ERROR: "regcache_sync" [drivers/iio/light/rpr0521.ko] undefined!
ERROR: "iio_device_release_direct_mode" [drivers/iio/light/rpr0521.ko] undefined!
ERROR: "iio_device_claim_direct_mode" [drivers/iio/light/rpr0521.ko] undefined!
ERROR: "__pm_runtime_suspend" [drivers/iio/light/rpr0521.ko] undefined!
ERROR: "ktime_get_mono_fast_ns" [drivers/iio/light/rpr0521.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/iio/light/rpr0521.ko] undefined!
ERROR: "regmap_raw_write" [drivers/iio/light/rpr0521.ko] undefined!
ERROR: "printk" [drivers/iio/light/rpr0521.ko] undefined!
ERROR: "__iio_device_register" [drivers/iio/light/rpr0521.ko] undefined!
ERROR: "devm_iio_triggered_buffer_setup" [drivers/iio/light/rpr0521.ko] undefined!
ERROR: "__devm_iio_trigger_register" [drivers/iio/light/rpr0521.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/iio/light/rpr0521.ko] undefined!
ERROR: "devm_iio_trigger_alloc" [drivers/iio/light/rpr0521.ko] undefined!
ERROR: "__pm_runtime_use_autosuspend" [drivers/iio/light/rpr0521.ko] undefined!
ERROR: "pm_runtime_set_autosuspend_delay" [drivers/iio/light/rpr0521.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/iio/light/rpr0521.ko] undefined!
ERROR: "__mutex_init" [drivers/iio/light/rpr0521.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/iio/light/rpr0521.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/light/rpr0521.ko] undefined!
ERROR: "regmap_write" [drivers/iio/light/rpr0521.ko] undefined!
ERROR: "iio_trigger_poll_chained" [drivers/iio/light/rpr0521.ko] undefined!
ERROR: "iio_trigger_notify_done" [drivers/iio/light/rpr0521.ko] undefined!
ERROR: "iio_push_to_buffers" [drivers/iio/light/rpr0521.ko] undefined!
ERROR: "regmap_bulk_read" [drivers/iio/light/rpr0521.ko] undefined!
ERROR: "iio_get_time_ns" [drivers/iio/light/rpr0521.ko] undefined!
ERROR: "iio_trigger_using_own" [drivers/iio/light/rpr0521.ko] undefined!
ERROR: "__pm_runtime_set_status" [drivers/iio/light/rpr0521.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/iio/light/rpr0521.ko] undefined!
ERROR: "iio_device_unregister" [drivers/iio/light/rpr0521.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/light/rpr0521.ko] undefined!
ERROR: "regcache_mark_dirty" [drivers/iio/light/rpr0521.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/light/rpr0521.ko] undefined!
ERROR: "_dev_err" [drivers/iio/light/rpr0521.ko] undefined!
ERROR: "regmap_read" [drivers/iio/light/rpr0521.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/iio/light/rpr0521.ko] undefined!
ERROR: "iio_read_const_attr" [drivers/iio/light/pa12203001.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/light/pa12203001.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/light/pa12203001.ko] undefined!
ERROR: "__iio_device_register" [drivers/iio/light/pa12203001.ko] undefined!
ERROR: "__pm_runtime_use_autosuspend" [drivers/iio/light/pa12203001.ko] undefined!
ERROR: "pm_runtime_set_autosuspend_delay" [drivers/iio/light/pa12203001.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/iio/light/pa12203001.ko] undefined!
ERROR: "regmap_write" [drivers/iio/light/pa12203001.ko] undefined!
ERROR: "__mutex_init" [drivers/iio/light/pa12203001.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/iio/light/pa12203001.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/light/pa12203001.ko] undefined!
ERROR: "__pm_runtime_set_status" [drivers/iio/light/pa12203001.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/iio/light/pa12203001.ko] undefined!
ERROR: "iio_device_unregister" [drivers/iio/light/pa12203001.ko] undefined!
ERROR: "regmap_bulk_read" [drivers/iio/light/pa12203001.ko] undefined!
ERROR: "__pm_runtime_suspend" [drivers/iio/light/pa12203001.ko] undefined!
ERROR: "ktime_get_mono_fast_ns" [drivers/iio/light/pa12203001.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/iio/light/pa12203001.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/light/pa12203001.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/light/pa12203001.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/iio/light/pa12203001.ko] undefined!
ERROR: "regmap_read" [drivers/iio/light/pa12203001.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/iio/light/lm3533-als.ko] undefined!
ERROR: "__platform_driver_register" [drivers/iio/light/lm3533-als.ko] undefined!
ERROR: "iio_push_event" [drivers/iio/light/lm3533-als.ko] undefined!
ERROR: "iio_get_time_ns" [drivers/iio/light/lm3533-als.ko] undefined!
ERROR: "__iio_device_register" [drivers/iio/light/lm3533-als.ko] undefined!
ERROR: "request_threaded_irq" [drivers/iio/light/lm3533-als.ko] undefined!
ERROR: "__mutex_init" [drivers/iio/light/lm3533-als.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/light/lm3533-als.ko] undefined!
ERROR: "_kstrtoul" [drivers/iio/light/lm3533-als.ko] undefined!
ERROR: "scnprintf" [drivers/iio/light/lm3533-als.ko] undefined!
ERROR: "kstrtou8" [drivers/iio/light/lm3533-als.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/light/lm3533-als.ko] undefined!
ERROR: "lm3533_write" [drivers/iio/light/lm3533-als.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/light/lm3533-als.ko] undefined!
ERROR: "lm3533_read" [drivers/iio/light/lm3533-als.ko] undefined!
ERROR: "free_irq" [drivers/iio/light/lm3533-als.ko] undefined!
ERROR: "iio_device_unregister" [drivers/iio/light/lm3533-als.ko] undefined!
ERROR: "_dev_err" [drivers/iio/light/lm3533-als.ko] undefined!
ERROR: "lm3533_update" [drivers/iio/light/lm3533-als.ko] undefined!
ERROR: "iio_read_const_attr" [drivers/iio/light/cm36651.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/light/cm36651.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/light/cm36651.ko] undefined!
ERROR: "i2c_smbus_read_word_data" [drivers/iio/light/cm36651.ko] undefined!
ERROR: "msleep" [drivers/iio/light/cm36651.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/light/cm36651.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/light/cm36651.ko] undefined!
ERROR: "__iio_device_register" [drivers/iio/light/cm36651.ko] undefined!
ERROR: "request_threaded_irq" [drivers/iio/light/cm36651.ko] undefined!
ERROR: "__mutex_init" [drivers/iio/light/cm36651.ko] undefined!
ERROR: "i2c_new_dummy_device" [drivers/iio/light/cm36651.ko] undefined!
ERROR: "regulator_enable" [drivers/iio/light/cm36651.ko] undefined!
ERROR: "devm_regulator_get" [drivers/iio/light/cm36651.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/light/cm36651.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/iio/light/cm36651.ko] undefined!
ERROR: "_dev_err" [drivers/iio/light/cm36651.ko] undefined!
ERROR: "iio_push_event" [drivers/iio/light/cm36651.ko] undefined!
ERROR: "iio_get_time_ns" [drivers/iio/light/cm36651.ko] undefined!
ERROR: "i2c_smbus_read_byte" [drivers/iio/light/cm36651.ko] undefined!
ERROR: "i2c_unregister_device" [drivers/iio/light/cm36651.ko] undefined!
ERROR: "free_irq" [drivers/iio/light/cm36651.ko] undefined!
ERROR: "regulator_disable" [drivers/iio/light/cm36651.ko] undefined!
ERROR: "iio_device_unregister" [drivers/iio/light/cm36651.ko] undefined!
ERROR: "iio_read_const_attr" [drivers/iio/light/cm3323.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/light/cm3323.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/light/cm3323.ko] undefined!
ERROR: "__devm_iio_device_register" [drivers/iio/light/cm3323.ko] undefined!
ERROR: "devm_add_action" [drivers/iio/light/cm3323.ko] undefined!
ERROR: "__mutex_init" [drivers/iio/light/cm3323.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/light/cm3323.ko] undefined!
ERROR: "i2c_smbus_read_word_data" [drivers/iio/light/cm3323.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/light/cm3323.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/light/cm3323.ko] undefined!
ERROR: "_dev_err" [drivers/iio/light/cm3323.ko] undefined!
ERROR: "i2c_smbus_write_word_data" [drivers/iio/light/cm3323.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/light/cm3232.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/light/cm3232.ko] undefined!
ERROR: "scnprintf" [drivers/iio/light/cm3232.ko] undefined!
ERROR: "__iio_device_register" [drivers/iio/light/cm3232.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/light/cm3232.ko] undefined!
ERROR: "_dev_err" [drivers/iio/light/cm3232.ko] undefined!
ERROR: "i2c_smbus_read_word_data" [drivers/iio/light/cm3232.ko] undefined!
ERROR: "iio_device_unregister" [drivers/iio/light/cm3232.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/iio/light/cm3232.ko] undefined!
ERROR: "pm_runtime_force_resume" [drivers/iio/light/bh1780.ko] undefined!
ERROR: "pm_runtime_force_suspend" [drivers/iio/light/bh1780.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/light/bh1780.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/light/bh1780.ko] undefined!
ERROR: "__pm_runtime_suspend" [drivers/iio/light/bh1780.ko] undefined!
ERROR: "ktime_get_mono_fast_ns" [drivers/iio/light/bh1780.ko] undefined!
ERROR: "i2c_smbus_read_word_data" [drivers/iio/light/bh1780.ko] undefined!
ERROR: "__iio_device_register" [drivers/iio/light/bh1780.ko] undefined!
ERROR: "__pm_runtime_idle" [drivers/iio/light/bh1780.ko] undefined!
ERROR: "__pm_runtime_use_autosuspend" [drivers/iio/light/bh1780.ko] undefined!
ERROR: "pm_runtime_set_autosuspend_delay" [drivers/iio/light/bh1780.ko] undefined!
ERROR: "_dev_info" [drivers/iio/light/bh1780.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/iio/light/bh1780.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/iio/light/bh1780.ko] undefined!
ERROR: "__pm_runtime_set_status" [drivers/iio/light/bh1780.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/light/bh1780.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/iio/light/bh1780.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/iio/light/bh1780.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/iio/light/bh1780.ko] undefined!
ERROR: "iio_device_unregister" [drivers/iio/light/bh1780.ko] undefined!
ERROR: "msleep" [drivers/iio/light/bh1780.ko] undefined!
ERROR: "_dev_err" [drivers/iio/light/bh1780.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/iio/light/bh1780.ko] undefined!
ERROR: "iio_read_const_attr" [drivers/iio/light/apds9960.ko] undefined!
ERROR: "pm_runtime_force_resume" [drivers/iio/light/apds9960.ko] undefined!
ERROR: "pm_runtime_force_suspend" [drivers/iio/light/apds9960.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/light/apds9960.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/light/apds9960.ko] undefined!
ERROR: "regmap_bulk_write" [drivers/iio/light/apds9960.ko] undefined!
ERROR: "__iio_device_register" [drivers/iio/light/apds9960.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/iio/light/apds9960.ko] undefined!
ERROR: "devm_regmap_field_alloc" [drivers/iio/light/apds9960.ko] undefined!
ERROR: "__pm_runtime_use_autosuspend" [drivers/iio/light/apds9960.ko] undefined!
ERROR: "pm_runtime_set_autosuspend_delay" [drivers/iio/light/apds9960.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/iio/light/apds9960.ko] undefined!
ERROR: "__mutex_init" [drivers/iio/light/apds9960.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/iio/light/apds9960.ko] undefined!
ERROR: "iio_device_attach_buffer" [drivers/iio/light/apds9960.ko] undefined!
ERROR: "devm_iio_kfifo_allocate" [drivers/iio/light/apds9960.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/light/apds9960.ko] undefined!
ERROR: "ktime_get_mono_fast_ns" [drivers/iio/light/apds9960.ko] undefined!
ERROR: "usleep_range" [drivers/iio/light/apds9960.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/iio/light/apds9960.ko] undefined!
ERROR: "__pm_runtime_suspend" [drivers/iio/light/apds9960.ko] undefined!
ERROR: "regmap_field_update_bits_base" [drivers/iio/light/apds9960.ko] undefined!
ERROR: "_dev_err" [drivers/iio/light/apds9960.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/light/apds9960.ko] undefined!
ERROR: "regmap_bulk_read" [drivers/iio/light/apds9960.ko] undefined!
ERROR: "iio_push_to_buffers" [drivers/iio/light/apds9960.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/light/apds9960.ko] undefined!
ERROR: "regmap_write" [drivers/iio/light/apds9960.ko] undefined!
ERROR: "iio_push_event" [drivers/iio/light/apds9960.ko] undefined!
ERROR: "iio_get_time_ns" [drivers/iio/light/apds9960.ko] undefined!
ERROR: "regmap_read" [drivers/iio/light/apds9960.ko] undefined!
ERROR: "__pm_runtime_set_status" [drivers/iio/light/apds9960.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/iio/light/apds9960.ko] undefined!
ERROR: "iio_device_unregister" [drivers/iio/light/apds9960.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/iio/light/apds9960.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/light/apds9300.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/light/apds9300.ko] undefined!
ERROR: "__iio_device_register" [drivers/iio/light/apds9300.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/iio/light/apds9300.ko] undefined!
ERROR: "__mutex_init" [drivers/iio/light/apds9300.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/iio/light/apds9300.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/light/apds9300.ko] undefined!
ERROR: "i2c_smbus_write_word_data" [drivers/iio/light/apds9300.ko] undefined!
ERROR: "i2c_smbus_read_word_data" [drivers/iio/light/apds9300.ko] undefined!
ERROR: "i2c_smbus_write_byte" [drivers/iio/light/apds9300.ko] undefined!
ERROR: "iio_push_event" [drivers/iio/light/apds9300.ko] undefined!
ERROR: "iio_get_time_ns" [drivers/iio/light/apds9300.ko] undefined!
ERROR: "iio_device_unregister" [drivers/iio/light/apds9300.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/light/apds9300.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/light/apds9300.ko] undefined!
ERROR: "_dev_err" [drivers/iio/light/apds9300.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/iio/light/apds9300.ko] undefined!
ERROR: "iio_read_const_attr" [drivers/iio/light/al3320a.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/light/al3320a.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/light/al3320a.ko] undefined!
ERROR: "_dev_err" [drivers/iio/light/al3320a.ko] undefined!
ERROR: "__devm_iio_device_register" [drivers/iio/light/al3320a.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/light/al3320a.ko] undefined!
ERROR: "i2c_smbus_read_word_data" [drivers/iio/light/al3320a.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/iio/light/al3320a.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/iio/light/al3320a.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/light/adjd_s311.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/light/adjd_s311.ko] undefined!
ERROR: "i2c_smbus_write_word_data" [drivers/iio/light/adjd_s311.ko] undefined!
ERROR: "__kmalloc" [drivers/iio/light/adjd_s311.ko] undefined!
ERROR: "iio_push_to_buffers" [drivers/iio/light/adjd_s311.ko] undefined!
ERROR: "iio_trigger_notify_done" [drivers/iio/light/adjd_s311.ko] undefined!
ERROR: "find_next_bit" [drivers/iio/light/adjd_s311.ko] undefined!
ERROR: "find_first_bit" [drivers/iio/light/adjd_s311.ko] undefined!
ERROR: "iio_get_time_ns" [drivers/iio/light/adjd_s311.ko] undefined!
ERROR: "i2c_smbus_read_word_data" [drivers/iio/light/adjd_s311.ko] undefined!
ERROR: "_dev_err" [drivers/iio/light/adjd_s311.ko] undefined!
ERROR: "msleep" [drivers/iio/light/adjd_s311.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/iio/light/adjd_s311.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/iio/light/adjd_s311.ko] undefined!
ERROR: "_dev_info" [drivers/iio/light/adjd_s311.ko] undefined!
ERROR: "__iio_device_register" [drivers/iio/light/adjd_s311.ko] undefined!
ERROR: "iio_triggered_buffer_setup" [drivers/iio/light/adjd_s311.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/light/adjd_s311.ko] undefined!
ERROR: "kfree" [drivers/iio/light/adjd_s311.ko] undefined!
ERROR: "iio_triggered_buffer_cleanup" [drivers/iio/light/adjd_s311.ko] undefined!
ERROR: "iio_device_unregister" [drivers/iio/light/adjd_s311.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/imu/fxos8700_i2c.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/imu/fxos8700_i2c.ko] undefined!
ERROR: "_dev_err" [drivers/iio/imu/fxos8700_i2c.ko] undefined!
ERROR: "fxos8700_core_probe" [drivers/iio/imu/fxos8700_i2c.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/iio/imu/fxos8700_i2c.ko] undefined!
ERROR: "fxos8700_regmap_config" [drivers/iio/imu/fxos8700_i2c.ko] undefined!
ERROR: "iio_read_const_attr" [drivers/iio/imu/fxos8700_core.ko] undefined!
ERROR: "__devm_iio_device_register" [drivers/iio/imu/fxos8700_core.ko] undefined!
ERROR: "devm_add_action" [drivers/iio/imu/fxos8700_core.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/imu/fxos8700_core.ko] undefined!
ERROR: "usleep_range" [drivers/iio/imu/fxos8700_core.ko] undefined!
ERROR: "regmap_write" [drivers/iio/imu/fxos8700_core.ko] undefined!
ERROR: "_dev_err" [drivers/iio/imu/fxos8700_core.ko] undefined!
ERROR: "regmap_get_device" [drivers/iio/imu/fxos8700_core.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/iio/imu/fxos8700_core.ko] undefined!
ERROR: "regmap_bulk_read" [drivers/iio/imu/fxos8700_core.ko] undefined!
ERROR: "regmap_read" [drivers/iio/imu/fxos8700_core.ko] undefined!
ERROR: "st_lsm6dsx_pm_ops" [drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_i3c.ko] undefined!
ERROR: "i3c_driver_unregister" [drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_i3c.ko] undefined!
ERROR: "i3c_driver_register_with_owner" [drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_i3c.ko] undefined!
ERROR: "_dev_err" [drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_i3c.ko] undefined!
ERROR: "st_lsm6dsx_probe" [drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_i3c.ko] undefined!
ERROR: "__devm_regmap_init_i3c" [drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_i3c.ko] undefined!
ERROR: "i3c_device_match_id" [drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_i3c.ko] undefined!
ERROR: "st_lsm6dsx_pm_ops" [drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_i2c.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_i2c.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_i2c.ko] undefined!
ERROR: "_dev_err" [drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_i2c.ko] undefined!
ERROR: "st_lsm6dsx_probe" [drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_i2c.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_i2c.ko] undefined!
ERROR: "msleep" [drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.ko] undefined!
ERROR: "regmap_bulk_read" [drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.ko] undefined!
ERROR: "regmap_bulk_write" [drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.ko] undefined!
ERROR: "regmap_read" [drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.ko] undefined!
ERROR: "iio_get_time_ns" [drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.ko] undefined!
ERROR: "irq_set_irq_wake" [drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.ko] undefined!
ERROR: "iio_read_mount_matrix" [drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.ko] undefined!
ERROR: "__mutex_init" [drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.ko] undefined!
ERROR: "__devm_iio_device_register" [drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.ko] undefined!
ERROR: "iio_device_attach_buffer" [drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.ko] undefined!
ERROR: "irq_get_irq_data" [drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.ko] undefined!
ERROR: "device_init_wakeup" [drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.ko] undefined!
ERROR: "_dev_err" [drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.ko] undefined!
ERROR: "iio_device_claim_direct_mode" [drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.ko] undefined!
ERROR: "iio_show_mount_matrix" [drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.ko] undefined!
ERROR: "_dev_info" [drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.ko] undefined!
ERROR: "device_property_read_u32_array" [drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.ko] undefined!
ERROR: "usleep_range" [drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.ko] undefined!
ERROR: "iio_device_release_direct_mode" [drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.ko] undefined!
ERROR: "dev_fwnode" [drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.ko] undefined!
ERROR: "scnprintf" [drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.ko] undefined!
ERROR: "iio_push_to_buffers" [drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.ko] undefined!
ERROR: "devm_iio_kfifo_allocate" [drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.ko] undefined!
ERROR: "iio_push_event" [drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.ko] undefined!
ERROR: "devm_kmalloc" [drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.ko] undefined!
ERROR: "regmap_write" [drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.ko] undefined!
ERROR: "device_property_present" [drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/humidity/si7005.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/humidity/si7005.ko] undefined!
ERROR: "i2c_smbus_read_word_data" [drivers/iio/humidity/si7005.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/humidity/si7005.ko] undefined!
ERROR: "msleep" [drivers/iio/humidity/si7005.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/iio/humidity/si7005.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/humidity/si7005.ko] undefined!
ERROR: "__devm_iio_device_register" [drivers/iio/humidity/si7005.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/iio/humidity/si7005.ko] undefined!
ERROR: "__mutex_init" [drivers/iio/humidity/si7005.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/humidity/si7005.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/iio/humidity/si7005.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/humidity/am2315.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/humidity/am2315.ko] undefined!
ERROR: "find_next_bit" [drivers/iio/humidity/am2315.ko] undefined!
ERROR: "find_first_bit" [drivers/iio/humidity/am2315.ko] undefined!
ERROR: "iio_trigger_notify_done" [drivers/iio/humidity/am2315.ko] undefined!
ERROR: "iio_push_to_buffers" [drivers/iio/humidity/am2315.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/humidity/am2315.ko] undefined!
ERROR: "usleep_range" [drivers/iio/humidity/am2315.ko] undefined!
ERROR: "i2c_transfer_buffer_flags" [drivers/iio/humidity/am2315.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/humidity/am2315.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/iio/humidity/am2315.ko] undefined!
ERROR: "_dev_err" [drivers/iio/humidity/am2315.ko] undefined!
ERROR: "__devm_iio_device_register" [drivers/iio/humidity/am2315.ko] undefined!
ERROR: "devm_iio_triggered_buffer_setup" [drivers/iio/humidity/am2315.ko] undefined!
ERROR: "iio_pollfunc_store_time" [drivers/iio/humidity/am2315.ko] undefined!
ERROR: "__mutex_init" [drivers/iio/humidity/am2315.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/humidity/am2315.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/health/max30102.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/health/max30102.ko] undefined!
ERROR: "_dev_info" [drivers/iio/health/max30102.ko] undefined!
ERROR: "_dev_err" [drivers/iio/health/max30102.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/iio/health/max30102.ko] undefined!
ERROR: "__iio_device_register" [drivers/iio/health/max30102.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/iio/health/max30102.ko] undefined!
ERROR: "regmap_write" [drivers/iio/health/max30102.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/iio/health/max30102.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/iio/health/max30102.ko] undefined!
ERROR: "__mutex_init" [drivers/iio/health/max30102.ko] undefined!
ERROR: "iio_device_attach_buffer" [drivers/iio/health/max30102.ko] undefined!
ERROR: "devm_iio_kfifo_allocate" [drivers/iio/health/max30102.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/health/max30102.ko] undefined!
ERROR: "msleep" [drivers/iio/health/max30102.ko] undefined!
ERROR: "iio_push_to_buffers" [drivers/iio/health/max30102.ko] undefined!
ERROR: "i2c_smbus_read_i2c_block_data" [drivers/iio/health/max30102.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/health/max30102.ko] undefined!
ERROR: "regmap_read" [drivers/iio/health/max30102.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/health/max30102.ko] undefined!
ERROR: "__bitmap_weight" [drivers/iio/health/max30102.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/iio/health/max30102.ko] undefined!
ERROR: "iio_device_unregister" [drivers/iio/health/max30102.ko] undefined!
ERROR: "iio_triggered_buffer_cleanup" [drivers/iio/gyro/itg3200.ko] undefined!
ERROR: "iio_trigger_unregister" [drivers/iio/gyro/itg3200.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/iio/gyro/itg3200.ko] undefined!
ERROR: "iio_pollfunc_store_time" [drivers/iio/gyro/itg3200.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/gyro/itg3200.ko] undefined!
ERROR: "iio_trigger_notify_done" [drivers/iio/gyro/itg3200.ko] undefined!
ERROR: "iio_trigger_alloc" [drivers/iio/gyro/itg3200.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/iio/gyro/itg3200.ko] undefined!
ERROR: "i2c_transfer" [drivers/iio/gyro/itg3200.ko] undefined!
ERROR: "__const_udelay" [drivers/iio/gyro/itg3200.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/gyro/itg3200.ko] undefined!
ERROR: "iio_device_unregister" [drivers/iio/gyro/itg3200.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/gyro/itg3200.ko] undefined!
ERROR: "iio_read_mount_matrix" [drivers/iio/gyro/itg3200.ko] undefined!
ERROR: "__iio_trigger_register" [drivers/iio/gyro/itg3200.ko] undefined!
ERROR: "__iio_device_register" [drivers/iio/gyro/itg3200.ko] undefined!
ERROR: "request_threaded_irq" [drivers/iio/gyro/itg3200.ko] undefined!
ERROR: "_dev_err" [drivers/iio/gyro/itg3200.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/gyro/itg3200.ko] undefined!
ERROR: "iio_show_mount_matrix" [drivers/iio/gyro/itg3200.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/iio/gyro/itg3200.ko] undefined!
ERROR: "get_device" [drivers/iio/gyro/itg3200.ko] undefined!
ERROR: "iio_trigger_free" [drivers/iio/gyro/itg3200.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/gyro/itg3200.ko] undefined!
ERROR: "iio_trigger_generic_data_rdy_poll" [drivers/iio/gyro/itg3200.ko] undefined!
ERROR: "iio_push_to_buffers" [drivers/iio/gyro/itg3200.ko] undefined!
ERROR: "iio_triggered_buffer_setup" [drivers/iio/gyro/itg3200.ko] undefined!
ERROR: "free_irq" [drivers/iio/gyro/itg3200.ko] undefined!
ERROR: "iio_enum_available_read" [drivers/iio/dac/ti-dac5571.ko] undefined!
ERROR: "iio_enum_write" [drivers/iio/dac/ti-dac5571.ko] undefined!
ERROR: "iio_enum_read" [drivers/iio/dac/ti-dac5571.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/dac/ti-dac5571.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/dac/ti-dac5571.ko] undefined!
ERROR: "regulator_get_voltage" [drivers/iio/dac/ti-dac5571.ko] undefined!
ERROR: "sprintf" [drivers/iio/dac/ti-dac5571.ko] undefined!
ERROR: "kstrtobool" [drivers/iio/dac/ti-dac5571.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/iio/dac/ti-dac5571.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/dac/ti-dac5571.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/dac/ti-dac5571.ko] undefined!
ERROR: "i2c_transfer_buffer_flags" [drivers/iio/dac/ti-dac5571.ko] undefined!
ERROR: "_dev_err" [drivers/iio/dac/ti-dac5571.ko] undefined!
ERROR: "__iio_device_register" [drivers/iio/dac/ti-dac5571.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/iio/dac/ti-dac5571.ko] undefined!
ERROR: "__mutex_init" [drivers/iio/dac/ti-dac5571.ko] undefined!
ERROR: "regulator_enable" [drivers/iio/dac/ti-dac5571.ko] undefined!
ERROR: "devm_regulator_get" [drivers/iio/dac/ti-dac5571.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/dac/ti-dac5571.ko] undefined!
ERROR: "regulator_disable" [drivers/iio/dac/ti-dac5571.ko] undefined!
ERROR: "iio_device_unregister" [drivers/iio/dac/ti-dac5571.ko] undefined!
ERROR: "iio_enum_available_read" [drivers/iio/dac/mcp4725.ko] undefined!
ERROR: "iio_enum_write" [drivers/iio/dac/mcp4725.ko] undefined!
ERROR: "iio_enum_read" [drivers/iio/dac/mcp4725.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/dac/mcp4725.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/dac/mcp4725.ko] undefined!
ERROR: "_dev_info" [drivers/iio/dac/mcp4725.ko] undefined!
ERROR: "of_find_property" [drivers/iio/dac/mcp4725.ko] undefined!
ERROR: "__iio_device_register" [drivers/iio/dac/mcp4725.ko] undefined!
ERROR: "regulator_enable" [drivers/iio/dac/mcp4725.ko] undefined!
ERROR: "devm_regulator_get" [drivers/iio/dac/mcp4725.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/iio/dac/mcp4725.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/dac/mcp4725.ko] undefined!
ERROR: "_dev_err" [drivers/iio/dac/mcp4725.ko] undefined!
ERROR: "msleep" [drivers/iio/dac/mcp4725.ko] undefined!
ERROR: "regulator_get_voltage" [drivers/iio/dac/mcp4725.ko] undefined!
ERROR: "sprintf" [drivers/iio/dac/mcp4725.ko] undefined!
ERROR: "kstrtobool" [drivers/iio/dac/mcp4725.ko] undefined!
ERROR: "regulator_disable" [drivers/iio/dac/mcp4725.ko] undefined!
ERROR: "iio_device_unregister" [drivers/iio/dac/mcp4725.ko] undefined!
ERROR: "i2c_transfer_buffer_flags" [drivers/iio/dac/mcp4725.ko] undefined!
ERROR: "iio_enum_available_read" [drivers/iio/dac/max5821.ko] undefined!
ERROR: "iio_enum_write" [drivers/iio/dac/max5821.ko] undefined!
ERROR: "iio_enum_read" [drivers/iio/dac/max5821.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/dac/max5821.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/dac/max5821.ko] undefined!
ERROR: "kstrtobool" [drivers/iio/dac/max5821.ko] undefined!
ERROR: "sprintf" [drivers/iio/dac/max5821.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/dac/max5821.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/dac/max5821.ko] undefined!
ERROR: "_dev_err" [drivers/iio/dac/max5821.ko] undefined!
ERROR: "__iio_device_register" [drivers/iio/dac/max5821.ko] undefined!
ERROR: "regulator_get_voltage" [drivers/iio/dac/max5821.ko] undefined!
ERROR: "regulator_enable" [drivers/iio/dac/max5821.ko] undefined!
ERROR: "devm_regulator_get" [drivers/iio/dac/max5821.ko] undefined!
ERROR: "__mutex_init" [drivers/iio/dac/max5821.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/dac/max5821.ko] undefined!
ERROR: "regulator_disable" [drivers/iio/dac/max5821.ko] undefined!
ERROR: "iio_device_unregister" [drivers/iio/dac/max5821.ko] undefined!
ERROR: "i2c_transfer_buffer_flags" [drivers/iio/dac/max5821.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/dac/ad5696-i2c.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/dac/ad5696-i2c.ko] undefined!
ERROR: "i2c_transfer_buffer_flags" [drivers/iio/dac/ad5696-i2c.ko] undefined!
ERROR: "i2c_transfer" [drivers/iio/dac/ad5696-i2c.ko] undefined!
ERROR: "ad5686_probe" [drivers/iio/dac/ad5696-i2c.ko] undefined!
ERROR: "ad5686_remove" [drivers/iio/dac/ad5696-i2c.ko] undefined!
ERROR: "iio_enum_available_read" [drivers/iio/dac/ad5686.ko] undefined!
ERROR: "iio_enum_write" [drivers/iio/dac/ad5686.ko] undefined!
ERROR: "iio_enum_read" [drivers/iio/dac/ad5686.ko] undefined!
ERROR: "iio_device_unregister" [drivers/iio/dac/ad5686.ko] undefined!
ERROR: "regulator_disable" [drivers/iio/dac/ad5686.ko] undefined!
ERROR: "regulator_get_voltage" [drivers/iio/dac/ad5686.ko] undefined!
ERROR: "regulator_enable" [drivers/iio/dac/ad5686.ko] undefined!
ERROR: "__iio_device_register" [drivers/iio/dac/ad5686.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/iio/dac/ad5686.ko] undefined!
ERROR: "devm_regulator_get_optional" [drivers/iio/dac/ad5686.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/dac/ad5686.ko] undefined!
ERROR: "sprintf" [drivers/iio/dac/ad5686.ko] undefined!
ERROR: "kstrtobool" [drivers/iio/dac/ad5686.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/iio/dac/ad5686.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/dac/ad5686.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/iio/dac/ad5686.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/dac/ad5686.ko] undefined!
ERROR: "iio_enum_available_read" [drivers/iio/dac/ad5446.ko] undefined!
ERROR: "iio_enum_write" [drivers/iio/dac/ad5446.ko] undefined!
ERROR: "iio_enum_read" [drivers/iio/dac/ad5446.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/dac/ad5446.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/dac/ad5446.ko] undefined!
ERROR: "_dev_warn" [drivers/iio/dac/ad5446.ko] undefined!
ERROR: "__iio_device_register" [drivers/iio/dac/ad5446.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/dac/ad5446.ko] undefined!
ERROR: "regulator_get_voltage" [drivers/iio/dac/ad5446.ko] undefined!
ERROR: "regulator_enable" [drivers/iio/dac/ad5446.ko] undefined!
ERROR: "devm_regulator_get" [drivers/iio/dac/ad5446.ko] undefined!
ERROR: "sprintf" [drivers/iio/dac/ad5446.ko] undefined!
ERROR: "kstrtobool" [drivers/iio/dac/ad5446.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/iio/dac/ad5446.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/dac/ad5446.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/dac/ad5446.ko] undefined!
ERROR: "i2c_transfer_buffer_flags" [drivers/iio/dac/ad5446.ko] undefined!
ERROR: "regulator_disable" [drivers/iio/dac/ad5446.ko] undefined!
ERROR: "iio_device_unregister" [drivers/iio/dac/ad5446.ko] undefined!
ERROR: "iio_enum_available_read" [drivers/iio/dac/ad5064.ko] undefined!
ERROR: "iio_enum_write" [drivers/iio/dac/ad5064.ko] undefined!
ERROR: "iio_enum_read" [drivers/iio/dac/ad5064.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/dac/ad5064.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/dac/ad5064.ko] undefined!
ERROR: "_dev_err" [drivers/iio/dac/ad5064.ko] undefined!
ERROR: "devm_regulator_bulk_get" [drivers/iio/dac/ad5064.ko] undefined!
ERROR: "__iio_device_register" [drivers/iio/dac/ad5064.ko] undefined!
ERROR: "regulator_bulk_enable" [drivers/iio/dac/ad5064.ko] undefined!
ERROR: "devm_regulator_get_optional" [drivers/iio/dac/ad5064.ko] undefined!
ERROR: "__mutex_init" [drivers/iio/dac/ad5064.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/dac/ad5064.ko] undefined!
ERROR: "regulator_get_voltage" [drivers/iio/dac/ad5064.ko] undefined!
ERROR: "kstrtobool" [drivers/iio/dac/ad5064.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/iio/dac/ad5064.ko] undefined!
ERROR: "sprintf" [drivers/iio/dac/ad5064.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/dac/ad5064.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/iio/dac/ad5064.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/dac/ad5064.ko] undefined!
ERROR: "i2c_transfer_buffer_flags" [drivers/iio/dac/ad5064.ko] undefined!
ERROR: "regulator_bulk_disable" [drivers/iio/dac/ad5064.ko] undefined!
ERROR: "iio_device_unregister" [drivers/iio/dac/ad5064.ko] undefined!
ERROR: "iio_trigger_unregister" [drivers/iio/common/st_sensors/st_sensors.ko] undefined!
ERROR: "__kmalloc" [drivers/iio/common/st_sensors/st_sensors.ko] undefined!
ERROR: "msleep" [drivers/iio/common/st_sensors/st_sensors.ko] undefined!
ERROR: "iio_trigger_notify_done" [drivers/iio/common/st_sensors/st_sensors.ko] undefined!
ERROR: "regulator_disable" [drivers/iio/common/st_sensors/st_sensors.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/iio/common/st_sensors/st_sensors.ko] undefined!
ERROR: "iio_trigger_alloc" [drivers/iio/common/st_sensors/st_sensors.ko] undefined!
ERROR: "find_next_bit" [drivers/iio/common/st_sensors/st_sensors.ko] undefined!
ERROR: "regmap_bulk_read" [drivers/iio/common/st_sensors/st_sensors.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/common/st_sensors/st_sensors.ko] undefined!
ERROR: "regmap_read" [drivers/iio/common/st_sensors/st_sensors.ko] undefined!
ERROR: "strcmp" [drivers/iio/common/st_sensors/st_sensors.ko] undefined!
ERROR: "iio_get_time_ns" [drivers/iio/common/st_sensors/st_sensors.ko] undefined!
ERROR: "iio_trigger_poll_chained" [drivers/iio/common/st_sensors/st_sensors.ko] undefined!
ERROR: "device_get_match_data" [drivers/iio/common/st_sensors/st_sensors.ko] undefined!
ERROR: "_dev_warn" [drivers/iio/common/st_sensors/st_sensors.ko] undefined!
ERROR: "__iio_trigger_register" [drivers/iio/common/st_sensors/st_sensors.ko] undefined!
ERROR: "iio_trigger_using_own" [drivers/iio/common/st_sensors/st_sensors.ko] undefined!
ERROR: "strlcpy" [drivers/iio/common/st_sensors/st_sensors.ko] undefined!
ERROR: "irq_get_irq_data" [drivers/iio/common/st_sensors/st_sensors.ko] undefined!
ERROR: "request_threaded_irq" [drivers/iio/common/st_sensors/st_sensors.ko] undefined!
ERROR: "_dev_err" [drivers/iio/common/st_sensors/st_sensors.ko] undefined!
ERROR: "_dev_info" [drivers/iio/common/st_sensors/st_sensors.ko] undefined!
ERROR: "devm_regulator_get" [drivers/iio/common/st_sensors/st_sensors.ko] undefined!
ERROR: "device_property_read_u32_array" [drivers/iio/common/st_sensors/st_sensors.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/iio/common/st_sensors/st_sensors.ko] undefined!
ERROR: "get_device" [drivers/iio/common/st_sensors/st_sensors.ko] undefined!
ERROR: "iio_trigger_free" [drivers/iio/common/st_sensors/st_sensors.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/common/st_sensors/st_sensors.ko] undefined!
ERROR: "kfree" [drivers/iio/common/st_sensors/st_sensors.ko] undefined!
ERROR: "dev_fwnode" [drivers/iio/common/st_sensors/st_sensors.ko] undefined!
ERROR: "scnprintf" [drivers/iio/common/st_sensors/st_sensors.ko] undefined!
ERROR: "find_first_bit" [drivers/iio/common/st_sensors/st_sensors.ko] undefined!
ERROR: "iio_push_to_buffers" [drivers/iio/common/st_sensors/st_sensors.ko] undefined!
ERROR: "devm_kmalloc" [drivers/iio/common/st_sensors/st_sensors.ko] undefined!
ERROR: "regmap_write" [drivers/iio/common/st_sensors/st_sensors.ko] undefined!
ERROR: "device_property_present" [drivers/iio/common/st_sensors/st_sensors.ko] undefined!
ERROR: "free_irq" [drivers/iio/common/st_sensors/st_sensors.ko] undefined!
ERROR: "regulator_enable" [drivers/iio/common/st_sensors/st_sensors.ko] undefined!
ERROR: "_dev_err" [drivers/iio/common/st_sensors/st_sensors_i2c.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/iio/common/st_sensors/st_sensors_i2c.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/chemical/sps30.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/chemical/sps30.ko] undefined!
ERROR: "__devm_iio_device_register" [drivers/iio/chemical/sps30.ko] undefined!
ERROR: "devm_iio_triggered_buffer_setup" [drivers/iio/chemical/sps30.ko] undefined!
ERROR: "devm_add_action" [drivers/iio/chemical/sps30.ko] undefined!
ERROR: "_dev_info" [drivers/iio/chemical/sps30.ko] undefined!
ERROR: "crc8_populate_msb" [drivers/iio/chemical/sps30.ko] undefined!
ERROR: "__mutex_init" [drivers/iio/chemical/sps30.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/chemical/sps30.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/iio/chemical/sps30.ko] undefined!
ERROR: "_dev_warn" [drivers/iio/chemical/sps30.ko] undefined!
ERROR: "msleep" [drivers/iio/chemical/sps30.ko] undefined!
ERROR: "kstrtoint" [drivers/iio/chemical/sps30.ko] undefined!
ERROR: "sprintf" [drivers/iio/chemical/sps30.ko] undefined!
ERROR: "iio_push_to_buffers" [drivers/iio/chemical/sps30.ko] undefined!
ERROR: "iio_get_time_ns" [drivers/iio/chemical/sps30.ko] undefined!
ERROR: "iio_trigger_notify_done" [drivers/iio/chemical/sps30.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/chemical/sps30.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/chemical/sps30.ko] undefined!
ERROR: "msleep_interruptible" [drivers/iio/chemical/sps30.ko] undefined!
ERROR: "_dev_err" [drivers/iio/chemical/sps30.ko] undefined!
ERROR: "i2c_transfer_buffer_flags" [drivers/iio/chemical/sps30.ko] undefined!
ERROR: "crc8" [drivers/iio/chemical/sps30.ko] undefined!
ERROR: "snprintf" [drivers/iio/chemical/sps30.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/chemical/ams-iaq-core.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/chemical/ams-iaq-core.ko] undefined!
ERROR: "i2c_transfer" [drivers/iio/chemical/ams-iaq-core.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/chemical/ams-iaq-core.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/chemical/ams-iaq-core.ko] undefined!
ERROR: "__devm_iio_device_register" [drivers/iio/chemical/ams-iaq-core.ko] undefined!
ERROR: "__mutex_init" [drivers/iio/chemical/ams-iaq-core.ko] undefined!
ERROR: "jiffies" [drivers/iio/chemical/ams-iaq-core.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/chemical/ams-iaq-core.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/chemical/ccs811.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/chemical/ccs811.ko] undefined!
ERROR: "__iio_device_register" [drivers/iio/chemical/ccs811.ko] undefined!
ERROR: "iio_triggered_buffer_setup" [drivers/iio/chemical/ccs811.ko] undefined!
ERROR: "__iio_trigger_register" [drivers/iio/chemical/ccs811.ko] undefined!
ERROR: "get_device" [drivers/iio/chemical/ccs811.ko] undefined!
ERROR: "devm_iio_trigger_alloc" [drivers/iio/chemical/ccs811.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/iio/chemical/ccs811.ko] undefined!
ERROR: "__mutex_init" [drivers/iio/chemical/ccs811.ko] undefined!
ERROR: "i2c_smbus_write_byte" [drivers/iio/chemical/ccs811.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/chemical/ccs811.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/iio/chemical/ccs811.ko] undefined!
ERROR: "iio_device_release_direct_mode" [drivers/iio/chemical/ccs811.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/chemical/ccs811.ko] undefined!
ERROR: "msleep" [drivers/iio/chemical/ccs811.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/chemical/ccs811.ko] undefined!
ERROR: "iio_device_claim_direct_mode" [drivers/iio/chemical/ccs811.ko] undefined!
ERROR: "iio_trigger_poll" [drivers/iio/chemical/ccs811.ko] undefined!
ERROR: "_dev_err" [drivers/iio/chemical/ccs811.ko] undefined!
ERROR: "iio_trigger_notify_done" [drivers/iio/chemical/ccs811.ko] undefined!
ERROR: "iio_push_to_buffers" [drivers/iio/chemical/ccs811.ko] undefined!
ERROR: "iio_get_time_ns" [drivers/iio/chemical/ccs811.ko] undefined!
ERROR: "i2c_smbus_read_i2c_block_data" [drivers/iio/chemical/ccs811.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/iio/chemical/ccs811.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/iio/chemical/ccs811.ko] undefined!
ERROR: "iio_trigger_unregister" [drivers/iio/chemical/ccs811.ko] undefined!
ERROR: "iio_triggered_buffer_cleanup" [drivers/iio/chemical/ccs811.ko] undefined!
ERROR: "iio_device_unregister" [drivers/iio/chemical/ccs811.ko] undefined!
ERROR: "iio_buffer_put" [drivers/iio/buffer/industrialio-buffer-cb.ko] undefined!
ERROR: "iio_update_buffers" [drivers/iio/buffer/industrialio-buffer-cb.ko] undefined!
ERROR: "iio_channel_release_all" [drivers/iio/buffer/industrialio-buffer-cb.ko] undefined!
ERROR: "bitmap_zalloc" [drivers/iio/buffer/industrialio-buffer-cb.ko] undefined!
ERROR: "iio_channel_get_all" [drivers/iio/buffer/industrialio-buffer-cb.ko] undefined!
ERROR: "iio_buffer_init" [drivers/iio/buffer/industrialio-buffer-cb.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/iio/buffer/industrialio-buffer-cb.ko] undefined!
ERROR: "kmalloc_caches" [drivers/iio/buffer/industrialio-buffer-cb.ko] undefined!
ERROR: "kfree" [drivers/iio/buffer/industrialio-buffer-cb.ko] undefined!
ERROR: "bitmap_free" [drivers/iio/buffer/industrialio-buffer-cb.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/iio/buffer/industrialio-buffer-cb.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/iio/adc/sd_adc_modulator.ko] undefined!
ERROR: "__platform_driver_register" [drivers/iio/adc/sd_adc_modulator.ko] undefined!
ERROR: "__devm_iio_device_register" [drivers/iio/adc/sd_adc_modulator.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/adc/sd_adc_modulator.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/iio/adc/sun4i-gpadc-iio.ko] undefined!
ERROR: "__platform_driver_register" [drivers/iio/adc/sun4i-gpadc-iio.ko] undefined!
ERROR: "iio_map_array_register" [drivers/iio/adc/sun4i-gpadc-iio.ko] undefined!
ERROR: "__devm_iio_device_register" [drivers/iio/adc/sun4i-gpadc-iio.ko] undefined!
ERROR: "thermal_zone_of_sensor_register" [drivers/iio/adc/sun4i-gpadc-iio.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/iio/adc/sun4i-gpadc-iio.ko] undefined!
ERROR: "__pm_runtime_set_status" [drivers/iio/adc/sun4i-gpadc-iio.ko] undefined!
ERROR: "__pm_runtime_use_autosuspend" [drivers/iio/adc/sun4i-gpadc-iio.ko] undefined!
ERROR: "pm_runtime_set_autosuspend_delay" [drivers/iio/adc/sun4i-gpadc-iio.ko] undefined!
ERROR: "__devm_regmap_init_mmio_clk" [drivers/iio/adc/sun4i-gpadc-iio.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/iio/adc/sun4i-gpadc-iio.ko] undefined!
ERROR: "platform_get_resource" [drivers/iio/adc/sun4i-gpadc-iio.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/iio/adc/sun4i-gpadc-iio.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/iio/adc/sun4i-gpadc-iio.ko] undefined!
ERROR: "__mutex_init" [drivers/iio/adc/sun4i-gpadc-iio.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/adc/sun4i-gpadc-iio.ko] undefined!
ERROR: "_dev_err" [drivers/iio/adc/sun4i-gpadc-iio.ko] undefined!
ERROR: "devm_request_any_context_irq" [drivers/iio/adc/sun4i-gpadc-iio.ko] undefined!
ERROR: "regmap_irq_get_virq" [drivers/iio/adc/sun4i-gpadc-iio.ko] undefined!
ERROR: "platform_get_irq_byname" [drivers/iio/adc/sun4i-gpadc-iio.ko] undefined!
ERROR: "complete" [drivers/iio/adc/sun4i-gpadc-iio.ko] undefined!
ERROR: "ktime_get_mono_fast_ns" [drivers/iio/adc/sun4i-gpadc-iio.ko] undefined!
ERROR: "wait_for_completion_timeout" [drivers/iio/adc/sun4i-gpadc-iio.ko] undefined!
ERROR: "enable_irq" [drivers/iio/adc/sun4i-gpadc-iio.ko] undefined!
ERROR: "__const_udelay" [drivers/iio/adc/sun4i-gpadc-iio.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/iio/adc/sun4i-gpadc-iio.ko] undefined!
ERROR: "regmap_read" [drivers/iio/adc/sun4i-gpadc-iio.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/adc/sun4i-gpadc-iio.ko] undefined!
ERROR: "disable_irq" [drivers/iio/adc/sun4i-gpadc-iio.ko] undefined!
ERROR: "__pm_runtime_suspend" [drivers/iio/adc/sun4i-gpadc-iio.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/iio/adc/sun4i-gpadc-iio.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/adc/sun4i-gpadc-iio.ko] undefined!
ERROR: "iio_map_array_unregister" [drivers/iio/adc/sun4i-gpadc-iio.ko] undefined!
ERROR: "thermal_zone_of_sensor_unregister" [drivers/iio/adc/sun4i-gpadc-iio.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/iio/adc/sun4i-gpadc-iio.ko] undefined!
ERROR: "__pm_runtime_idle" [drivers/iio/adc/sun4i-gpadc-iio.ko] undefined!
ERROR: "regmap_write" [drivers/iio/adc/sun4i-gpadc-iio.ko] undefined!
ERROR: "param_ops_uint" [drivers/iio/adc/stx104.ko] undefined!
ERROR: "param_array_ops" [drivers/iio/adc/stx104.ko] undefined!
ERROR: "isa_unregister_driver" [drivers/iio/adc/stx104.ko] undefined!
ERROR: "isa_register_driver" [drivers/iio/adc/stx104.ko] undefined!
ERROR: "_dev_err" [drivers/iio/adc/stx104.ko] undefined!
ERROR: "__devm_iio_device_register" [drivers/iio/adc/stx104.ko] undefined!
ERROR: "devm_gpiochip_add_data" [drivers/iio/adc/stx104.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/iio/adc/stx104.ko] undefined!
ERROR: "__devm_request_region" [drivers/iio/adc/stx104.ko] undefined!
ERROR: "ioport_resource" [drivers/iio/adc/stx104.ko] undefined!
ERROR: "devm_kmalloc" [drivers/iio/adc/stx104.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/adc/stx104.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/iio/adc/stx104.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/iio/adc/stx104.ko] undefined!
ERROR: "gpiochip_get_data" [drivers/iio/adc/stx104.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/iio/adc/stx104.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/iio/adc/qcom-pm8xxx-xoadc.ko] undefined!
ERROR: "__platform_driver_register" [drivers/iio/adc/qcom-pm8xxx-xoadc.ko] undefined!
ERROR: "_dev_info" [drivers/iio/adc/qcom-pm8xxx-xoadc.ko] undefined!
ERROR: "of_node_put" [drivers/iio/adc/qcom-pm8xxx-xoadc.ko] undefined!
ERROR: "__iio_device_register" [drivers/iio/adc/qcom-pm8xxx-xoadc.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/iio/adc/qcom-pm8xxx-xoadc.ko] undefined!
ERROR: "platform_get_irq" [drivers/iio/adc/qcom-pm8xxx-xoadc.ko] undefined!
ERROR: "regulator_enable" [drivers/iio/adc/qcom-pm8xxx-xoadc.ko] undefined!
ERROR: "devm_regulator_get" [drivers/iio/adc/qcom-pm8xxx-xoadc.ko] undefined!
ERROR: "dev_get_regmap" [drivers/iio/adc/qcom-pm8xxx-xoadc.ko] undefined!
ERROR: "qcom_vadc_decimation_from_dt" [drivers/iio/adc/qcom-pm8xxx-xoadc.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/iio/adc/qcom-pm8xxx-xoadc.ko] undefined!
ERROR: "of_property_read_u32_index" [drivers/iio/adc/qcom-pm8xxx-xoadc.ko] undefined!
ERROR: "devm_kmalloc" [drivers/iio/adc/qcom-pm8xxx-xoadc.ko] undefined!
ERROR: "of_get_next_available_child" [drivers/iio/adc/qcom-pm8xxx-xoadc.ko] undefined!
ERROR: "__mutex_init" [drivers/iio/adc/qcom-pm8xxx-xoadc.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/iio/adc/qcom-pm8xxx-xoadc.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/adc/qcom-pm8xxx-xoadc.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/iio/adc/qcom-pm8xxx-xoadc.ko] undefined!
ERROR: "complete" [drivers/iio/adc/qcom-pm8xxx-xoadc.ko] undefined!
ERROR: "qcom_vadc_scale" [drivers/iio/adc/qcom-pm8xxx-xoadc.ko] undefined!
ERROR: "regmap_read" [drivers/iio/adc/qcom-pm8xxx-xoadc.ko] undefined!
ERROR: "wait_for_completion_timeout" [drivers/iio/adc/qcom-pm8xxx-xoadc.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/adc/qcom-pm8xxx-xoadc.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/iio/adc/qcom-pm8xxx-xoadc.ko] undefined!
ERROR: "regmap_write" [drivers/iio/adc/qcom-pm8xxx-xoadc.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/adc/qcom-pm8xxx-xoadc.ko] undefined!
ERROR: "_dev_err" [drivers/iio/adc/qcom-pm8xxx-xoadc.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/iio/adc/qcom-pm8xxx-xoadc.ko] undefined!
ERROR: "regulator_disable" [drivers/iio/adc/qcom-pm8xxx-xoadc.ko] undefined!
ERROR: "iio_device_unregister" [drivers/iio/adc/qcom-pm8xxx-xoadc.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/iio/adc/qcom-spmi-vadc.ko] undefined!
ERROR: "__platform_driver_register" [drivers/iio/adc/qcom-spmi-vadc.ko] undefined!
ERROR: "of_node_put" [drivers/iio/adc/qcom-spmi-vadc.ko] undefined!
ERROR: "__devm_iio_device_register" [drivers/iio/adc/qcom-spmi-vadc.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/iio/adc/qcom-spmi-vadc.ko] undefined!
ERROR: "of_find_property" [drivers/iio/adc/qcom-spmi-vadc.ko] undefined!
ERROR: "platform_get_irq" [drivers/iio/adc/qcom-spmi-vadc.ko] undefined!
ERROR: "qcom_vadc_decimation_from_dt" [drivers/iio/adc/qcom-spmi-vadc.ko] undefined!
ERROR: "devm_kmalloc" [drivers/iio/adc/qcom-spmi-vadc.ko] undefined!
ERROR: "of_get_next_available_child" [drivers/iio/adc/qcom-spmi-vadc.ko] undefined!
ERROR: "__mutex_init" [drivers/iio/adc/qcom-spmi-vadc.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/iio/adc/qcom-spmi-vadc.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/adc/qcom-spmi-vadc.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/iio/adc/qcom-spmi-vadc.ko] undefined!
ERROR: "dev_get_regmap" [drivers/iio/adc/qcom-spmi-vadc.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/iio/adc/qcom-spmi-vadc.ko] undefined!
ERROR: "complete" [drivers/iio/adc/qcom-spmi-vadc.ko] undefined!
ERROR: "qcom_vadc_scale" [drivers/iio/adc/qcom-spmi-vadc.ko] undefined!
ERROR: "wait_for_completion_timeout" [drivers/iio/adc/qcom-spmi-vadc.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/adc/qcom-spmi-vadc.ko] undefined!
ERROR: "regmap_write" [drivers/iio/adc/qcom-spmi-vadc.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/adc/qcom-spmi-vadc.ko] undefined!
ERROR: "_dev_err" [drivers/iio/adc/qcom-spmi-vadc.ko] undefined!
ERROR: "regmap_bulk_read" [drivers/iio/adc/qcom-spmi-vadc.ko] undefined!
ERROR: "usleep_range" [drivers/iio/adc/qcom-spmi-vadc.ko] undefined!
ERROR: "printk" [drivers/iio/adc/qcom-vadc-common.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/iio/adc/qcom-vadc-common.ko] undefined!
ERROR: "div64_s64" [drivers/iio/adc/qcom-vadc-common.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/iio/adc/qcom-spmi-iadc.ko] undefined!
ERROR: "__platform_driver_register" [drivers/iio/adc/qcom-spmi-iadc.ko] undefined!
ERROR: "device_init_wakeup" [drivers/iio/adc/qcom-spmi-iadc.ko] undefined!
ERROR: "__devm_iio_device_register" [drivers/iio/adc/qcom-spmi-iadc.ko] undefined!
ERROR: "irq_set_irq_wake" [drivers/iio/adc/qcom-spmi-iadc.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/iio/adc/qcom-spmi-iadc.ko] undefined!
ERROR: "platform_get_irq" [drivers/iio/adc/qcom-spmi-iadc.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/iio/adc/qcom-spmi-iadc.ko] undefined!
ERROR: "__mutex_init" [drivers/iio/adc/qcom-spmi-iadc.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/iio/adc/qcom-spmi-iadc.ko] undefined!
ERROR: "dev_get_regmap" [drivers/iio/adc/qcom-spmi-iadc.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/adc/qcom-spmi-iadc.ko] undefined!
ERROR: "complete" [drivers/iio/adc/qcom-spmi-iadc.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/iio/adc/qcom-spmi-iadc.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/adc/qcom-spmi-iadc.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/adc/qcom-spmi-iadc.ko] undefined!
ERROR: "regmap_bulk_read" [drivers/iio/adc/qcom-spmi-iadc.ko] undefined!
ERROR: "wait_for_completion_timeout" [drivers/iio/adc/qcom-spmi-iadc.ko] undefined!
ERROR: "jiffies_to_usecs" [drivers/iio/adc/qcom-spmi-iadc.ko] undefined!
ERROR: "regmap_write" [drivers/iio/adc/qcom-spmi-iadc.ko] undefined!
ERROR: "_dev_err" [drivers/iio/adc/qcom-spmi-iadc.ko] undefined!
ERROR: "usleep_range" [drivers/iio/adc/qcom-spmi-iadc.ko] undefined!
ERROR: "regmap_read" [drivers/iio/adc/qcom-spmi-iadc.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/adc/mcp3422.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/adc/mcp3422.ko] undefined!
ERROR: "msleep" [drivers/iio/adc/mcp3422.ko] undefined!
ERROR: "__devm_iio_device_register" [drivers/iio/adc/mcp3422.ko] undefined!
ERROR: "__mutex_init" [drivers/iio/adc/mcp3422.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/adc/mcp3422.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/iio/adc/mcp3422.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/adc/mcp3422.ko] undefined!
ERROR: "i2c_transfer_buffer_flags" [drivers/iio/adc/mcp3422.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/adc/mcp3422.ko] undefined!
ERROR: "sprintf" [drivers/iio/adc/mcp3422.ko] undefined!
ERROR: "iio_device_unregister" [drivers/iio/adc/ltc2497-core.ko] undefined!
ERROR: "_dev_err" [drivers/iio/adc/ltc2497-core.ko] undefined!
ERROR: "regulator_disable" [drivers/iio/adc/ltc2497-core.ko] undefined!
ERROR: "iio_map_array_unregister" [drivers/iio/adc/ltc2497-core.ko] undefined!
ERROR: "__iio_device_register" [drivers/iio/adc/ltc2497-core.ko] undefined!
ERROR: "iio_map_array_register" [drivers/iio/adc/ltc2497-core.ko] undefined!
ERROR: "regulator_enable" [drivers/iio/adc/ltc2497-core.ko] undefined!
ERROR: "devm_regulator_get" [drivers/iio/adc/ltc2497-core.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/iio/adc/ltc2497-core.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/adc/ltc2497-core.ko] undefined!
ERROR: "msleep_interruptible" [drivers/iio/adc/ltc2497-core.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/iio/adc/ltc2497-core.ko] undefined!
ERROR: "ktime_get" [drivers/iio/adc/ltc2497-core.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/adc/ltc2497-core.ko] undefined!
ERROR: "regulator_get_voltage" [drivers/iio/adc/ltc2497-core.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/adc/ltc2497.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/adc/ltc2497.ko] undefined!
ERROR: "_dev_err" [drivers/iio/adc/ltc2497.ko] undefined!
ERROR: "i2c_smbus_write_byte" [drivers/iio/adc/ltc2497.ko] undefined!
ERROR: "i2c_transfer_buffer_flags" [drivers/iio/adc/ltc2497.ko] undefined!
ERROR: "ltc2497core_probe" [drivers/iio/adc/ltc2497.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/adc/ltc2497.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/iio/adc/ltc2497.ko] undefined!
ERROR: "ltc2497core_remove" [drivers/iio/adc/ltc2497.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/adc/ltc2485.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/adc/ltc2485.ko] undefined!
ERROR: "_dev_err" [drivers/iio/adc/ltc2485.ko] undefined!
ERROR: "msleep" [drivers/iio/adc/ltc2485.ko] undefined!
ERROR: "i2c_transfer_buffer_flags" [drivers/iio/adc/ltc2485.ko] undefined!
ERROR: "__devm_iio_device_register" [drivers/iio/adc/ltc2485.ko] undefined!
ERROR: "ktime_get" [drivers/iio/adc/ltc2485.ko] undefined!
ERROR: "i2c_smbus_write_byte" [drivers/iio/adc/ltc2485.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/adc/ltc2485.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/iio/adc/ltc2485.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/iio/adc/lp8788_adc.ko] undefined!
ERROR: "__platform_driver_register" [drivers/iio/adc/lp8788_adc.ko] undefined!
ERROR: "_dev_err" [drivers/iio/adc/lp8788_adc.ko] undefined!
ERROR: "__iio_device_register" [drivers/iio/adc/lp8788_adc.ko] undefined!
ERROR: "__mutex_init" [drivers/iio/adc/lp8788_adc.ko] undefined!
ERROR: "iio_map_array_register" [drivers/iio/adc/lp8788_adc.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/adc/lp8788_adc.ko] undefined!
ERROR: "lp8788_read_multi_bytes" [drivers/iio/adc/lp8788_adc.ko] undefined!
ERROR: "lp8788_read_byte" [drivers/iio/adc/lp8788_adc.ko] undefined!
ERROR: "usleep_range" [drivers/iio/adc/lp8788_adc.ko] undefined!
ERROR: "lp8788_write_byte" [drivers/iio/adc/lp8788_adc.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/adc/lp8788_adc.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/adc/lp8788_adc.ko] undefined!
ERROR: "iio_map_array_unregister" [drivers/iio/adc/lp8788_adc.ko] undefined!
ERROR: "iio_device_unregister" [drivers/iio/adc/lp8788_adc.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/iio/adc/intel_mrfld_adc.ko] undefined!
ERROR: "__platform_driver_register" [drivers/iio/adc/intel_mrfld_adc.ko] undefined!
ERROR: "regmap_bulk_read" [drivers/iio/adc/intel_mrfld_adc.ko] undefined!
ERROR: "wait_for_completion_interruptible_timeout" [drivers/iio/adc/intel_mrfld_adc.ko] undefined!
ERROR: "regmap_write" [drivers/iio/adc/intel_mrfld_adc.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/adc/intel_mrfld_adc.ko] undefined!
ERROR: "usleep_range" [drivers/iio/adc/intel_mrfld_adc.ko] undefined!
ERROR: "regmap_read" [drivers/iio/adc/intel_mrfld_adc.ko] undefined!
ERROR: "__might_sleep" [drivers/iio/adc/intel_mrfld_adc.ko] undefined!
ERROR: "ktime_get" [drivers/iio/adc/intel_mrfld_adc.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/iio/adc/intel_mrfld_adc.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/adc/intel_mrfld_adc.ko] undefined!
ERROR: "__devm_iio_device_register" [drivers/iio/adc/intel_mrfld_adc.ko] undefined!
ERROR: "iio_map_array_register" [drivers/iio/adc/intel_mrfld_adc.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/iio/adc/intel_mrfld_adc.ko] undefined!
ERROR: "platform_get_irq" [drivers/iio/adc/intel_mrfld_adc.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/iio/adc/intel_mrfld_adc.ko] undefined!
ERROR: "__mutex_init" [drivers/iio/adc/intel_mrfld_adc.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/adc/intel_mrfld_adc.ko] undefined!
ERROR: "complete" [drivers/iio/adc/intel_mrfld_adc.ko] undefined!
ERROR: "iio_map_array_unregister" [drivers/iio/adc/intel_mrfld_adc.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/iio/adc/imx7d_adc.ko] undefined!
ERROR: "__platform_driver_register" [drivers/iio/adc/imx7d_adc.ko] undefined!
ERROR: "__devm_iio_device_register" [drivers/iio/adc/imx7d_adc.ko] undefined!
ERROR: "devm_add_action" [drivers/iio/adc/imx7d_adc.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/iio/adc/imx7d_adc.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/iio/adc/imx7d_adc.ko] undefined!
ERROR: "devm_regulator_get" [drivers/iio/adc/imx7d_adc.ko] undefined!
ERROR: "devm_clk_get" [drivers/iio/adc/imx7d_adc.ko] undefined!
ERROR: "platform_get_irq" [drivers/iio/adc/imx7d_adc.ko] undefined!
ERROR: "devm_platform_ioremap_resource" [drivers/iio/adc/imx7d_adc.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/adc/imx7d_adc.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/adc/imx7d_adc.ko] undefined!
ERROR: "wait_for_completion_interruptible_timeout" [drivers/iio/adc/imx7d_adc.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/adc/imx7d_adc.ko] undefined!
ERROR: "regulator_get_voltage" [drivers/iio/adc/imx7d_adc.ko] undefined!
ERROR: "complete" [drivers/iio/adc/imx7d_adc.ko] undefined!
ERROR: "clk_disable" [drivers/iio/adc/imx7d_adc.ko] undefined!
ERROR: "clk_unprepare" [drivers/iio/adc/imx7d_adc.ko] undefined!
ERROR: "clk_enable" [drivers/iio/adc/imx7d_adc.ko] undefined!
ERROR: "regulator_disable" [drivers/iio/adc/imx7d_adc.ko] undefined!
ERROR: "_dev_err" [drivers/iio/adc/imx7d_adc.ko] undefined!
ERROR: "clk_prepare" [drivers/iio/adc/imx7d_adc.ko] undefined!
ERROR: "regulator_enable" [drivers/iio/adc/imx7d_adc.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/iio/adc/dln2-adc.ko] undefined!
ERROR: "__platform_driver_register" [drivers/iio/adc/dln2-adc.ko] undefined!
ERROR: "iio_device_release_direct_mode" [drivers/iio/adc/dln2-adc.ko] undefined!
ERROR: "iio_device_claim_direct_mode" [drivers/iio/adc/dln2-adc.ko] undefined!
ERROR: "find_next_bit" [drivers/iio/adc/dln2-adc.ko] undefined!
ERROR: "find_first_bit" [drivers/iio/adc/dln2-adc.ko] undefined!
ERROR: "iio_triggered_buffer_postenable" [drivers/iio/adc/dln2-adc.ko] undefined!
ERROR: "iio_triggered_buffer_predisable" [drivers/iio/adc/dln2-adc.ko] undefined!
ERROR: "iio_trigger_notify_done" [drivers/iio/adc/dln2-adc.ko] undefined!
ERROR: "iio_push_to_buffers" [drivers/iio/adc/dln2-adc.ko] undefined!
ERROR: "iio_get_time_ns" [drivers/iio/adc/dln2-adc.ko] undefined!
ERROR: "_dev_err" [drivers/iio/adc/dln2-adc.ko] undefined!
ERROR: "__iio_device_register" [drivers/iio/adc/dln2-adc.ko] undefined!
ERROR: "dln2_register_event_cb" [drivers/iio/adc/dln2-adc.ko] undefined!
ERROR: "devm_iio_triggered_buffer_setup" [drivers/iio/adc/dln2-adc.ko] undefined!
ERROR: "iio_trigger_set_immutable" [drivers/iio/adc/dln2-adc.ko] undefined!
ERROR: "__devm_iio_trigger_register" [drivers/iio/adc/dln2-adc.ko] undefined!
ERROR: "devm_iio_trigger_alloc" [drivers/iio/adc/dln2-adc.ko] undefined!
ERROR: "__mutex_init" [drivers/iio/adc/dln2-adc.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/adc/dln2-adc.ko] undefined!
ERROR: "_dev_warn" [drivers/iio/adc/dln2-adc.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/adc/dln2-adc.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/adc/dln2-adc.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/iio/adc/dln2-adc.ko] undefined!
ERROR: "dln2_transfer" [drivers/iio/adc/dln2-adc.ko] undefined!
ERROR: "iio_trigger_poll" [drivers/iio/adc/dln2-adc.ko] undefined!
ERROR: "dln2_unregister_event_cb" [drivers/iio/adc/dln2-adc.ko] undefined!
ERROR: "iio_device_unregister" [drivers/iio/adc/dln2-adc.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/iio/adc/axp288_adc.ko] undefined!
ERROR: "__platform_driver_register" [drivers/iio/adc/axp288_adc.ko] undefined!
ERROR: "usleep_range" [drivers/iio/adc/axp288_adc.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/adc/axp288_adc.ko] undefined!
ERROR: "regmap_bulk_read" [drivers/iio/adc/axp288_adc.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/adc/axp288_adc.ko] undefined!
ERROR: "__iio_device_register" [drivers/iio/adc/axp288_adc.ko] undefined!
ERROR: "iio_map_array_register" [drivers/iio/adc/axp288_adc.ko] undefined!
ERROR: "_dev_err" [drivers/iio/adc/axp288_adc.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/iio/adc/axp288_adc.ko] undefined!
ERROR: "regmap_read" [drivers/iio/adc/axp288_adc.ko] undefined!
ERROR: "platform_get_irq" [drivers/iio/adc/axp288_adc.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/adc/axp288_adc.ko] undefined!
ERROR: "iio_map_array_unregister" [drivers/iio/adc/axp288_adc.ko] undefined!
ERROR: "iio_device_unregister" [drivers/iio/adc/axp288_adc.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/iio/adc/axp20x_adc.ko] undefined!
ERROR: "__platform_driver_register" [drivers/iio/adc/axp20x_adc.ko] undefined!
ERROR: "regmap_read" [drivers/iio/adc/axp20x_adc.ko] undefined!
ERROR: "_dev_err" [drivers/iio/adc/axp20x_adc.ko] undefined!
ERROR: "__iio_device_register" [drivers/iio/adc/axp20x_adc.ko] undefined!
ERROR: "iio_map_array_register" [drivers/iio/adc/axp20x_adc.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/iio/adc/axp20x_adc.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/iio/adc/axp20x_adc.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/adc/axp20x_adc.ko] undefined!
ERROR: "regmap_write" [drivers/iio/adc/axp20x_adc.ko] undefined!
ERROR: "iio_map_array_unregister" [drivers/iio/adc/axp20x_adc.ko] undefined!
ERROR: "iio_device_unregister" [drivers/iio/adc/axp20x_adc.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/iio/adc/axp20x_adc.ko] undefined!
ERROR: "devm_add_action" [drivers/iio/adc/ad7091r-base.ko] undefined!
ERROR: "regulator_enable" [drivers/iio/adc/ad7091r-base.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/iio/adc/ad7091r-base.ko] undefined!
ERROR: "__devm_iio_device_register" [drivers/iio/adc/ad7091r-base.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/iio/adc/ad7091r-base.ko] undefined!
ERROR: "devm_regulator_get_optional" [drivers/iio/adc/ad7091r-base.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/adc/ad7091r-base.ko] undefined!
ERROR: "regmap_write" [drivers/iio/adc/ad7091r-base.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/adc/ad7091r-base.ko] undefined!
ERROR: "regulator_get_voltage" [drivers/iio/adc/ad7091r-base.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/adc/ad7091r-base.ko] undefined!
ERROR: "iio_push_event" [drivers/iio/adc/ad7091r-base.ko] undefined!
ERROR: "regmap_read" [drivers/iio/adc/ad7091r-base.ko] undefined!
ERROR: "iio_get_time_ns" [drivers/iio/adc/ad7091r-base.ko] undefined!
ERROR: "regulator_disable" [drivers/iio/adc/ad7091r-base.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/adc/ad7091r5.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/adc/ad7091r5.ko] undefined!
ERROR: "ad7091r_probe" [drivers/iio/adc/ad7091r5.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/iio/adc/ad7091r5.ko] undefined!
ERROR: "ad7091r_regmap_config" [drivers/iio/adc/ad7091r5.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/accel/st_accel_i2c.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/accel/st_accel_i2c.ko] undefined!
ERROR: "st_accel_common_remove" [drivers/iio/accel/st_accel_i2c.ko] undefined!
ERROR: "_dev_err" [drivers/iio/accel/st_accel_i2c.ko] undefined!
ERROR: "st_accel_common_probe" [drivers/iio/accel/st_accel_i2c.ko] undefined!
ERROR: "st_sensors_i2c_configure" [drivers/iio/accel/st_accel_i2c.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/accel/st_accel_i2c.ko] undefined!
ERROR: "st_accel_get_settings" [drivers/iio/accel/st_accel_i2c.ko] undefined!
ERROR: "strlcpy" [drivers/iio/accel/st_accel_i2c.ko] undefined!
ERROR: "device_get_match_data" [drivers/iio/accel/st_accel_i2c.ko] undefined!
ERROR: "iio_triggered_buffer_cleanup" [drivers/iio/accel/st_accel.ko] undefined!
ERROR: "st_sensors_set_dataready_irq" [drivers/iio/accel/st_accel.ko] undefined!
ERROR: "st_sensors_power_enable" [drivers/iio/accel/st_accel.ko] undefined!
ERROR: "st_sensors_set_enable" [drivers/iio/accel/st_accel.ko] undefined!
ERROR: "st_sensors_trigger_handler" [drivers/iio/accel/st_accel.ko] undefined!
ERROR: "acpi_evaluate_object" [drivers/iio/accel/st_accel.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/accel/st_accel.ko] undefined!
ERROR: "st_sensors_deallocate_trigger" [drivers/iio/accel/st_accel.ko] undefined!
ERROR: "st_sensors_sysfs_sampling_frequency_avail" [drivers/iio/accel/st_accel.ko] undefined!
ERROR: "st_sensors_allocate_trigger" [drivers/iio/accel/st_accel.ko] undefined!
ERROR: "iio_device_unregister" [drivers/iio/accel/st_accel.ko] undefined!
ERROR: "st_sensors_set_fullscale_by_gain" [drivers/iio/accel/st_accel.ko] undefined!
ERROR: "_dev_warn" [drivers/iio/accel/st_accel.ko] undefined!
ERROR: "st_sensors_validate_device" [drivers/iio/accel/st_accel.ko] undefined!
ERROR: "iio_triggered_buffer_postenable" [drivers/iio/accel/st_accel.ko] undefined!
ERROR: "st_sensors_power_disable" [drivers/iio/accel/st_accel.ko] undefined!
ERROR: "st_sensors_init_sensor" [drivers/iio/accel/st_accel.ko] undefined!
ERROR: "__iio_device_register" [drivers/iio/accel/st_accel.ko] undefined!
ERROR: "devm_kmemdup" [drivers/iio/accel/st_accel.ko] undefined!
ERROR: "iio_show_mount_matrix" [drivers/iio/accel/st_accel.ko] undefined!
ERROR: "_dev_info" [drivers/iio/accel/st_accel.ko] undefined!
ERROR: "st_sensors_debugfs_reg_access" [drivers/iio/accel/st_accel.ko] undefined!
ERROR: "st_sensors_get_settings_index" [drivers/iio/accel/st_accel.ko] undefined!
ERROR: "iio_triggered_buffer_predisable" [drivers/iio/accel/st_accel.ko] undefined!
ERROR: "st_sensors_set_odr" [drivers/iio/accel/st_accel.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/accel/st_accel.ko] undefined!
ERROR: "kfree" [drivers/iio/accel/st_accel.ko] undefined!
ERROR: "st_sensors_sysfs_scale_avail" [drivers/iio/accel/st_accel.ko] undefined!
ERROR: "st_sensors_verify_id" [drivers/iio/accel/st_accel.ko] undefined!
ERROR: "devm_kmalloc" [drivers/iio/accel/st_accel.ko] undefined!
ERROR: "st_sensors_set_axis_enable" [drivers/iio/accel/st_accel.ko] undefined!
ERROR: "st_sensors_read_info_raw" [drivers/iio/accel/st_accel.ko] undefined!
ERROR: "iio_triggered_buffer_setup" [drivers/iio/accel/st_accel.ko] undefined!
ERROR: "is_acpi_device_node" [drivers/iio/accel/st_accel.ko] undefined!
ERROR: "iio_enum_available_read" [drivers/iio/accel/mma9553.ko] undefined!
ERROR: "iio_enum_write" [drivers/iio/accel/mma9553.ko] undefined!
ERROR: "iio_enum_read" [drivers/iio/accel/mma9553.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/accel/mma9553.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/accel/mma9553.ko] undefined!
ERROR: "acpi_match_device" [drivers/iio/accel/mma9553.ko] undefined!
ERROR: "is_acpi_device_node" [drivers/iio/accel/mma9553.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/iio/accel/mma9553.ko] undefined!
ERROR: "mma9551_write_config_words" [drivers/iio/accel/mma9553.ko] undefined!
ERROR: "mma9551_app_reset" [drivers/iio/accel/mma9553.ko] undefined!
ERROR: "mma9551_read_config_words" [drivers/iio/accel/mma9553.ko] undefined!
ERROR: "__iio_device_register" [drivers/iio/accel/mma9553.ko] undefined!
ERROR: "__pm_runtime_use_autosuspend" [drivers/iio/accel/mma9553.ko] undefined!
ERROR: "pm_runtime_set_autosuspend_delay" [drivers/iio/accel/mma9553.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/iio/accel/mma9553.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/iio/accel/mma9553.ko] undefined!
ERROR: "mma9551_read_version" [drivers/iio/accel/mma9553.ko] undefined!
ERROR: "__mutex_init" [drivers/iio/accel/mma9553.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/accel/mma9553.ko] undefined!
ERROR: "mma9551_read_accel_scale" [drivers/iio/accel/mma9553.ko] undefined!
ERROR: "mma9551_read_accel_chan" [drivers/iio/accel/mma9553.ko] undefined!
ERROR: "mma9551_read_status_word" [drivers/iio/accel/mma9553.ko] undefined!
ERROR: "mma9551_gpio_config" [drivers/iio/accel/mma9553.ko] undefined!
ERROR: "mma9551_set_power_state" [drivers/iio/accel/mma9553.ko] undefined!
ERROR: "mma9551_read_config_word" [drivers/iio/accel/mma9553.ko] undefined!
ERROR: "mma9551_write_config_word" [drivers/iio/accel/mma9553.ko] undefined!
ERROR: "iio_get_time_ns" [drivers/iio/accel/mma9553.ko] undefined!
ERROR: "iio_push_event" [drivers/iio/accel/mma9553.ko] undefined!
ERROR: "mma9551_read_status_words" [drivers/iio/accel/mma9553.ko] undefined!
ERROR: "__pm_runtime_set_status" [drivers/iio/accel/mma9553.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/iio/accel/mma9553.ko] undefined!
ERROR: "iio_device_unregister" [drivers/iio/accel/mma9553.ko] undefined!
ERROR: "_dev_err" [drivers/iio/accel/mma9553.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/accel/mma9553.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/accel/mma9553.ko] undefined!
ERROR: "mma9551_sleep" [drivers/iio/accel/mma9553.ko] undefined!
ERROR: "mma9551_set_device_state" [drivers/iio/accel/mma9553.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/accel/mma9551.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/accel/mma9551.ko] undefined!
ERROR: "acpi_match_device" [drivers/iio/accel/mma9551.ko] undefined!
ERROR: "is_acpi_device_node" [drivers/iio/accel/mma9551.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/iio/accel/mma9551.ko] undefined!
ERROR: "desc_to_gpio" [drivers/iio/accel/mma9551.ko] undefined!
ERROR: "__iio_device_register" [drivers/iio/accel/mma9551.ko] undefined!
ERROR: "__pm_runtime_use_autosuspend" [drivers/iio/accel/mma9551.ko] undefined!
ERROR: "pm_runtime_set_autosuspend_delay" [drivers/iio/accel/mma9551.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/iio/accel/mma9551.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/iio/accel/mma9551.ko] undefined!
ERROR: "gpiod_to_irq" [drivers/iio/accel/mma9551.ko] undefined!
ERROR: "devm_gpiod_get_index" [drivers/iio/accel/mma9551.ko] undefined!
ERROR: "__mutex_init" [drivers/iio/accel/mma9551.ko] undefined!
ERROR: "mma9551_read_version" [drivers/iio/accel/mma9551.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/accel/mma9551.ko] undefined!
ERROR: "mma9551_read_accel_scale" [drivers/iio/accel/mma9551.ko] undefined!
ERROR: "mma9551_read_accel_chan" [drivers/iio/accel/mma9551.ko] undefined!
ERROR: "iio_push_event" [drivers/iio/accel/mma9551.ko] undefined!
ERROR: "iio_get_time_ns" [drivers/iio/accel/mma9551.ko] undefined!
ERROR: "mma9551_read_status_byte" [drivers/iio/accel/mma9551.ko] undefined!
ERROR: "_dev_warn" [drivers/iio/accel/mma9551.ko] undefined!
ERROR: "mma9551_gpio_config" [drivers/iio/accel/mma9551.ko] undefined!
ERROR: "mma9551_set_power_state" [drivers/iio/accel/mma9551.ko] undefined!
ERROR: "mma9551_read_config_byte" [drivers/iio/accel/mma9551.ko] undefined!
ERROR: "mma9551_update_config_bits" [drivers/iio/accel/mma9551.ko] undefined!
ERROR: "__pm_runtime_set_status" [drivers/iio/accel/mma9551.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/iio/accel/mma9551.ko] undefined!
ERROR: "iio_device_unregister" [drivers/iio/accel/mma9551.ko] undefined!
ERROR: "_dev_err" [drivers/iio/accel/mma9551.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/accel/mma9551.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/accel/mma9551.ko] undefined!
ERROR: "mma9551_sleep" [drivers/iio/accel/mma9551.ko] undefined!
ERROR: "mma9551_set_device_state" [drivers/iio/accel/mma9551.ko] undefined!
ERROR: "msleep_interruptible" [drivers/iio/accel/mma9551_core.ko] undefined!
ERROR: "usleep_range" [drivers/iio/accel/mma9551_core.ko] undefined!
ERROR: "__pm_runtime_suspend" [drivers/iio/accel/mma9551_core.ko] undefined!
ERROR: "ktime_get_mono_fast_ns" [drivers/iio/accel/mma9551_core.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/iio/accel/mma9551_core.ko] undefined!
ERROR: "_dev_info" [drivers/iio/accel/mma9551_core.ko] undefined!
ERROR: "_dev_err" [drivers/iio/accel/mma9551_core.ko] undefined!
ERROR: "__const_udelay" [drivers/iio/accel/mma9551_core.ko] undefined!
ERROR: "i2c_transfer" [drivers/iio/accel/mma9551_core.ko] undefined!
ERROR: "iio_read_const_attr" [drivers/iio/accel/mma8452.ko] undefined!
ERROR: "iio_trigger_validate_own_device" [drivers/iio/accel/mma8452.ko] undefined!
ERROR: "pm_runtime_force_resume" [drivers/iio/accel/mma8452.ko] undefined!
ERROR: "pm_runtime_force_suspend" [drivers/iio/accel/mma8452.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/accel/mma8452.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/accel/mma8452.ko] undefined!
ERROR: "__iio_device_register" [drivers/iio/accel/mma8452.ko] undefined!
ERROR: "__pm_runtime_use_autosuspend" [drivers/iio/accel/mma8452.ko] undefined!
ERROR: "pm_runtime_set_autosuspend_delay" [drivers/iio/accel/mma8452.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/iio/accel/mma8452.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/iio/accel/mma8452.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/iio/accel/mma8452.ko] undefined!
ERROR: "iio_triggered_buffer_setup" [drivers/iio/accel/mma8452.ko] undefined!
ERROR: "__iio_trigger_register" [drivers/iio/accel/mma8452.ko] undefined!
ERROR: "devm_iio_trigger_alloc" [drivers/iio/accel/mma8452.ko] undefined!
ERROR: "of_irq_get_byname" [drivers/iio/accel/mma8452.ko] undefined!
ERROR: "_dev_info" [drivers/iio/accel/mma8452.ko] undefined!
ERROR: "devm_regulator_get" [drivers/iio/accel/mma8452.ko] undefined!
ERROR: "__mutex_init" [drivers/iio/accel/mma8452.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/accel/mma8452.ko] undefined!
ERROR: "of_match_device" [drivers/iio/accel/mma8452.ko] undefined!
ERROR: "scnprintf" [drivers/iio/accel/mma8452.ko] undefined!
ERROR: "iio_device_release_direct_mode" [drivers/iio/accel/mma8452.ko] undefined!
ERROR: "iio_device_claim_direct_mode" [drivers/iio/accel/mma8452.ko] undefined!
ERROR: "iio_trigger_notify_done" [drivers/iio/accel/mma8452.ko] undefined!
ERROR: "iio_push_to_buffers" [drivers/iio/accel/mma8452.ko] undefined!
ERROR: "i2c_smbus_read_i2c_block_data" [drivers/iio/accel/mma8452.ko] undefined!
ERROR: "msleep" [drivers/iio/accel/mma8452.ko] undefined!
ERROR: "__pm_runtime_suspend" [drivers/iio/accel/mma8452.ko] undefined!
ERROR: "ktime_get_mono_fast_ns" [drivers/iio/accel/mma8452.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/iio/accel/mma8452.ko] undefined!
ERROR: "iio_trigger_poll_chained" [drivers/iio/accel/mma8452.ko] undefined!
ERROR: "iio_push_event" [drivers/iio/accel/mma8452.ko] undefined!
ERROR: "iio_get_time_ns" [drivers/iio/accel/mma8452.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/iio/accel/mma8452.ko] undefined!
ERROR: "iio_trigger_unregister" [drivers/iio/accel/mma8452.ko] undefined!
ERROR: "iio_triggered_buffer_cleanup" [drivers/iio/accel/mma8452.ko] undefined!
ERROR: "__pm_runtime_set_status" [drivers/iio/accel/mma8452.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/iio/accel/mma8452.ko] undefined!
ERROR: "iio_device_unregister" [drivers/iio/accel/mma8452.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/accel/mma8452.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/accel/mma8452.ko] undefined!
ERROR: "_dev_err" [drivers/iio/accel/mma8452.ko] undefined!
ERROR: "regulator_disable" [drivers/iio/accel/mma8452.ko] undefined!
ERROR: "usleep_range" [drivers/iio/accel/mma8452.ko] undefined!
ERROR: "msleep_interruptible" [drivers/iio/accel/mma8452.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/iio/accel/mma8452.ko] undefined!
ERROR: "regulator_enable" [drivers/iio/accel/mma8452.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/accel/dmard09.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/accel/dmard09.ko] undefined!
ERROR: "i2c_smbus_read_i2c_block_data" [drivers/iio/accel/dmard09.ko] undefined!
ERROR: "_dev_err" [drivers/iio/accel/dmard09.ko] undefined!
ERROR: "__devm_iio_device_register" [drivers/iio/accel/dmard09.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/iio/accel/dmard09.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/accel/dmard09.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/accel/dmard06.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/accel/dmard06.ko] undefined!
ERROR: "__devm_iio_device_register" [drivers/iio/accel/dmard06.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/accel/dmard06.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/iio/accel/dmard06.ko] undefined!
ERROR: "_dev_err" [drivers/iio/accel/dmard06.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/iio/accel/dmard06.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/iio/accel/dmard06.ko] undefined!
ERROR: "bmc150_accel_pm_ops" [drivers/iio/accel/bmc150-accel-i2c.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/accel/bmc150-accel-i2c.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/accel/bmc150-accel-i2c.ko] undefined!
ERROR: "_dev_err" [drivers/iio/accel/bmc150-accel-i2c.ko] undefined!
ERROR: "bmc150_accel_core_probe" [drivers/iio/accel/bmc150-accel-i2c.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/iio/accel/bmc150-accel-i2c.ko] undefined!
ERROR: "bmc150_regmap_conf" [drivers/iio/accel/bmc150-accel-i2c.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/iio/accel/bmc150-accel-i2c.ko] undefined!
ERROR: "bmc150_accel_core_remove" [drivers/iio/accel/bmc150-accel-i2c.ko] undefined!
ERROR: "iio_show_mount_matrix" [drivers/iio/accel/bmc150-accel-core.ko] undefined!
ERROR: "iio_read_const_attr" [drivers/iio/accel/bmc150-accel-core.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/iio/accel/bmc150-accel-core.ko] undefined!
ERROR: "iio_device_unregister" [drivers/iio/accel/bmc150-accel-core.ko] undefined!
ERROR: "iio_buffer_set_attrs" [drivers/iio/accel/bmc150-accel-core.ko] undefined!
ERROR: "iio_triggered_buffer_cleanup" [drivers/iio/accel/bmc150-accel-core.ko] undefined!
ERROR: "iio_trigger_unregister" [drivers/iio/accel/bmc150-accel-core.ko] undefined!
ERROR: "__iio_device_register" [drivers/iio/accel/bmc150-accel-core.ko] undefined!
ERROR: "__pm_runtime_use_autosuspend" [drivers/iio/accel/bmc150-accel-core.ko] undefined!
ERROR: "pm_runtime_set_autosuspend_delay" [drivers/iio/accel/bmc150-accel-core.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/iio/accel/bmc150-accel-core.ko] undefined!
ERROR: "__pm_runtime_set_status" [drivers/iio/accel/bmc150-accel-core.ko] undefined!
ERROR: "__iio_trigger_register" [drivers/iio/accel/bmc150-accel-core.ko] undefined!
ERROR: "devm_iio_trigger_alloc" [drivers/iio/accel/bmc150-accel-core.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/iio/accel/bmc150-accel-core.ko] undefined!
ERROR: "iio_triggered_buffer_setup" [drivers/iio/accel/bmc150-accel-core.ko] undefined!
ERROR: "iio_pollfunc_store_time" [drivers/iio/accel/bmc150-accel-core.ko] undefined!
ERROR: "__mutex_init" [drivers/iio/accel/bmc150-accel-core.ko] undefined!
ERROR: "iio_read_mount_matrix" [drivers/iio/accel/bmc150-accel-core.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/accel/bmc150-accel-core.ko] undefined!
ERROR: "iio_triggered_buffer_predisable" [drivers/iio/accel/bmc150-accel-core.ko] undefined!
ERROR: "iio_push_event" [drivers/iio/accel/bmc150-accel-core.ko] undefined!
ERROR: "find_next_bit" [drivers/iio/accel/bmc150-accel-core.ko] undefined!
ERROR: "find_first_bit" [drivers/iio/accel/bmc150-accel-core.ko] undefined!
ERROR: "regmap_raw_read" [drivers/iio/accel/bmc150-accel-core.ko] undefined!
ERROR: "msleep_interruptible" [drivers/iio/accel/bmc150-accel-core.ko] undefined!
ERROR: "usleep_range" [drivers/iio/accel/bmc150-accel-core.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/iio/accel/bmc150-accel-core.ko] undefined!
ERROR: "iio_trigger_notify_done" [drivers/iio/accel/bmc150-accel-core.ko] undefined!
ERROR: "iio_push_to_buffers" [drivers/iio/accel/bmc150-accel-core.ko] undefined!
ERROR: "iio_triggered_buffer_postenable" [drivers/iio/accel/bmc150-accel-core.ko] undefined!
ERROR: "iio_trigger_poll" [drivers/iio/accel/bmc150-accel-core.ko] undefined!
ERROR: "iio_get_time_ns" [drivers/iio/accel/bmc150-accel-core.ko] undefined!
ERROR: "regmap_bulk_read" [drivers/iio/accel/bmc150-accel-core.ko] undefined!
ERROR: "regmap_read" [drivers/iio/accel/bmc150-accel-core.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/iio/accel/bmc150-accel-core.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/iio/accel/bmc150-accel-core.ko] undefined!
ERROR: "__pm_runtime_suspend" [drivers/iio/accel/bmc150-accel-core.ko] undefined!
ERROR: "ktime_get_mono_fast_ns" [drivers/iio/accel/bmc150-accel-core.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/iio/accel/bmc150-accel-core.ko] undefined!
ERROR: "_dev_err" [drivers/iio/accel/bmc150-accel-core.ko] undefined!
ERROR: "regmap_get_device" [drivers/iio/accel/bmc150-accel-core.ko] undefined!
ERROR: "sprintf" [drivers/iio/accel/bmc150-accel-core.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/accel/bmc150-accel-core.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/accel/bmc150-accel-core.ko] undefined!
ERROR: "regmap_write" [drivers/iio/accel/bmc150-accel-core.ko] undefined!
ERROR: "i2c_del_driver" [drivers/iio/accel/bma400_i2c.ko] undefined!
ERROR: "i2c_register_driver" [drivers/iio/accel/bma400_i2c.ko] undefined!
ERROR: "_dev_err" [drivers/iio/accel/bma400_i2c.ko] undefined!
ERROR: "bma400_probe" [drivers/iio/accel/bma400_i2c.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/iio/accel/bma400_i2c.ko] undefined!
ERROR: "bma400_regmap_config" [drivers/iio/accel/bma400_i2c.ko] undefined!
ERROR: "bma400_remove" [drivers/iio/accel/bma400_i2c.ko] undefined!
ERROR: "iio_show_mount_matrix" [drivers/iio/accel/bma400_core.ko] undefined!
ERROR: "iio_device_unregister" [drivers/iio/accel/bma400_core.ko] undefined!
ERROR: "__iio_device_register" [drivers/iio/accel/bma400_core.ko] undefined!
ERROR: "__mutex_init" [drivers/iio/accel/bma400_core.ko] undefined!
ERROR: "iio_read_mount_matrix" [drivers/iio/accel/bma400_core.ko] undefined!
ERROR: "regulator_bulk_disable" [drivers/iio/accel/bma400_core.ko] undefined!
ERROR: "usleep_range" [drivers/iio/accel/bma400_core.ko] undefined!
ERROR: "regulator_bulk_enable" [drivers/iio/accel/bma400_core.ko] undefined!
ERROR: "devm_regulator_bulk_get" [drivers/iio/accel/bma400_core.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/iio/accel/bma400_core.ko] undefined!
ERROR: "regmap_bulk_read" [drivers/iio/accel/bma400_core.ko] undefined!
ERROR: "_dev_err" [drivers/iio/accel/bma400_core.ko] undefined!
ERROR: "mutex_unlock" [drivers/iio/accel/bma400_core.ko] undefined!
ERROR: "regmap_write" [drivers/iio/accel/bma400_core.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/iio/accel/bma400_core.ko] undefined!
ERROR: "regmap_read" [drivers/iio/accel/bma400_core.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/extcon/extcon-usbc-cros-ec.ko] undefined!
ERROR: "__platform_driver_register" [drivers/extcon/extcon-usbc-cros-ec.ko] undefined!
ERROR: "blocking_notifier_chain_register" [drivers/extcon/extcon-usbc-cros-ec.ko] undefined!
ERROR: "extcon_set_property_capability" [drivers/extcon/extcon-usbc-cros-ec.ko] undefined!
ERROR: "devm_extcon_dev_register" [drivers/extcon/extcon-usbc-cros-ec.ko] undefined!
ERROR: "devm_extcon_dev_allocate" [drivers/extcon/extcon-usbc-cros-ec.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/extcon/extcon-usbc-cros-ec.ko] undefined!
ERROR: "devm_kmalloc" [drivers/extcon/extcon-usbc-cros-ec.ko] undefined!
ERROR: "cros_ec_get_host_event" [drivers/extcon/extcon-usbc-cros-ec.ko] undefined!
ERROR: "_dev_err" [drivers/extcon/extcon-usbc-cros-ec.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/extcon/extcon-usbc-cros-ec.ko] undefined!
ERROR: "extcon_sync" [drivers/extcon/extcon-usbc-cros-ec.ko] undefined!
ERROR: "extcon_set_property" [drivers/extcon/extcon-usbc-cros-ec.ko] undefined!
ERROR: "extcon_set_state" [drivers/extcon/extcon-usbc-cros-ec.ko] undefined!
ERROR: "kfree" [drivers/extcon/extcon-usbc-cros-ec.ko] undefined!
ERROR: "cros_ec_cmd_xfer_status" [drivers/extcon/extcon-usbc-cros-ec.ko] undefined!
ERROR: "__kmalloc" [drivers/extcon/extcon-usbc-cros-ec.ko] undefined!
ERROR: "blocking_notifier_chain_unregister" [drivers/extcon/extcon-usbc-cros-ec.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/extcon/extcon-max77693.ko] undefined!
ERROR: "__platform_driver_register" [drivers/extcon/extcon-max77693.ko] undefined!
ERROR: "mutex_unlock" [drivers/extcon/extcon-max77693.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/extcon/extcon-max77693.ko] undefined!
ERROR: "input_event" [drivers/extcon/extcon-max77693.ko] undefined!
ERROR: "_dev_warn" [drivers/extcon/extcon-max77693.ko] undefined!
ERROR: "queue_delayed_work_on" [drivers/extcon/extcon-max77693.ko] undefined!
ERROR: "system_power_efficient_wq" [drivers/extcon/extcon-max77693.ko] undefined!
ERROR: "init_timer_key" [drivers/extcon/extcon-max77693.ko] undefined!
ERROR: "delayed_work_timer_fn" [drivers/extcon/extcon-max77693.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/extcon/extcon-max77693.ko] undefined!
ERROR: "regmap_read" [drivers/extcon/extcon-max77693.ko] undefined!
ERROR: "regmap_bulk_read" [drivers/extcon/extcon-max77693.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/extcon/extcon-max77693.ko] undefined!
ERROR: "__msecs_to_jiffies" [drivers/extcon/extcon-max77693.ko] undefined!
ERROR: "regmap_write" [drivers/extcon/extcon-max77693.ko] undefined!
ERROR: "devm_extcon_dev_register" [drivers/extcon/extcon-max77693.ko] undefined!
ERROR: "devm_extcon_dev_allocate" [drivers/extcon/extcon-max77693.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/extcon/extcon-max77693.ko] undefined!
ERROR: "regmap_irq_get_virq" [drivers/extcon/extcon-max77693.ko] undefined!
ERROR: "lockdep_init_map" [drivers/extcon/extcon-max77693.ko] undefined!
ERROR: "__mutex_init" [drivers/extcon/extcon-max77693.ko] undefined!
ERROR: "input_register_device" [drivers/extcon/extcon-max77693.ko] undefined!
ERROR: "input_set_capability" [drivers/extcon/extcon-max77693.ko] undefined!
ERROR: "devm_input_allocate_device" [drivers/extcon/extcon-max77693.ko] undefined!
ERROR: "devm_kmalloc" [drivers/extcon/extcon-max77693.ko] undefined!
ERROR: "extcon_set_state_sync" [drivers/extcon/extcon-max77693.ko] undefined!
ERROR: "_dev_err" [drivers/extcon/extcon-max77693.ko] undefined!
ERROR: "_dev_info" [drivers/extcon/extcon-max77693.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/extcon/extcon-max77693.ko] undefined!
ERROR: "queue_work_on" [drivers/extcon/extcon-max77693.ko] undefined!
ERROR: "system_wq" [drivers/extcon/extcon-max77693.ko] undefined!
ERROR: "input_unregister_device" [drivers/extcon/extcon-max77693.ko] undefined!
ERROR: "cancel_work_sync" [drivers/extcon/extcon-max77693.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/extcon/extcon-intel-int3496.ko] undefined!
ERROR: "__platform_driver_register" [drivers/extcon/extcon-intel-int3496.ko] undefined!
ERROR: "_dev_info" [drivers/extcon/extcon-intel-int3496.ko] undefined!
ERROR: "_dev_err" [drivers/extcon/extcon-intel-int3496.ko] undefined!
ERROR: "flush_delayed_work" [drivers/extcon/extcon-intel-int3496.ko] undefined!
ERROR: "queue_delayed_work_on" [drivers/extcon/extcon-intel-int3496.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/extcon/extcon-intel-int3496.ko] undefined!
ERROR: "devm_extcon_dev_register" [drivers/extcon/extcon-intel-int3496.ko] undefined!
ERROR: "devm_extcon_dev_allocate" [drivers/extcon/extcon-intel-int3496.ko] undefined!
ERROR: "gpiod_to_irq" [drivers/extcon/extcon-intel-int3496.ko] undefined!
ERROR: "devm_gpiod_get" [drivers/extcon/extcon-intel-int3496.ko] undefined!
ERROR: "init_timer_key" [drivers/extcon/extcon-intel-int3496.ko] undefined!
ERROR: "delayed_work_timer_fn" [drivers/extcon/extcon-intel-int3496.ko] undefined!
ERROR: "lockdep_init_map" [drivers/extcon/extcon-intel-int3496.ko] undefined!
ERROR: "devm_kmalloc" [drivers/extcon/extcon-intel-int3496.ko] undefined!
ERROR: "devm_acpi_dev_add_driver_gpios" [drivers/extcon/extcon-intel-int3496.ko] undefined!
ERROR: "gpiod_direction_output" [drivers/extcon/extcon-intel-int3496.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/extcon/extcon-intel-int3496.ko] undefined!
ERROR: "extcon_set_state_sync" [drivers/extcon/extcon-intel-int3496.ko] undefined!
ERROR: "gpiod_get_value_cansleep" [drivers/extcon/extcon-intel-int3496.ko] undefined!
ERROR: "mod_delayed_work_on" [drivers/extcon/extcon-intel-int3496.ko] undefined!
ERROR: "system_wq" [drivers/extcon/extcon-intel-int3496.ko] undefined!
ERROR: "cancel_delayed_work_sync" [drivers/extcon/extcon-intel-int3496.ko] undefined!
ERROR: "devm_free_irq" [drivers/extcon/extcon-intel-int3496.ko] undefined!
ERROR: "i2c_del_driver" [drivers/extcon/extcon-fsa9480.ko] undefined!
ERROR: "i2c_register_driver" [drivers/extcon/extcon-fsa9480.ko] undefined!
ERROR: "regmap_bulk_read" [drivers/extcon/extcon-fsa9480.ko] undefined!
ERROR: "device_init_wakeup" [drivers/extcon/extcon-fsa9480.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/extcon/extcon-fsa9480.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/extcon/extcon-fsa9480.ko] undefined!
ERROR: "devm_extcon_dev_register" [drivers/extcon/extcon-fsa9480.ko] undefined!
ERROR: "devm_extcon_dev_allocate" [drivers/extcon/extcon-fsa9480.ko] undefined!
ERROR: "devm_kmalloc" [drivers/extcon/extcon-fsa9480.ko] undefined!
ERROR: "_dev_info" [drivers/extcon/extcon-fsa9480.ko] undefined!
ERROR: "regmap_read" [drivers/extcon/extcon-fsa9480.ko] undefined!
ERROR: "_dev_err" [drivers/extcon/extcon-fsa9480.ko] undefined!
ERROR: "regmap_write" [drivers/extcon/extcon-fsa9480.ko] undefined!
ERROR: "extcon_set_state_sync" [drivers/extcon/extcon-fsa9480.ko] undefined!
ERROR: "irq_set_irq_wake" [drivers/extcon/extcon-fsa9480.ko] undefined!
ERROR: "printk" [drivers/devfreq/governor_powersave.ko] undefined!
ERROR: "devfreq_remove_governor" [drivers/devfreq/governor_powersave.ko] undefined!
ERROR: "devfreq_add_governor" [drivers/devfreq/governor_powersave.ko] undefined!
ERROR: "mutex_unlock" [drivers/devfreq/governor_powersave.ko] undefined!
ERROR: "update_devfreq" [drivers/devfreq/governor_powersave.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/devfreq/governor_powersave.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/devfreq/event/rockchip-dfi.ko] undefined!
ERROR: "__platform_driver_register" [drivers/devfreq/event/rockchip-dfi.ko] undefined!
ERROR: "devm_devfreq_event_add_edev" [drivers/devfreq/event/rockchip-dfi.ko] undefined!
ERROR: "of_node_put" [drivers/devfreq/event/rockchip-dfi.ko] undefined!
ERROR: "syscon_node_to_regmap" [drivers/devfreq/event/rockchip-dfi.ko] undefined!
ERROR: "of_parse_phandle" [drivers/devfreq/event/rockchip-dfi.ko] undefined!
ERROR: "devm_clk_get" [drivers/devfreq/event/rockchip-dfi.ko] undefined!
ERROR: "devm_platform_ioremap_resource" [drivers/devfreq/event/rockchip-dfi.ko] undefined!
ERROR: "devm_kmalloc" [drivers/devfreq/event/rockchip-dfi.ko] undefined!
ERROR: "clk_enable" [drivers/devfreq/event/rockchip-dfi.ko] undefined!
ERROR: "_dev_err" [drivers/devfreq/event/rockchip-dfi.ko] undefined!
ERROR: "clk_prepare" [drivers/devfreq/event/rockchip-dfi.ko] undefined!
ERROR: "clk_unprepare" [drivers/devfreq/event/rockchip-dfi.ko] undefined!
ERROR: "clk_disable" [drivers/devfreq/event/rockchip-dfi.ko] undefined!
ERROR: "regmap_read" [drivers/devfreq/event/rockchip-dfi.ko] undefined!
ERROR: "_dev_warn" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "mbox_free_channel" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "device_for_each_child" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "disable_irq" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "of_irq_get" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "mbox_request_channel" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "devm_kmalloc" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "queue_work_on" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "system_wq" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "__list_add_valid" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "of_find_property" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "printk" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "rpmsg_unregister_device" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "rpmsg_register_device" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "of_property_read_string" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "of_get_next_available_child" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "strncpy" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "complete" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "idr_alloc" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "__warn_printk" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "__kmalloc" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "strcmp" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "lockdep_init_map" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "kstrdup" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "__mutex_init" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "kmalloc_caches" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "refcount_warn_saturate" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "strcpy" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "idr_alloc_cyclic" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "strlen" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "device_unregister" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "mutex_unlock" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "wait_for_completion_timeout" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "idr_destroy" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "idr_get_next" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "cancel_work_sync" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "mbox_client_txdone" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "mbox_send_message" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "usleep_range" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "_dev_err" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "idr_remove" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "idr_find" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "kfree" [drivers/rpmsg/qcom_glink_native.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/rpmsg/qcom_glink_rpm.ko] undefined!
ERROR: "__platform_driver_register" [drivers/rpmsg/qcom_glink_rpm.ko] undefined!
ERROR: "__warn_printk" [drivers/rpmsg/qcom_glink_rpm.ko] undefined!
ERROR: "__iowrite32_copy" [drivers/rpmsg/qcom_glink_rpm.ko] undefined!
ERROR: "_dev_err" [drivers/rpmsg/qcom_glink_rpm.ko] undefined!
ERROR: "qcom_glink_native_probe" [drivers/rpmsg/qcom_glink_rpm.ko] undefined!
ERROR: "kfree" [drivers/rpmsg/qcom_glink_rpm.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/rpmsg/qcom_glink_rpm.ko] undefined!
ERROR: "kmalloc_caches" [drivers/rpmsg/qcom_glink_rpm.ko] undefined!
ERROR: "devm_ioremap" [drivers/rpmsg/qcom_glink_rpm.ko] undefined!
ERROR: "of_node_put" [drivers/rpmsg/qcom_glink_rpm.ko] undefined!
ERROR: "of_address_to_resource" [drivers/rpmsg/qcom_glink_rpm.ko] undefined!
ERROR: "of_parse_phandle" [drivers/rpmsg/qcom_glink_rpm.ko] undefined!
ERROR: "devm_kmalloc" [drivers/rpmsg/qcom_glink_rpm.ko] undefined!
ERROR: "__ioread32_copy" [drivers/rpmsg/qcom_glink_rpm.ko] undefined!
ERROR: "qcom_glink_native_remove" [drivers/rpmsg/qcom_glink_rpm.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/mailbox/mtk-cmdq-mailbox.ko] undefined!
ERROR: "__platform_driver_register" [drivers/mailbox/mtk-cmdq-mailbox.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/mailbox/mtk-cmdq-mailbox.ko] undefined!
ERROR: "devm_mbox_controller_register" [drivers/mailbox/mtk-cmdq-mailbox.ko] undefined!
ERROR: "devm_clk_get" [drivers/mailbox/mtk-cmdq-mailbox.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/mailbox/mtk-cmdq-mailbox.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/mailbox/mtk-cmdq-mailbox.ko] undefined!
ERROR: "platform_get_irq" [drivers/mailbox/mtk-cmdq-mailbox.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/mailbox/mtk-cmdq-mailbox.ko] undefined!
ERROR: "platform_get_resource" [drivers/mailbox/mtk-cmdq-mailbox.ko] undefined!
ERROR: "devm_kmalloc" [drivers/mailbox/mtk-cmdq-mailbox.ko] undefined!
ERROR: "clk_enable" [drivers/mailbox/mtk-cmdq-mailbox.ko] undefined!
ERROR: "__list_add_valid" [drivers/mailbox/mtk-cmdq-mailbox.ko] undefined!
ERROR: "__const_udelay" [drivers/mailbox/mtk-cmdq-mailbox.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/mailbox/mtk-cmdq-mailbox.ko] undefined!
ERROR: "kmalloc_caches" [drivers/mailbox/mtk-cmdq-mailbox.ko] undefined!
ERROR: "clk_disable" [drivers/mailbox/mtk-cmdq-mailbox.ko] undefined!
ERROR: "kfree" [drivers/mailbox/mtk-cmdq-mailbox.ko] undefined!
ERROR: "find_next_zero_bit" [drivers/mailbox/mtk-cmdq-mailbox.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/mailbox/mtk-cmdq-mailbox.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/mailbox/mtk-cmdq-mailbox.ko] undefined!
ERROR: "find_first_zero_bit" [drivers/mailbox/mtk-cmdq-mailbox.ko] undefined!
ERROR: "_dev_err" [drivers/mailbox/mtk-cmdq-mailbox.ko] undefined!
ERROR: "ktime_get" [drivers/mailbox/mtk-cmdq-mailbox.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/mailbox/mtk-cmdq-mailbox.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/mailbox/mtk-cmdq-mailbox.ko] undefined!
ERROR: "_dev_warn" [drivers/mailbox/mtk-cmdq-mailbox.ko] undefined!
ERROR: "clk_unprepare" [drivers/mailbox/mtk-cmdq-mailbox.ko] undefined!
ERROR: "clk_prepare" [drivers/mailbox/mtk-cmdq-mailbox.ko] undefined!
ERROR: "dma_ops" [drivers/mailbox/mtk-cmdq-mailbox.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/mailbox/mtk-cmdq-mailbox.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/mailbox/mtk-cmdq-mailbox.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/mailbox/hi6220-mailbox.ko] undefined!
ERROR: "__platform_driver_register" [drivers/mailbox/hi6220-mailbox.ko] undefined!
ERROR: "_dev_info" [drivers/mailbox/hi6220-mailbox.ko] undefined!
ERROR: "devm_mbox_controller_register" [drivers/mailbox/hi6220-mailbox.ko] undefined!
ERROR: "of_find_property" [drivers/mailbox/hi6220-mailbox.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/mailbox/hi6220-mailbox.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/mailbox/hi6220-mailbox.ko] undefined!
ERROR: "platform_get_resource" [drivers/mailbox/hi6220-mailbox.ko] undefined!
ERROR: "platform_get_irq" [drivers/mailbox/hi6220-mailbox.ko] undefined!
ERROR: "devm_kmalloc" [drivers/mailbox/hi6220-mailbox.ko] undefined!
ERROR: "_dev_warn" [drivers/mailbox/hi6220-mailbox.ko] undefined!
ERROR: "mbox_chan_txdone" [drivers/mailbox/hi6220-mailbox.ko] undefined!
ERROR: "mbox_chan_received_data" [drivers/mailbox/hi6220-mailbox.ko] undefined!
ERROR: "_dev_err" [drivers/mailbox/hi6220-mailbox.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/mailbox/hi3660-mailbox.ko] undefined!
ERROR: "__platform_driver_register" [drivers/mailbox/hi3660-mailbox.ko] undefined!
ERROR: "_dev_info" [drivers/mailbox/hi3660-mailbox.ko] undefined!
ERROR: "devm_mbox_controller_register" [drivers/mailbox/hi3660-mailbox.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/mailbox/hi3660-mailbox.ko] undefined!
ERROR: "platform_get_resource" [drivers/mailbox/hi3660-mailbox.ko] undefined!
ERROR: "devm_kmalloc" [drivers/mailbox/hi3660-mailbox.ko] undefined!
ERROR: "ktime_get" [drivers/mailbox/hi3660-mailbox.ko] undefined!
ERROR: "__const_udelay" [drivers/mailbox/hi3660-mailbox.ko] undefined!
ERROR: "_dev_err" [drivers/mailbox/hi3660-mailbox.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/mailbox/mailbox-altera.ko] undefined!
ERROR: "__platform_driver_register" [drivers/mailbox/mailbox-altera.ko] undefined!
ERROR: "devm_mbox_controller_register" [drivers/mailbox/mailbox-altera.ko] undefined!
ERROR: "platform_get_irq" [drivers/mailbox/mailbox-altera.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/mailbox/mailbox-altera.ko] undefined!
ERROR: "platform_get_resource" [drivers/mailbox/mailbox-altera.ko] undefined!
ERROR: "devm_kmalloc" [drivers/mailbox/mailbox-altera.ko] undefined!
ERROR: "_dev_warn" [drivers/mailbox/mailbox-altera.ko] undefined!
ERROR: "mbox_chan_received_data" [drivers/mailbox/mailbox-altera.ko] undefined!
ERROR: "_dev_err" [drivers/mailbox/mailbox-altera.ko] undefined!
ERROR: "mod_timer" [drivers/mailbox/mailbox-altera.ko] undefined!
ERROR: "jiffies" [drivers/mailbox/mailbox-altera.ko] undefined!
ERROR: "init_timer_key" [drivers/mailbox/mailbox-altera.ko] undefined!
ERROR: "request_threaded_irq" [drivers/mailbox/mailbox-altera.ko] undefined!
ERROR: "mbox_chan_txdone" [drivers/mailbox/mailbox-altera.ko] undefined!
ERROR: "free_irq" [drivers/mailbox/mailbox-altera.ko] undefined!
ERROR: "del_timer" [drivers/mailbox/mailbox-altera.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/mailbox/imx-mailbox.ko] undefined!
ERROR: "__platform_driver_register" [drivers/mailbox/imx-mailbox.ko] undefined!
ERROR: "devm_mbox_controller_register" [drivers/mailbox/imx-mailbox.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/mailbox/imx-mailbox.ko] undefined!
ERROR: "of_find_property" [drivers/mailbox/imx-mailbox.ko] undefined!
ERROR: "snprintf" [drivers/mailbox/imx-mailbox.ko] undefined!
ERROR: "clk_enable" [drivers/mailbox/imx-mailbox.ko] undefined!
ERROR: "clk_prepare" [drivers/mailbox/imx-mailbox.ko] undefined!
ERROR: "devm_clk_get" [drivers/mailbox/imx-mailbox.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/mailbox/imx-mailbox.ko] undefined!
ERROR: "platform_get_irq" [drivers/mailbox/imx-mailbox.ko] undefined!
ERROR: "devm_platform_ioremap_resource" [drivers/mailbox/imx-mailbox.ko] undefined!
ERROR: "devm_kmalloc" [drivers/mailbox/imx-mailbox.ko] undefined!
ERROR: "__tasklet_schedule" [drivers/mailbox/imx-mailbox.ko] undefined!
ERROR: "tasklet_init" [drivers/mailbox/imx-mailbox.ko] undefined!
ERROR: "request_threaded_irq" [drivers/mailbox/imx-mailbox.ko] undefined!
ERROR: "_dev_warn" [drivers/mailbox/imx-mailbox.ko] undefined!
ERROR: "___ratelimit" [drivers/mailbox/imx-mailbox.ko] undefined!
ERROR: "mbox_chan_received_data" [drivers/mailbox/imx-mailbox.ko] undefined!
ERROR: "mbox_chan_txdone" [drivers/mailbox/imx-mailbox.ko] undefined!
ERROR: "tasklet_kill" [drivers/mailbox/imx-mailbox.ko] undefined!
ERROR: "free_irq" [drivers/mailbox/imx-mailbox.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/mailbox/imx-mailbox.ko] undefined!
ERROR: "iowrite32" [drivers/mailbox/imx-mailbox.ko] undefined!
ERROR: "ioread32" [drivers/mailbox/imx-mailbox.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/mailbox/imx-mailbox.ko] undefined!
ERROR: "_dev_err" [drivers/mailbox/imx-mailbox.ko] undefined!
ERROR: "clk_unprepare" [drivers/mailbox/imx-mailbox.ko] undefined!
ERROR: "clk_disable" [drivers/mailbox/imx-mailbox.ko] undefined!
ERROR: "acpi_bus_register_driver" [drivers/platform/chrome/wilco_ec/wilco_ec_events.ko] undefined!
ERROR: "kmalloc_caches" [drivers/platform/chrome/wilco_ec/wilco_ec_events.ko] undefined!
ERROR: "__kmalloc" [drivers/platform/chrome/wilco_ec/wilco_ec_events.ko] undefined!
ERROR: "cdev_init" [drivers/platform/chrome/wilco_ec/wilco_ec_events.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/platform/chrome/wilco_ec/wilco_ec_events.ko] undefined!
ERROR: "param_ops_int" [drivers/platform/chrome/wilco_ec/wilco_ec_events.ko] undefined!
ERROR: "stream_open" [drivers/platform/chrome/wilco_ec/wilco_ec_events.ko] undefined!
ERROR: "no_llseek" [drivers/platform/chrome/wilco_ec/wilco_ec_events.ko] undefined!
ERROR: "kmemdup" [drivers/platform/chrome/wilco_ec/wilco_ec_events.ko] undefined!
ERROR: "acpi_evaluate_object" [drivers/platform/chrome/wilco_ec/wilco_ec_events.ko] undefined!
ERROR: "acpi_bus_unregister_driver" [drivers/platform/chrome/wilco_ec/wilco_ec_events.ko] undefined!
ERROR: "unregister_chrdev_region" [drivers/platform/chrome/wilco_ec/wilco_ec_events.ko] undefined!
ERROR: "__might_sleep" [drivers/platform/chrome/wilco_ec/wilco_ec_events.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/platform/chrome/wilco_ec/wilco_ec_events.ko] undefined!
ERROR: "_copy_to_user" [drivers/platform/chrome/wilco_ec/wilco_ec_events.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/platform/chrome/wilco_ec/wilco_ec_events.ko] undefined!
ERROR: "printk" [drivers/platform/chrome/wilco_ec/wilco_ec_events.ko] undefined!
ERROR: "class_unregister" [drivers/platform/chrome/wilco_ec/wilco_ec_events.ko] undefined!
ERROR: "ida_free" [drivers/platform/chrome/wilco_ec/wilco_ec_events.ko] undefined!
ERROR: "__class_register" [drivers/platform/chrome/wilco_ec/wilco_ec_events.ko] undefined!
ERROR: "_dev_err" [drivers/platform/chrome/wilco_ec/wilco_ec_events.ko] undefined!
ERROR: "init_wait_entry" [drivers/platform/chrome/wilco_ec/wilco_ec_events.ko] undefined!
ERROR: "put_device" [drivers/platform/chrome/wilco_ec/wilco_ec_events.ko] undefined!
ERROR: "schedule" [drivers/platform/chrome/wilco_ec/wilco_ec_events.ko] undefined!
ERROR: "kmalloc_order_trace" [drivers/platform/chrome/wilco_ec/wilco_ec_events.ko] undefined!
ERROR: "cdev_device_add" [drivers/platform/chrome/wilco_ec/wilco_ec_events.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/platform/chrome/wilco_ec/wilco_ec_events.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/platform/chrome/wilco_ec/wilco_ec_events.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/platform/chrome/wilco_ec/wilco_ec_events.ko] undefined!
ERROR: "get_device" [drivers/platform/chrome/wilco_ec/wilco_ec_events.ko] undefined!
ERROR: "__wake_up" [drivers/platform/chrome/wilco_ec/wilco_ec_events.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/platform/chrome/wilco_ec/wilco_ec_events.ko] undefined!
ERROR: "kfree" [drivers/platform/chrome/wilco_ec/wilco_ec_events.ko] undefined!
ERROR: "device_initialize" [drivers/platform/chrome/wilco_ec/wilco_ec_events.ko] undefined!
ERROR: "finish_wait" [drivers/platform/chrome/wilco_ec/wilco_ec_events.ko] undefined!
ERROR: "cdev_device_del" [drivers/platform/chrome/wilco_ec/wilco_ec_events.ko] undefined!
ERROR: "dev_set_name" [drivers/platform/chrome/wilco_ec/wilco_ec_events.ko] undefined!
ERROR: "ida_destroy" [drivers/platform/chrome/wilco_ec/wilco_ec_events.ko] undefined!
ERROR: "alloc_chrdev_region" [drivers/platform/chrome/wilco_ec/wilco_ec_events.ko] undefined!
ERROR: "ida_alloc_range" [drivers/platform/chrome/wilco_ec/wilco_ec_events.ko] undefined!
ERROR: "simple_read_from_buffer" [drivers/platform/chrome/wilco_ec/wilco_ec_debugfs.ko] undefined!
ERROR: "debugfs_create_dir" [drivers/platform/chrome/wilco_ec/wilco_ec_debugfs.ko] undefined!
ERROR: "no_llseek" [drivers/platform/chrome/wilco_ec/wilco_ec_debugfs.ko] undefined!
ERROR: "debugfs_create_file" [drivers/platform/chrome/wilco_ec/wilco_ec_debugfs.ko] undefined!
ERROR: "debugfs_remove_recursive" [drivers/platform/chrome/wilco_ec/wilco_ec_debugfs.ko] undefined!
ERROR: "__platform_driver_register" [drivers/platform/chrome/wilco_ec/wilco_ec_debugfs.ko] undefined!
ERROR: "_ctype" [drivers/platform/chrome/wilco_ec/wilco_ec_debugfs.ko] undefined!
ERROR: "kstrtou8" [drivers/platform/chrome/wilco_ec/wilco_ec_debugfs.ko] undefined!
ERROR: "wilco_ec_mailbox" [drivers/platform/chrome/wilco_ec/wilco_ec_debugfs.ko] undefined!
ERROR: "simple_attr_release" [drivers/platform/chrome/wilco_ec/wilco_ec_debugfs.ko] undefined!
ERROR: "debugfs_attr_read" [drivers/platform/chrome/wilco_ec/wilco_ec_debugfs.ko] undefined!
ERROR: "hex_dump_to_buffer" [drivers/platform/chrome/wilco_ec/wilco_ec_debugfs.ko] undefined!
ERROR: "simple_write_to_buffer" [drivers/platform/chrome/wilco_ec/wilco_ec_debugfs.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/platform/chrome/wilco_ec/wilco_ec_debugfs.ko] undefined!
ERROR: "devm_kmalloc" [drivers/platform/chrome/wilco_ec/wilco_ec_debugfs.ko] undefined!
ERROR: "debugfs_attr_write" [drivers/platform/chrome/wilco_ec/wilco_ec_debugfs.ko] undefined!
ERROR: "simple_attr_open" [drivers/platform/chrome/wilco_ec/wilco_ec_debugfs.ko] undefined!
ERROR: "cros_ec_lpc_io_bytes_mec" [drivers/platform/chrome/wilco_ec/wilco_ec.ko] undefined!
ERROR: "cros_ec_lpc_mec_destroy" [drivers/platform/chrome/wilco_ec/wilco_ec.ko] undefined!
ERROR: "mutex_unlock" [drivers/platform/chrome/wilco_ec/wilco_ec.ko] undefined!
ERROR: "platform_device_register_full" [drivers/platform/chrome/wilco_ec/wilco_ec.ko] undefined!
ERROR: "sprintf" [drivers/platform/chrome/wilco_ec/wilco_ec.ko] undefined!
ERROR: "cros_ec_lpc_mec_init" [drivers/platform/chrome/wilco_ec/wilco_ec.ko] undefined!
ERROR: "sysfs_remove_group" [drivers/platform/chrome/wilco_ec/wilco_ec.ko] undefined!
ERROR: "__platform_driver_register" [drivers/platform/chrome/wilco_ec/wilco_ec.ko] undefined!
ERROR: "jiffies" [drivers/platform/chrome/wilco_ec/wilco_ec.ko] undefined!
ERROR: "ioport_resource" [drivers/platform/chrome/wilco_ec/wilco_ec.ko] undefined!
ERROR: "devm_led_classdev_register_ext" [drivers/platform/chrome/wilco_ec/wilco_ec.ko] undefined!
ERROR: "kstrtou8" [drivers/platform/chrome/wilco_ec/wilco_ec.ko] undefined!
ERROR: "__mutex_init" [drivers/platform/chrome/wilco_ec/wilco_ec.ko] undefined!
ERROR: "sysfs_create_group" [drivers/platform/chrome/wilco_ec/wilco_ec.ko] undefined!
ERROR: "platform_get_resource" [drivers/platform/chrome/wilco_ec/wilco_ec.ko] undefined!
ERROR: "platform_device_unregister" [drivers/platform/chrome/wilco_ec/wilco_ec.ko] undefined!
ERROR: "_dev_err" [drivers/platform/chrome/wilco_ec/wilco_ec.ko] undefined!
ERROR: "usleep_range" [drivers/platform/chrome/wilco_ec/wilco_ec.ko] undefined!
ERROR: "__devm_request_region" [drivers/platform/chrome/wilco_ec/wilco_ec.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/platform/chrome/wilco_ec/wilco_ec.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/platform/chrome/wilco_ec/wilco_ec.ko] undefined!
ERROR: "scnprintf" [drivers/platform/chrome/wilco_ec/wilco_ec.ko] undefined!
ERROR: "memmove" [drivers/platform/chrome/wilco_ec/wilco_ec.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/platform/chrome/wilco_ec/wilco_ec.ko] undefined!
ERROR: "devm_kmalloc" [drivers/platform/chrome/wilco_ec/wilco_ec.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/platform/chrome/cros_usbpd_logger.ko] undefined!
ERROR: "__platform_driver_register" [drivers/platform/chrome/cros_usbpd_logger.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/platform/chrome/cros_usbpd_logger.ko] undefined!
ERROR: "cros_ec_cmd_xfer_status" [drivers/platform/chrome/cros_usbpd_logger.ko] undefined!
ERROR: "ktime_get_with_offset" [drivers/platform/chrome/cros_usbpd_logger.ko] undefined!
ERROR: "printk" [drivers/platform/chrome/cros_usbpd_logger.ko] undefined!
ERROR: "div_s64_rem" [drivers/platform/chrome/cros_usbpd_logger.ko] undefined!
ERROR: "rtc_ktime_to_tm" [drivers/platform/chrome/cros_usbpd_logger.ko] undefined!
ERROR: "alloc_workqueue" [drivers/platform/chrome/cros_usbpd_logger.ko] undefined!
ERROR: "init_timer_key" [drivers/platform/chrome/cros_usbpd_logger.ko] undefined!
ERROR: "delayed_work_timer_fn" [drivers/platform/chrome/cros_usbpd_logger.ko] undefined!
ERROR: "lockdep_init_map" [drivers/platform/chrome/cros_usbpd_logger.ko] undefined!
ERROR: "devm_kmalloc" [drivers/platform/chrome/cros_usbpd_logger.ko] undefined!
ERROR: "vsnprintf" [drivers/platform/chrome/cros_usbpd_logger.ko] undefined!
ERROR: "destroy_workqueue" [drivers/platform/chrome/cros_usbpd_logger.ko] undefined!
ERROR: "cancel_delayed_work_sync" [drivers/platform/chrome/cros_usbpd_logger.ko] undefined!
ERROR: "queue_delayed_work_on" [drivers/platform/chrome/cros_usbpd_logger.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/platform/chrome/cros_ec_sysfs.ko] undefined!
ERROR: "__platform_driver_register" [drivers/platform/chrome/cros_ec_sysfs.ko] undefined!
ERROR: "_dev_err" [drivers/platform/chrome/cros_ec_sysfs.ko] undefined!
ERROR: "sysfs_create_group" [drivers/platform/chrome/cros_ec_sysfs.ko] undefined!
ERROR: "kstrtou16" [drivers/platform/chrome/cros_ec_sysfs.ko] undefined!
ERROR: "strncasecmp" [drivers/platform/chrome/cros_ec_sysfs.ko] undefined!
ERROR: "strlen" [drivers/platform/chrome/cros_ec_sysfs.ko] undefined!
ERROR: "_ctype" [drivers/platform/chrome/cros_ec_sysfs.ko] undefined!
ERROR: "cros_ec_cmd_xfer" [drivers/platform/chrome/cros_ec_sysfs.ko] undefined!
ERROR: "kfree" [drivers/platform/chrome/cros_ec_sysfs.ko] undefined!
ERROR: "cros_ec_cmd_xfer_status" [drivers/platform/chrome/cros_ec_sysfs.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/platform/chrome/cros_ec_sysfs.ko] undefined!
ERROR: "kmalloc_caches" [drivers/platform/chrome/cros_ec_sysfs.ko] undefined!
ERROR: "scnprintf" [drivers/platform/chrome/cros_ec_sysfs.ko] undefined!
ERROR: "sysfs_remove_group" [drivers/platform/chrome/cros_ec_sysfs.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/platform/chrome/cros_ec_sensorhub.ko] undefined!
ERROR: "__platform_driver_register" [drivers/platform/chrome/cros_ec_sensorhub.ko] undefined!
ERROR: "_dev_warn" [drivers/platform/chrome/cros_ec_sensorhub.ko] undefined!
ERROR: "_dev_err" [drivers/platform/chrome/cros_ec_sensorhub.ko] undefined!
ERROR: "kfree" [drivers/platform/chrome/cros_ec_sensorhub.ko] undefined!
ERROR: "cros_ec_cmd_xfer_status" [drivers/platform/chrome/cros_ec_sensorhub.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/platform/chrome/cros_ec_sensorhub.ko] undefined!
ERROR: "kmalloc_caches" [drivers/platform/chrome/cros_ec_sensorhub.ko] undefined!
ERROR: "cros_ec_get_sensor_count" [drivers/platform/chrome/cros_ec_sensorhub.ko] undefined!
ERROR: "cros_ec_check_features" [drivers/platform/chrome/cros_ec_sensorhub.ko] undefined!
ERROR: "devm_kmalloc" [drivers/platform/chrome/cros_ec_sensorhub.ko] undefined!
ERROR: "devm_add_action" [drivers/platform/chrome/cros_ec_sensorhub.ko] undefined!
ERROR: "platform_device_register_full" [drivers/platform/chrome/cros_ec_sensorhub.ko] undefined!
ERROR: "platform_device_unregister" [drivers/platform/chrome/cros_ec_sensorhub.ko] undefined!
ERROR: "no_llseek" [drivers/platform/chrome/cros_ec_debugfs.ko] undefined!
ERROR: "simple_open" [drivers/platform/chrome/cros_ec_debugfs.ko] undefined!
ERROR: "default_llseek" [drivers/platform/chrome/cros_ec_debugfs.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/platform/chrome/cros_ec_debugfs.ko] undefined!
ERROR: "__platform_driver_register" [drivers/platform/chrome/cros_ec_debugfs.ko] undefined!
ERROR: "debugfs_create_blob" [drivers/platform/chrome/cros_ec_debugfs.ko] undefined!
ERROR: "debugfs_create_x32" [drivers/platform/chrome/cros_ec_debugfs.ko] undefined!
ERROR: "init_timer_key" [drivers/platform/chrome/cros_ec_debugfs.ko] undefined!
ERROR: "delayed_work_timer_fn" [drivers/platform/chrome/cros_ec_debugfs.ko] undefined!
ERROR: "lockdep_init_map" [drivers/platform/chrome/cros_ec_debugfs.ko] undefined!
ERROR: "debugfs_create_file" [drivers/platform/chrome/cros_ec_debugfs.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/platform/chrome/cros_ec_debugfs.ko] undefined!
ERROR: "__mutex_init" [drivers/platform/chrome/cros_ec_debugfs.ko] undefined!
ERROR: "kfree" [drivers/platform/chrome/cros_ec_debugfs.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/platform/chrome/cros_ec_debugfs.ko] undefined!
ERROR: "kmalloc_caches" [drivers/platform/chrome/cros_ec_debugfs.ko] undefined!
ERROR: "devm_kfree" [drivers/platform/chrome/cros_ec_debugfs.ko] undefined!
ERROR: "debugfs_create_dir" [drivers/platform/chrome/cros_ec_debugfs.ko] undefined!
ERROR: "devm_kmalloc" [drivers/platform/chrome/cros_ec_debugfs.ko] undefined!
ERROR: "_copy_to_user" [drivers/platform/chrome/cros_ec_debugfs.ko] undefined!
ERROR: "finish_wait" [drivers/platform/chrome/cros_ec_debugfs.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/platform/chrome/cros_ec_debugfs.ko] undefined!
ERROR: "schedule" [drivers/platform/chrome/cros_ec_debugfs.ko] undefined!
ERROR: "init_wait_entry" [drivers/platform/chrome/cros_ec_debugfs.ko] undefined!
ERROR: "__might_sleep" [drivers/platform/chrome/cros_ec_debugfs.ko] undefined!
ERROR: "stream_open" [drivers/platform/chrome/cros_ec_debugfs.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/platform/chrome/cros_ec_debugfs.ko] undefined!
ERROR: "_dev_info" [drivers/platform/chrome/cros_ec_debugfs.ko] undefined!
ERROR: "mutex_unlock" [drivers/platform/chrome/cros_ec_debugfs.ko] undefined!
ERROR: "__wake_up" [drivers/platform/chrome/cros_ec_debugfs.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/platform/chrome/cros_ec_debugfs.ko] undefined!
ERROR: "simple_read_from_buffer" [drivers/platform/chrome/cros_ec_debugfs.ko] undefined!
ERROR: "scnprintf" [drivers/platform/chrome/cros_ec_debugfs.ko] undefined!
ERROR: "cros_ec_cmd_xfer_status" [drivers/platform/chrome/cros_ec_debugfs.ko] undefined!
ERROR: "mutex_destroy" [drivers/platform/chrome/cros_ec_debugfs.ko] undefined!
ERROR: "debugfs_remove_recursive" [drivers/platform/chrome/cros_ec_debugfs.ko] undefined!
ERROR: "cancel_delayed_work_sync" [drivers/platform/chrome/cros_ec_debugfs.ko] undefined!
ERROR: "queue_delayed_work_on" [drivers/platform/chrome/cros_ec_debugfs.ko] undefined!
ERROR: "system_wq" [drivers/platform/chrome/cros_ec_debugfs.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/platform/chrome/cros_ec_chardev.ko] undefined!
ERROR: "__platform_driver_register" [drivers/platform/chrome/cros_ec_chardev.ko] undefined!
ERROR: "__wake_up_locked" [drivers/platform/chrome/cros_ec_chardev.ko] undefined!
ERROR: "__list_add_valid" [drivers/platform/chrome/cros_ec_chardev.ko] undefined!
ERROR: "cros_ec_cmd_xfer" [drivers/platform/chrome/cros_ec_chardev.ko] undefined!
ERROR: "__kmalloc" [drivers/platform/chrome/cros_ec_chardev.ko] undefined!
ERROR: "__warn_printk" [drivers/platform/chrome/cros_ec_chardev.ko] undefined!
ERROR: "do_wait_intr" [drivers/platform/chrome/cros_ec_chardev.ko] undefined!
ERROR: "autoremove_wake_function" [drivers/platform/chrome/cros_ec_chardev.ko] undefined!
ERROR: "current_task" [drivers/platform/chrome/cros_ec_chardev.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/platform/chrome/cros_ec_chardev.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/platform/chrome/cros_ec_chardev.ko] undefined!
ERROR: "strlen" [drivers/platform/chrome/cros_ec_chardev.ko] undefined!
ERROR: "snprintf" [drivers/platform/chrome/cros_ec_chardev.ko] undefined!
ERROR: "cros_ec_cmd_xfer_status" [drivers/platform/chrome/cros_ec_chardev.ko] undefined!
ERROR: "misc_register" [drivers/platform/chrome/cros_ec_chardev.ko] undefined!
ERROR: "devm_kmalloc" [drivers/platform/chrome/cros_ec_chardev.ko] undefined!
ERROR: "_copy_to_user" [drivers/platform/chrome/cros_ec_chardev.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/platform/chrome/cros_ec_chardev.ko] undefined!
ERROR: "_copy_from_user" [drivers/platform/chrome/cros_ec_chardev.ko] undefined!
ERROR: "_dev_err" [drivers/platform/chrome/cros_ec_chardev.ko] undefined!
ERROR: "blocking_notifier_chain_register" [drivers/platform/chrome/cros_ec_chardev.ko] undefined!
ERROR: "nonseekable_open" [drivers/platform/chrome/cros_ec_chardev.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/platform/chrome/cros_ec_chardev.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/platform/chrome/cros_ec_chardev.ko] undefined!
ERROR: "kmalloc_caches" [drivers/platform/chrome/cros_ec_chardev.ko] undefined!
ERROR: "kfree" [drivers/platform/chrome/cros_ec_chardev.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/platform/chrome/cros_ec_chardev.ko] undefined!
ERROR: "blocking_notifier_chain_unregister" [drivers/platform/chrome/cros_ec_chardev.ko] undefined!
ERROR: "misc_deregister" [drivers/platform/chrome/cros_ec_chardev.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/platform/chrome/cros_ec_chardev.ko] undefined!
ERROR: "ktime_get_with_offset" [drivers/platform/chrome/cros_ec_lpcs.ko] undefined!
ERROR: "acpi_remove_notify_handler" [drivers/platform/chrome/cros_ec_lpcs.ko] undefined!
ERROR: "mutex_destroy" [drivers/platform/chrome/cros_ec_lpcs.ko] undefined!
ERROR: "acpi_install_notify_handler" [drivers/platform/chrome/cros_ec_lpcs.ko] undefined!
ERROR: "cros_ec_check_result" [drivers/platform/chrome/cros_ec_lpcs.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/platform/chrome/cros_ec_lpcs.ko] undefined!
ERROR: "mutex_unlock" [drivers/platform/chrome/cros_ec_lpcs.ko] undefined!
ERROR: "acpi_get_devices" [drivers/platform/chrome/cros_ec_lpcs.ko] undefined!
ERROR: "cros_ec_resume" [drivers/platform/chrome/cros_ec_lpcs.ko] undefined!
ERROR: "__platform_driver_register" [drivers/platform/chrome/cros_ec_lpcs.ko] undefined!
ERROR: "jiffies" [drivers/platform/chrome/cros_ec_lpcs.ko] undefined!
ERROR: "cros_ec_prepare_tx" [drivers/platform/chrome/cros_ec_lpcs.ko] undefined!
ERROR: "_dev_warn" [drivers/platform/chrome/cros_ec_lpcs.ko] undefined!
ERROR: "ioport_resource" [drivers/platform/chrome/cros_ec_lpcs.ko] undefined!
ERROR: "__mutex_init" [drivers/platform/chrome/cros_ec_lpcs.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/platform/chrome/cros_ec_lpcs.ko] undefined!
ERROR: "printk" [drivers/platform/chrome/cros_ec_lpcs.ko] undefined!
ERROR: "cros_ec_unregister" [drivers/platform/chrome/cros_ec_lpcs.ko] undefined!
ERROR: "platform_device_unregister" [drivers/platform/chrome/cros_ec_lpcs.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/platform/chrome/cros_ec_lpcs.ko] undefined!
ERROR: "_dev_err" [drivers/platform/chrome/cros_ec_lpcs.ko] undefined!
ERROR: "platform_device_register" [drivers/platform/chrome/cros_ec_lpcs.ko] undefined!
ERROR: "cros_ec_register" [drivers/platform/chrome/cros_ec_lpcs.ko] undefined!
ERROR: "usleep_range" [drivers/platform/chrome/cros_ec_lpcs.ko] undefined!
ERROR: "blocking_notifier_call_chain" [drivers/platform/chrome/cros_ec_lpcs.ko] undefined!
ERROR: "__devm_request_region" [drivers/platform/chrome/cros_ec_lpcs.ko] undefined!
ERROR: "cros_ec_suspend" [drivers/platform/chrome/cros_ec_lpcs.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/platform/chrome/cros_ec_lpcs.ko] undefined!
ERROR: "pm_system_wakeup" [drivers/platform/chrome/cros_ec_lpcs.ko] undefined!
ERROR: "platform_get_irq" [drivers/platform/chrome/cros_ec_lpcs.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/platform/chrome/cros_ec_lpcs.ko] undefined!
ERROR: "devm_kmalloc" [drivers/platform/chrome/cros_ec_lpcs.ko] undefined!
ERROR: "is_acpi_device_node" [drivers/platform/chrome/cros_ec_lpcs.ko] undefined!
ERROR: "cros_ec_get_next_event" [drivers/platform/chrome/cros_ec_lpcs.ko] undefined!
ERROR: "ishtp_cl_driver_unregister" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "ishtp_cl_driver_register" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "cros_ec_suspend" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "cros_ec_resume" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "ishtp_dev_to_cl_device" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "msleep" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "schedule_timeout" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "finish_wait" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "init_wait_entry" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "cros_ec_check_result" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "__might_sleep" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "ishtp_cl_send" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "cros_ec_prepare_tx" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "cros_ec_register" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "ishtp_get_device" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "lockdep_init_map" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "devm_kmalloc" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "_dev_warn" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "down_read_trylock" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "ishtp_cl_rx_get_rb" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "up_read" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "ishtp_cl_io_rb_recycle" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "__wake_up" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "ktime_get_with_offset" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "up_write" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "_dev_info" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "ishtp_set_client_data" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "ishtp_set_drvdata" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "ishtp_cl_allocate" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "down_write" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "_dev_err" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "ishtp_device" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "ishtp_register_event_cb" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "ishtp_cl_connect" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "ishtp_cl_set_fw_client_id" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "ishtp_get_fw_client_id" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "ishtp_fw_cl_get_client" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "ishtp_set_rx_ring_size" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "ishtp_set_tx_ring_size" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "ishtp_get_ishtp_device" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "ishtp_cl_link" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "cros_ec_handle_event" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "ishtp_put_device" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "ishtp_cl_free" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "ishtp_cl_flush_queues" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "ishtp_cl_unlink" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "ishtp_cl_disconnect" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "ishtp_set_connection_state" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "cancel_work_sync" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "queue_work_on" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "system_wq" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "ishtp_get_client_data" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "ishtp_get_drvdata" [drivers/platform/chrome/cros_ec_ishtp.ko] undefined!
ERROR: "i2c_del_driver" [drivers/platform/chrome/cros_ec_i2c.ko] undefined!
ERROR: "i2c_register_driver" [drivers/platform/chrome/cros_ec_i2c.ko] undefined!
ERROR: "kfree" [drivers/platform/chrome/cros_ec_i2c.ko] undefined!
ERROR: "cros_ec_check_result" [drivers/platform/chrome/cros_ec_i2c.ko] undefined!
ERROR: "__kmalloc" [drivers/platform/chrome/cros_ec_i2c.ko] undefined!
ERROR: "cros_ec_register" [drivers/platform/chrome/cros_ec_i2c.ko] undefined!
ERROR: "devm_kmalloc" [drivers/platform/chrome/cros_ec_i2c.ko] undefined!
ERROR: "_dev_err" [drivers/platform/chrome/cros_ec_i2c.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/platform/chrome/cros_ec_i2c.ko] undefined!
ERROR: "msleep" [drivers/platform/chrome/cros_ec_i2c.ko] undefined!
ERROR: "i2c_transfer" [drivers/platform/chrome/cros_ec_i2c.ko] undefined!
ERROR: "cros_ec_prepare_tx" [drivers/platform/chrome/cros_ec_i2c.ko] undefined!
ERROR: "cros_ec_unregister" [drivers/platform/chrome/cros_ec_i2c.ko] undefined!
ERROR: "cros_ec_suspend" [drivers/platform/chrome/cros_ec_i2c.ko] undefined!
ERROR: "cros_ec_resume" [drivers/platform/chrome/cros_ec_i2c.ko] undefined!
ERROR: "enable_irq" [drivers/platform/chrome/cros_ec.ko] undefined!
ERROR: "disable_irq" [drivers/platform/chrome/cros_ec.ko] undefined!
ERROR: "irq_set_irq_wake" [drivers/platform/chrome/cros_ec.ko] undefined!
ERROR: "pm_suspend_global_flags" [drivers/platform/chrome/cros_ec.ko] undefined!
ERROR: "_dev_err" [drivers/platform/chrome/cros_ec.ko] undefined!
ERROR: "platform_device_unregister" [drivers/platform/chrome/cros_ec.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/platform/chrome/cros_ec.ko] undefined!
ERROR: "_dev_info" [drivers/platform/chrome/cros_ec.ko] undefined!
ERROR: "devm_of_platform_populate" [drivers/platform/chrome/cros_ec.ko] undefined!
ERROR: "platform_device_register_full" [drivers/platform/chrome/cros_ec.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/platform/chrome/cros_ec.ko] undefined!
ERROR: "cros_ec_query_all" [drivers/platform/chrome/cros_ec.ko] undefined!
ERROR: "__mutex_init" [drivers/platform/chrome/cros_ec.ko] undefined!
ERROR: "devm_kmalloc" [drivers/platform/chrome/cros_ec.ko] undefined!
ERROR: "__init_rwsem" [drivers/platform/chrome/cros_ec.ko] undefined!
ERROR: "pm_wakeup_dev_event" [drivers/platform/chrome/cros_ec.ko] undefined!
ERROR: "blocking_notifier_call_chain" [drivers/platform/chrome/cros_ec.ko] undefined!
ERROR: "cros_ec_get_next_event" [drivers/platform/chrome/cros_ec.ko] undefined!
ERROR: "__warn_printk" [drivers/platform/chrome/cros_ec.ko] undefined!
ERROR: "cros_ec_cmd_xfer" [drivers/platform/chrome/cros_ec.ko] undefined!
ERROR: "ktime_get_with_offset" [drivers/platform/chrome/cros_ec.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/platform/goldfish/goldfish_pipe.ko] undefined!
ERROR: "__platform_driver_register" [drivers/platform/goldfish/goldfish_pipe.ko] undefined!
ERROR: "misc_register" [drivers/platform/goldfish/goldfish_pipe.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/platform/goldfish/goldfish_pipe.ko] undefined!
ERROR: "tasklet_init" [drivers/platform/goldfish/goldfish_pipe.ko] undefined!
ERROR: "devm_ioremap" [drivers/platform/goldfish/goldfish_pipe.ko] undefined!
ERROR: "platform_get_resource" [drivers/platform/goldfish/goldfish_pipe.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/platform/goldfish/goldfish_pipe.ko] undefined!
ERROR: "devm_kmalloc" [drivers/platform/goldfish/goldfish_pipe.ko] undefined!
ERROR: "__phys_addr" [drivers/platform/goldfish/goldfish_pipe.ko] undefined!
ERROR: "__kmalloc" [drivers/platform/goldfish/goldfish_pipe.ko] undefined!
ERROR: "__get_free_pages" [drivers/platform/goldfish/goldfish_pipe.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/platform/goldfish/goldfish_pipe.ko] undefined!
ERROR: "__mutex_init" [drivers/platform/goldfish/goldfish_pipe.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/platform/goldfish/goldfish_pipe.ko] undefined!
ERROR: "kmalloc_caches" [drivers/platform/goldfish/goldfish_pipe.ko] undefined!
ERROR: "_dev_err" [drivers/platform/goldfish/goldfish_pipe.ko] undefined!
ERROR: "___ratelimit" [drivers/platform/goldfish/goldfish_pipe.ko] undefined!
ERROR: "finish_wait" [drivers/platform/goldfish/goldfish_pipe.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/platform/goldfish/goldfish_pipe.ko] undefined!
ERROR: "schedule" [drivers/platform/goldfish/goldfish_pipe.ko] undefined!
ERROR: "init_wait_entry" [drivers/platform/goldfish/goldfish_pipe.ko] undefined!
ERROR: "__might_sleep" [drivers/platform/goldfish/goldfish_pipe.ko] undefined!
ERROR: "unpin_user_pages_dirty_lock" [drivers/platform/goldfish/goldfish_pipe.ko] undefined!
ERROR: "mem_section" [drivers/platform/goldfish/goldfish_pipe.ko] undefined!
ERROR: "pin_user_pages_fast" [drivers/platform/goldfish/goldfish_pipe.ko] undefined!
ERROR: "current_task" [drivers/platform/goldfish/goldfish_pipe.ko] undefined!
ERROR: "__preempt_count" [drivers/platform/goldfish/goldfish_pipe.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/platform/goldfish/goldfish_pipe.ko] undefined!
ERROR: "mutex_unlock" [drivers/platform/goldfish/goldfish_pipe.ko] undefined!
ERROR: "mutex_lock_interruptible_nested" [drivers/platform/goldfish/goldfish_pipe.ko] undefined!
ERROR: "__wake_up" [drivers/platform/goldfish/goldfish_pipe.ko] undefined!
ERROR: "__tasklet_schedule" [drivers/platform/goldfish/goldfish_pipe.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/platform/goldfish/goldfish_pipe.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/platform/goldfish/goldfish_pipe.ko] undefined!
ERROR: "free_pages" [drivers/platform/goldfish/goldfish_pipe.ko] undefined!
ERROR: "kfree" [drivers/platform/goldfish/goldfish_pipe.ko] undefined!
ERROR: "tasklet_kill" [drivers/platform/goldfish/goldfish_pipe.ko] undefined!
ERROR: "misc_deregister" [drivers/platform/goldfish/goldfish_pipe.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/platform/mellanox/mlxreg-hotplug.ko] undefined!
ERROR: "__platform_driver_register" [drivers/platform/mellanox/mlxreg-hotplug.ko] undefined!
ERROR: "platform_get_irq" [drivers/platform/mellanox/mlxreg-hotplug.ko] undefined!
ERROR: "enable_irq" [drivers/platform/mellanox/mlxreg-hotplug.ko] undefined!
ERROR: "devm_hwmon_device_register_with_groups" [drivers/platform/mellanox/mlxreg-hotplug.ko] undefined!
ERROR: "devm_kasprintf" [drivers/platform/mellanox/mlxreg-hotplug.ko] undefined!
ERROR: "init_timer_key" [drivers/platform/mellanox/mlxreg-hotplug.ko] undefined!
ERROR: "delayed_work_timer_fn" [drivers/platform/mellanox/mlxreg-hotplug.ko] undefined!
ERROR: "lockdep_init_map" [drivers/platform/mellanox/mlxreg-hotplug.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/platform/mellanox/mlxreg-hotplug.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/platform/mellanox/mlxreg-hotplug.ko] undefined!
ERROR: "devm_kmalloc" [drivers/platform/mellanox/mlxreg-hotplug.ko] undefined!
ERROR: "find_next_bit" [drivers/platform/mellanox/mlxreg-hotplug.ko] undefined!
ERROR: "find_first_bit" [drivers/platform/mellanox/mlxreg-hotplug.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/platform/mellanox/mlxreg-hotplug.ko] undefined!
ERROR: "cancel_delayed_work" [drivers/platform/mellanox/mlxreg-hotplug.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/platform/mellanox/mlxreg-hotplug.ko] undefined!
ERROR: "devm_free_irq" [drivers/platform/mellanox/mlxreg-hotplug.ko] undefined!
ERROR: "regmap_write" [drivers/platform/mellanox/mlxreg-hotplug.ko] undefined!
ERROR: "cancel_delayed_work_sync" [drivers/platform/mellanox/mlxreg-hotplug.ko] undefined!
ERROR: "disable_irq" [drivers/platform/mellanox/mlxreg-hotplug.ko] undefined!
ERROR: "i2c_unregister_device" [drivers/platform/mellanox/mlxreg-hotplug.ko] undefined!
ERROR: "sprintf" [drivers/platform/mellanox/mlxreg-hotplug.ko] undefined!
ERROR: "regmap_read" [drivers/platform/mellanox/mlxreg-hotplug.ko] undefined!
ERROR: "queue_delayed_work_on" [drivers/platform/mellanox/mlxreg-hotplug.ko] undefined!
ERROR: "system_wq" [drivers/platform/mellanox/mlxreg-hotplug.ko] undefined!
ERROR: "i2c_put_adapter" [drivers/platform/mellanox/mlxreg-hotplug.ko] undefined!
ERROR: "_dev_err" [drivers/platform/mellanox/mlxreg-hotplug.ko] undefined!
ERROR: "i2c_new_device" [drivers/platform/mellanox/mlxreg-hotplug.ko] undefined!
ERROR: "i2c_get_adapter" [drivers/platform/mellanox/mlxreg-hotplug.ko] undefined!
ERROR: "kobject_uevent" [drivers/platform/mellanox/mlxreg-hotplug.ko] undefined!
ERROR: "platform_device_unregister" [drivers/platform/x86/mlx-platform.ko] undefined!
ERROR: "ioread8" [drivers/platform/x86/mlx-platform.ko] undefined!
ERROR: "iowrite8" [drivers/platform/x86/mlx-platform.ko] undefined!
ERROR: "platform_device_unregister" [drivers/platform/x86/intel_pmc_core_pltdrv.ko] undefined!
ERROR: "platform_device_register" [drivers/platform/x86/intel_pmc_core_pltdrv.ko] undefined!
ERROR: "x86_match_cpu" [drivers/platform/x86/intel_pmc_core_pltdrv.ko] undefined!
ERROR: "acpi_dev_present" [drivers/platform/x86/intel_pmc_core_pltdrv.ko] undefined!
ERROR: "simple_attr_release" [drivers/platform/x86/intel_pmc_core.ko] undefined!
ERROR: "debugfs_attr_write" [drivers/platform/x86/intel_pmc_core.ko] undefined!
ERROR: "debugfs_attr_read" [drivers/platform/x86/intel_pmc_core.ko] undefined!
ERROR: "no_llseek" [drivers/platform/x86/intel_pmc_core.ko] undefined!
ERROR: "single_release" [drivers/platform/x86/intel_pmc_core.ko] undefined!
ERROR: "seq_read" [drivers/platform/x86/intel_pmc_core.ko] undefined!
ERROR: "seq_lseek" [drivers/platform/x86/intel_pmc_core.ko] undefined!
ERROR: "param_ops_bool" [drivers/platform/x86/intel_pmc_core.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/platform/x86/intel_pmc_core.ko] undefined!
ERROR: "__platform_driver_register" [drivers/platform/x86/intel_pmc_core.ko] undefined!
ERROR: "pm_suspend_global_flags" [drivers/platform/x86/intel_pmc_core.ko] undefined!
ERROR: "tsc_khz" [drivers/platform/x86/intel_pmc_core.ko] undefined!
ERROR: "debugfs_create_bool" [drivers/platform/x86/intel_pmc_core.ko] undefined!
ERROR: "debugfs_create_file" [drivers/platform/x86/intel_pmc_core.ko] undefined!
ERROR: "debugfs_create_dir" [drivers/platform/x86/intel_pmc_core.ko] undefined!
ERROR: "__mutex_init" [drivers/platform/x86/intel_pmc_core.ko] undefined!
ERROR: "pci_dev_present" [drivers/platform/x86/intel_pmc_core.ko] undefined!
ERROR: "ioremap" [drivers/platform/x86/intel_pmc_core.ko] undefined!
ERROR: "page_is_ram" [drivers/platform/x86/intel_pmc_core.ko] undefined!
ERROR: "x86_match_cpu" [drivers/platform/x86/intel_pmc_core.ko] undefined!
ERROR: "simple_attr_open" [drivers/platform/x86/intel_pmc_core.ko] undefined!
ERROR: "kstrtouint_from_user" [drivers/platform/x86/intel_pmc_core.ko] undefined!
ERROR: "printk" [drivers/platform/x86/intel_pmc_core.ko] undefined!
ERROR: "seq_puts" [drivers/platform/x86/intel_pmc_core.ko] undefined!
ERROR: "msleep" [drivers/platform/x86/intel_pmc_core.ko] undefined!
ERROR: "mutex_unlock" [drivers/platform/x86/intel_pmc_core.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/platform/x86/intel_pmc_core.ko] undefined!
ERROR: "seq_printf" [drivers/platform/x86/intel_pmc_core.ko] undefined!
ERROR: "single_open" [drivers/platform/x86/intel_pmc_core.ko] undefined!
ERROR: "iounmap" [drivers/platform/x86/intel_pmc_core.ko] undefined!
ERROR: "mutex_destroy" [drivers/platform/x86/intel_pmc_core.ko] undefined!
ERROR: "debugfs_remove_recursive" [drivers/platform/x86/intel_pmc_core.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/platform/x86/intel_pmc_core.ko] undefined!
ERROR: "_dev_info" [drivers/platform/x86/intel_pmc_core.ko] undefined!
ERROR: "_dev_warn" [drivers/platform/x86/intel_pmc_core.ko] undefined!
ERROR: "do_trace_read_msr" [drivers/platform/x86/intel_pmc_core.ko] undefined!
ERROR: "__tracepoint_read_msr" [drivers/platform/x86/intel_pmc_core.ko] undefined!
ERROR: "ex_handler_default" [drivers/platform/x86/intel_pmc_core.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/platform/x86/intel_punit_ipc.ko] undefined!
ERROR: "__platform_driver_register" [drivers/platform/x86/intel_punit_ipc.ko] undefined!
ERROR: "mutex_unlock" [drivers/platform/x86/intel_punit_ipc.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/platform/x86/intel_punit_ipc.ko] undefined!
ERROR: "_dev_warn" [drivers/platform/x86/intel_punit_ipc.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/platform/x86/intel_punit_ipc.ko] undefined!
ERROR: "__mutex_init" [drivers/platform/x86/intel_punit_ipc.ko] undefined!
ERROR: "devm_platform_ioremap_resource" [drivers/platform/x86/intel_punit_ipc.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/platform/x86/intel_punit_ipc.ko] undefined!
ERROR: "platform_get_irq_optional" [drivers/platform/x86/intel_punit_ipc.ko] undefined!
ERROR: "devm_kmalloc" [drivers/platform/x86/intel_punit_ipc.ko] undefined!
ERROR: "complete" [drivers/platform/x86/intel_punit_ipc.ko] undefined!
ERROR: "_dev_err" [drivers/platform/x86/intel_punit_ipc.ko] undefined!
ERROR: "wait_for_completion_timeout" [drivers/platform/x86/intel_punit_ipc.ko] undefined!
ERROR: "__const_udelay" [drivers/platform/x86/intel_punit_ipc.ko] undefined!
ERROR: "acpi_bus_unregister_driver" [drivers/platform/x86/intel-smartconnect.ko] undefined!
ERROR: "acpi_bus_register_driver" [drivers/platform/x86/intel-smartconnect.ko] undefined!
ERROR: "acpi_execute_simple_method" [drivers/platform/x86/intel-smartconnect.ko] undefined!
ERROR: "_dev_info" [drivers/platform/x86/intel-smartconnect.ko] undefined!
ERROR: "acpi_evaluate_integer" [drivers/platform/x86/intel-smartconnect.ko] undefined!
ERROR: "acpi_bus_unregister_driver" [drivers/platform/x86/intel-rst.ko] undefined!
ERROR: "acpi_bus_register_driver" [drivers/platform/x86/intel-rst.ko] undefined!
ERROR: "device_create_file" [drivers/platform/x86/intel-rst.ko] undefined!
ERROR: "sprintf" [drivers/platform/x86/intel-rst.ko] undefined!
ERROR: "acpi_evaluate_integer" [drivers/platform/x86/intel-rst.ko] undefined!
ERROR: "acpi_execute_simple_method" [drivers/platform/x86/intel-rst.ko] undefined!
ERROR: "_kstrtoul" [drivers/platform/x86/intel-rst.ko] undefined!
ERROR: "device_remove_file" [drivers/platform/x86/intel-rst.ko] undefined!
ERROR: "pnp_unregister_driver" [drivers/platform/x86/apple-gmux.ko] undefined!
ERROR: "pnp_register_driver" [drivers/platform/x86/apple-gmux.ko] undefined!
ERROR: "wait_for_completion_interruptible_timeout" [drivers/platform/x86/apple-gmux.ko] undefined!
ERROR: "acpi_enable_gpe" [drivers/platform/x86/apple-gmux.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/platform/x86/apple-gmux.ko] undefined!
ERROR: "bus_for_each_dev" [drivers/platform/x86/apple-gmux.ko] undefined!
ERROR: "pci_bus_type" [drivers/platform/x86/apple-gmux.ko] undefined!
ERROR: "acpi_format_exception" [drivers/platform/x86/apple-gmux.ko] undefined!
ERROR: "acpi_install_notify_handler" [drivers/platform/x86/apple-gmux.ko] undefined!
ERROR: "acpi_evaluate_integer" [drivers/platform/x86/apple-gmux.ko] undefined!
ERROR: "is_acpi_device_node" [drivers/platform/x86/apple-gmux.ko] undefined!
ERROR: "apple_bl_unregister" [drivers/platform/x86/apple-gmux.ko] undefined!
ERROR: "acpi_video_set_dmi_backlight_type" [drivers/platform/x86/apple-gmux.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/platform/x86/apple-gmux.ko] undefined!
ERROR: "backlight_device_register" [drivers/platform/x86/apple-gmux.ko] undefined!
ERROR: "printk" [drivers/platform/x86/apple-gmux.ko] undefined!
ERROR: "__mutex_init" [drivers/platform/x86/apple-gmux.ko] undefined!
ERROR: "__request_region" [drivers/platform/x86/apple-gmux.ko] undefined!
ERROR: "pnp_get_resource" [drivers/platform/x86/apple-gmux.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/platform/x86/apple-gmux.ko] undefined!
ERROR: "kmalloc_caches" [drivers/platform/x86/apple-gmux.ko] undefined!
ERROR: "complete" [drivers/platform/x86/apple-gmux.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/platform/x86/apple-gmux.ko] undefined!
ERROR: "apple_bl_register" [drivers/platform/x86/apple-gmux.ko] undefined!
ERROR: "acpi_video_register" [drivers/platform/x86/apple-gmux.ko] undefined!
ERROR: "kfree" [drivers/platform/x86/apple-gmux.ko] undefined!
ERROR: "__release_region" [drivers/platform/x86/apple-gmux.ko] undefined!
ERROR: "ioport_resource" [drivers/platform/x86/apple-gmux.ko] undefined!
ERROR: "backlight_device_unregister" [drivers/platform/x86/apple-gmux.ko] undefined!
ERROR: "acpi_remove_notify_handler" [drivers/platform/x86/apple-gmux.ko] undefined!
ERROR: "acpi_disable_gpe" [drivers/platform/x86/apple-gmux.ko] undefined!
ERROR: "mutex_unlock" [drivers/platform/x86/apple-gmux.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/platform/x86/apple-gmux.ko] undefined!
ERROR: "__const_udelay" [drivers/platform/x86/apple-gmux.ko] undefined!
ERROR: "param_ops_bool" [drivers/platform/x86/samsung-laptop.ko] undefined!
ERROR: "single_release" [drivers/platform/x86/samsung-laptop.ko] undefined!
ERROR: "seq_read" [drivers/platform/x86/samsung-laptop.ko] undefined!
ERROR: "seq_lseek" [drivers/platform/x86/samsung-laptop.ko] undefined!
ERROR: "debugfs_remove_recursive" [drivers/platform/x86/samsung-laptop.ko] undefined!
ERROR: "unregister_pm_notifier" [drivers/platform/x86/samsung-laptop.ko] undefined!
ERROR: "sysfs_remove_group" [drivers/platform/x86/samsung-laptop.ko] undefined!
ERROR: "backlight_device_unregister" [drivers/platform/x86/samsung-laptop.ko] undefined!
ERROR: "register_pm_notifier" [drivers/platform/x86/samsung-laptop.ko] undefined!
ERROR: "debugfs_create_file" [drivers/platform/x86/samsung-laptop.ko] undefined!
ERROR: "debugfs_create_blob" [drivers/platform/x86/samsung-laptop.ko] undefined!
ERROR: "debugfs_create_u8" [drivers/platform/x86/samsung-laptop.ko] undefined!
ERROR: "debugfs_create_u32" [drivers/platform/x86/samsung-laptop.ko] undefined!
ERROR: "debugfs_create_u16" [drivers/platform/x86/samsung-laptop.ko] undefined!
ERROR: "debugfs_create_dir" [drivers/platform/x86/samsung-laptop.ko] undefined!
ERROR: "led_classdev_register_ext" [drivers/platform/x86/samsung-laptop.ko] undefined!
ERROR: "lockdep_init_map" [drivers/platform/x86/samsung-laptop.ko] undefined!
ERROR: "alloc_workqueue" [drivers/platform/x86/samsung-laptop.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/platform/x86/samsung-laptop.ko] undefined!
ERROR: "backlight_device_register" [drivers/platform/x86/samsung-laptop.ko] undefined!
ERROR: "sysfs_create_group" [drivers/platform/x86/samsung-laptop.ko] undefined!
ERROR: "kfree" [drivers/platform/x86/samsung-laptop.ko] undefined!
ERROR: "platform_device_unregister" [drivers/platform/x86/samsung-laptop.ko] undefined!
ERROR: "_ctype" [drivers/platform/x86/samsung-laptop.ko] undefined!
ERROR: "ioremap" [drivers/platform/x86/samsung-laptop.ko] undefined!
ERROR: "platform_device_register_full" [drivers/platform/x86/samsung-laptop.ko] undefined!
ERROR: "acpi_video_get_backlight_type" [drivers/platform/x86/samsung-laptop.ko] undefined!
ERROR: "acpi_video_set_dmi_backlight_type" [drivers/platform/x86/samsung-laptop.ko] undefined!
ERROR: "__mutex_init" [drivers/platform/x86/samsung-laptop.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/platform/x86/samsung-laptop.ko] undefined!
ERROR: "kmalloc_caches" [drivers/platform/x86/samsung-laptop.ko] undefined!
ERROR: "efi" [drivers/platform/x86/samsung-laptop.ko] undefined!
ERROR: "iounmap" [drivers/platform/x86/samsung-laptop.ko] undefined!
ERROR: "seq_printf" [drivers/platform/x86/samsung-laptop.ko] undefined!
ERROR: "single_open" [drivers/platform/x86/samsung-laptop.ko] undefined!
ERROR: "destroy_workqueue" [drivers/platform/x86/samsung-laptop.ko] undefined!
ERROR: "led_classdev_unregister" [drivers/platform/x86/samsung-laptop.ko] undefined!
ERROR: "queue_work_on" [drivers/platform/x86/samsung-laptop.ko] undefined!
ERROR: "strncasecmp" [drivers/platform/x86/samsung-laptop.ko] undefined!
ERROR: "sprintf" [drivers/platform/x86/samsung-laptop.ko] undefined!
ERROR: "kstrtoint" [drivers/platform/x86/samsung-laptop.ko] undefined!
ERROR: "strlen" [drivers/platform/x86/samsung-laptop.ko] undefined!
ERROR: "printk" [drivers/platform/x86/samsung-laptop.ko] undefined!
ERROR: "mutex_unlock" [drivers/platform/x86/samsung-laptop.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/platform/x86/samsung-laptop.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/platform/x86/intel_int0002_vgpio.ko] undefined!
ERROR: "__platform_driver_register" [drivers/platform/x86/intel_int0002_vgpio.ko] undefined!
ERROR: "_dev_err" [drivers/platform/x86/intel_int0002_vgpio.ko] undefined!
ERROR: "devm_gpiochip_add_data" [drivers/platform/x86/intel_int0002_vgpio.ko] undefined!
ERROR: "handle_edge_irq" [drivers/platform/x86/intel_int0002_vgpio.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/platform/x86/intel_int0002_vgpio.ko] undefined!
ERROR: "devm_kmalloc" [drivers/platform/x86/intel_int0002_vgpio.ko] undefined!
ERROR: "x86_match_cpu" [drivers/platform/x86/intel_int0002_vgpio.ko] undefined!
ERROR: "irq_set_irq_wake" [drivers/platform/x86/intel_int0002_vgpio.ko] undefined!
ERROR: "platform_get_irq" [drivers/platform/x86/intel_int0002_vgpio.ko] undefined!
ERROR: "__bitmap_clear" [drivers/platform/x86/intel_int0002_vgpio.ko] undefined!
ERROR: "pm_wakeup_dev_event" [drivers/platform/x86/intel_int0002_vgpio.ko] undefined!
ERROR: "generic_handle_irq" [drivers/platform/x86/intel_int0002_vgpio.ko] undefined!
ERROR: "irq_find_mapping" [drivers/platform/x86/intel_int0002_vgpio.ko] undefined!
ERROR: "device_init_wakeup" [drivers/platform/x86/intel_int0002_vgpio.ko] undefined!
ERROR: "acpi_bus_unregister_driver" [drivers/platform/x86/toshiba_haps.ko] undefined!
ERROR: "acpi_bus_register_driver" [drivers/platform/x86/toshiba_haps.ko] undefined!
ERROR: "sysfs_create_group" [drivers/platform/x86/toshiba_haps.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/platform/x86/toshiba_haps.ko] undefined!
ERROR: "kmalloc_caches" [drivers/platform/x86/toshiba_haps.ko] undefined!
ERROR: "acpi_evaluate_integer" [drivers/platform/x86/toshiba_haps.ko] undefined!
ERROR: "sprintf" [drivers/platform/x86/toshiba_haps.ko] undefined!
ERROR: "kstrtoint" [drivers/platform/x86/toshiba_haps.ko] undefined!
ERROR: "sysfs_remove_group" [drivers/platform/x86/toshiba_haps.ko] undefined!
ERROR: "acpi_bus_generate_netlink_event" [drivers/platform/x86/toshiba_haps.ko] undefined!
ERROR: "acpi_evaluate_object" [drivers/platform/x86/toshiba_haps.ko] undefined!
ERROR: "printk" [drivers/platform/x86/toshiba_haps.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/platform/x86/toshiba_haps.ko] undefined!
ERROR: "acpi_execute_simple_method" [drivers/platform/x86/toshiba_haps.ko] undefined!
ERROR: "acpi_bus_unregister_driver" [drivers/platform/x86/topstar-laptop.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/platform/x86/topstar-laptop.ko] undefined!
ERROR: "acpi_bus_register_driver" [drivers/platform/x86/topstar-laptop.ko] undefined!
ERROR: "__platform_driver_register" [drivers/platform/x86/topstar-laptop.ko] undefined!
ERROR: "input_free_device" [drivers/platform/x86/topstar-laptop.ko] undefined!
ERROR: "platform_device_put" [drivers/platform/x86/topstar-laptop.ko] undefined!
ERROR: "input_register_device" [drivers/platform/x86/topstar-laptop.ko] undefined!
ERROR: "sparse_keymap_setup" [drivers/platform/x86/topstar-laptop.ko] undefined!
ERROR: "input_allocate_device" [drivers/platform/x86/topstar-laptop.ko] undefined!
ERROR: "platform_device_add" [drivers/platform/x86/topstar-laptop.ko] undefined!
ERROR: "platform_device_alloc" [drivers/platform/x86/topstar-laptop.ko] undefined!
ERROR: "strcpy" [drivers/platform/x86/topstar-laptop.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/platform/x86/topstar-laptop.ko] undefined!
ERROR: "kmalloc_caches" [drivers/platform/x86/topstar-laptop.ko] undefined!
ERROR: "acpi_evaluate_integer" [drivers/platform/x86/topstar-laptop.ko] undefined!
ERROR: "kfree" [drivers/platform/x86/topstar-laptop.ko] undefined!
ERROR: "platform_device_unregister" [drivers/platform/x86/topstar-laptop.ko] undefined!
ERROR: "input_unregister_device" [drivers/platform/x86/topstar-laptop.ko] undefined!
ERROR: "acpi_execute_simple_method" [drivers/platform/x86/topstar-laptop.ko] undefined!
ERROR: "printk" [drivers/platform/x86/topstar-laptop.ko] undefined!
ERROR: "sparse_keymap_report_event" [drivers/platform/x86/topstar-laptop.ko] undefined!
ERROR: "param_ops_int" [drivers/platform/x86/fujitsu-laptop.ko] undefined!
ERROR: "param_ops_bool" [drivers/platform/x86/fujitsu-laptop.ko] undefined!
ERROR: "acpi_bus_unregister_driver" [drivers/platform/x86/fujitsu-laptop.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/platform/x86/fujitsu-laptop.ko] undefined!
ERROR: "__platform_driver_register" [drivers/platform/x86/fujitsu-laptop.ko] undefined!
ERROR: "acpi_bus_register_driver" [drivers/platform/x86/fujitsu-laptop.ko] undefined!
ERROR: "devm_backlight_device_register" [drivers/platform/x86/fujitsu-laptop.ko] undefined!
ERROR: "acpi_has_method" [drivers/platform/x86/fujitsu-laptop.ko] undefined!
ERROR: "acpi_execute_simple_method" [drivers/platform/x86/fujitsu-laptop.ko] undefined!
ERROR: "platform_device_del" [drivers/platform/x86/fujitsu-laptop.ko] undefined!
ERROR: "sysfs_create_group" [drivers/platform/x86/fujitsu-laptop.ko] undefined!
ERROR: "platform_device_put" [drivers/platform/x86/fujitsu-laptop.ko] undefined!
ERROR: "platform_device_add" [drivers/platform/x86/fujitsu-laptop.ko] undefined!
ERROR: "platform_device_alloc" [drivers/platform/x86/fujitsu-laptop.ko] undefined!
ERROR: "devm_led_classdev_register_ext" [drivers/platform/x86/fujitsu-laptop.ko] undefined!
ERROR: "input_register_device" [drivers/platform/x86/fujitsu-laptop.ko] undefined!
ERROR: "sparse_keymap_setup" [drivers/platform/x86/fujitsu-laptop.ko] undefined!
ERROR: "snprintf" [drivers/platform/x86/fujitsu-laptop.ko] undefined!
ERROR: "acpi_device_hid" [drivers/platform/x86/fujitsu-laptop.ko] undefined!
ERROR: "devm_input_allocate_device" [drivers/platform/x86/fujitsu-laptop.ko] undefined!
ERROR: "acpi_video_get_backlight_type" [drivers/platform/x86/fujitsu-laptop.ko] undefined!
ERROR: "printk" [drivers/platform/x86/fujitsu-laptop.ko] undefined!
ERROR: "__warn_printk" [drivers/platform/x86/fujitsu-laptop.ko] undefined!
ERROR: "__kfifo_alloc" [drivers/platform/x86/fujitsu-laptop.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/platform/x86/fujitsu-laptop.ko] undefined!
ERROR: "strcpy" [drivers/platform/x86/fujitsu-laptop.ko] undefined!
ERROR: "devm_kmalloc" [drivers/platform/x86/fujitsu-laptop.ko] undefined!
ERROR: "sprintf" [drivers/platform/x86/fujitsu-laptop.ko] undefined!
ERROR: "__kfifo_free" [drivers/platform/x86/fujitsu-laptop.ko] undefined!
ERROR: "platform_device_unregister" [drivers/platform/x86/fujitsu-laptop.ko] undefined!
ERROR: "sysfs_remove_group" [drivers/platform/x86/fujitsu-laptop.ko] undefined!
ERROR: "_dev_info" [drivers/platform/x86/fujitsu-laptop.ko] undefined!
ERROR: "find_next_bit" [drivers/platform/x86/fujitsu-laptop.ko] undefined!
ERROR: "find_first_bit" [drivers/platform/x86/fujitsu-laptop.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/platform/x86/fujitsu-laptop.ko] undefined!
ERROR: "__kfifo_out" [drivers/platform/x86/fujitsu-laptop.ko] undefined!
ERROR: "sparse_keymap_report_event" [drivers/platform/x86/fujitsu-laptop.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/platform/x86/fujitsu-laptop.ko] undefined!
ERROR: "__kfifo_in" [drivers/platform/x86/fujitsu-laptop.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/platform/x86/fujitsu-laptop.ko] undefined!
ERROR: "sparse_keymap_entry_from_scancode" [drivers/platform/x86/fujitsu-laptop.ko] undefined!
ERROR: "acpi_handle_printk" [drivers/platform/x86/fujitsu-laptop.ko] undefined!
ERROR: "__acpi_handle_debug" [drivers/platform/x86/fujitsu-laptop.ko] undefined!
ERROR: "acpi_evaluate_integer" [drivers/platform/x86/fujitsu-laptop.ko] undefined!
ERROR: "delayed_work_timer_fn" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "param_ops_int" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "param_ops_uint" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "param_ops_bool" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "input_unregister_device" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "destroy_workqueue" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "acpi_root_dir" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "platform_device_unregister" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "hwmon_device_unregister" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "input_free_device" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "input_set_capability" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "kmemdup" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "kmalloc_caches" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "acpi_bus_unregister_driver" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "remove_proc_entry" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "acpi_remove_notify_handler" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "_copy_from_user" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "__kmalloc" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "single_open" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "PDE_DATA" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "acpi_device_hid" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "acpi_bus_get_device" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "acpi_get_devices" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "__warn_printk" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "led_classdev_notify_brightness_hw_changed" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "acpi_bus_generate_netlink_event" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "sysfs_notify" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "input_event" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "capable" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "led_classdev_resume" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "led_classdev_suspend" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "led_update_brightness" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "device_create_file" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "device_remove_file" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "_kstrtoul" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "strstr" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "kfree" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "backlight_device_register" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "acpi_video_get_backlight_type" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "backlight_force_update" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "backlight_device_unregister" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "driver_create_file" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "__mutex_init" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "sysfs_create_group" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "sscanf" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "snprintf" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "__task_pid_nr_ns" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "current_task" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "simple_strtoul" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "skip_spaces" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "mod_delayed_work_on" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "__msecs_to_jiffies" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "flush_workqueue" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "cancel_delayed_work" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "driver_remove_file" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "sysfs_remove_group" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "ec_write" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "arch_nvram_ops" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "ec_read" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "mutex_unlock" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "mutex_lock_killable_nested" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "led_classdev_register_ext" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "ledtrig_audio_get" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "led_classdev_unregister" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "battery_hook_register" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "device_add_groups" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "acpi_has_method" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "sprintf" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "acpi_handle_printk" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "device_remove_groups" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "battery_hook_unregister" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "seq_puts" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "seq_printf" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "strncmp" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "strchr" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "acpi_format_exception" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "acpi_evaluate_object" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "acpi_get_handle" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "printk" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "strcat" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "strcpy" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "strlen" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "strcmp" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "__x86_indirect_thunk_eax" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/platform/x86/thinkpad_acpi.ko] undefined!
ERROR: "param_array_ops" [drivers/platform/x86/gpd-pocket-fan.ko] undefined!
ERROR: "param_ops_int" [drivers/platform/x86/gpd-pocket-fan.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/platform/x86/gpd-pocket-fan.ko] undefined!
ERROR: "__platform_driver_register" [drivers/platform/x86/gpd-pocket-fan.ko] undefined!
ERROR: "_dev_err" [drivers/platform/x86/gpd-pocket-fan.ko] undefined!
ERROR: "devm_gpiod_get_index" [drivers/platform/x86/gpd-pocket-fan.ko] undefined!
ERROR: "thermal_zone_get_zone_by_name" [drivers/platform/x86/gpd-pocket-fan.ko] undefined!
ERROR: "init_timer_key" [drivers/platform/x86/gpd-pocket-fan.ko] undefined!
ERROR: "delayed_work_timer_fn" [drivers/platform/x86/gpd-pocket-fan.ko] undefined!
ERROR: "lockdep_init_map" [drivers/platform/x86/gpd-pocket-fan.ko] undefined!
ERROR: "devm_kmalloc" [drivers/platform/x86/gpd-pocket-fan.ko] undefined!
ERROR: "_dev_warn" [drivers/platform/x86/gpd-pocket-fan.ko] undefined!
ERROR: "queue_delayed_work_on" [drivers/platform/x86/gpd-pocket-fan.ko] undefined!
ERROR: "__msecs_to_jiffies" [drivers/platform/x86/gpd-pocket-fan.ko] undefined!
ERROR: "thermal_zone_get_temp" [drivers/platform/x86/gpd-pocket-fan.ko] undefined!
ERROR: "power_supply_is_system_supplied" [drivers/platform/x86/gpd-pocket-fan.ko] undefined!
ERROR: "gpiod_direction_output" [drivers/platform/x86/gpd-pocket-fan.ko] undefined!
ERROR: "cancel_delayed_work_sync" [drivers/platform/x86/gpd-pocket-fan.ko] undefined!
ERROR: "mod_delayed_work_on" [drivers/platform/x86/gpd-pocket-fan.ko] undefined!
ERROR: "system_wq" [drivers/platform/x86/gpd-pocket-fan.ko] undefined!
ERROR: "acpi_bus_unregister_driver" [drivers/platform/x86/classmate-laptop.ko] undefined!
ERROR: "acpi_bus_register_driver" [drivers/platform/x86/classmate-laptop.ko] undefined!
ERROR: "backlight_device_register" [drivers/platform/x86/classmate-laptop.ko] undefined!
ERROR: "backlight_device_unregister" [drivers/platform/x86/classmate-laptop.ko] undefined!
ERROR: "acpi_evaluate_integer" [drivers/platform/x86/classmate-laptop.ko] undefined!
ERROR: "device_create_file" [drivers/platform/x86/classmate-laptop.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/platform/x86/classmate-laptop.ko] undefined!
ERROR: "kmalloc_caches" [drivers/platform/x86/classmate-laptop.ko] undefined!
ERROR: "input_free_device" [drivers/platform/x86/classmate-laptop.ko] undefined!
ERROR: "input_register_device" [drivers/platform/x86/classmate-laptop.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/platform/x86/classmate-laptop.ko] undefined!
ERROR: "input_allocate_device" [drivers/platform/x86/classmate-laptop.ko] undefined!
ERROR: "input_set_abs_params" [drivers/platform/x86/classmate-laptop.ko] undefined!
ERROR: "input_unregister_device" [drivers/platform/x86/classmate-laptop.ko] undefined!
ERROR: "device_remove_file" [drivers/platform/x86/classmate-laptop.ko] undefined!
ERROR: "sprintf" [drivers/platform/x86/classmate-laptop.ko] undefined!
ERROR: "strnlen" [drivers/platform/x86/classmate-laptop.ko] undefined!
ERROR: "_kstrtoul" [drivers/platform/x86/classmate-laptop.ko] undefined!
ERROR: "input_event" [drivers/platform/x86/classmate-laptop.ko] undefined!
ERROR: "kfree" [drivers/platform/x86/classmate-laptop.ko] undefined!
ERROR: "acpi_evaluate_object" [drivers/platform/x86/classmate-laptop.ko] undefined!
ERROR: "param_ops_bool" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "acpi_bus_unregister_driver" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "acpi_bus_register_driver" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "__platform_driver_register" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "__pci_hp_register" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "pci_find_bus" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "__mutex_init" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "led_classdev_register_ext" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "lockdep_init_map" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "alloc_workqueue" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "input_free_device" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "devm_hwmon_device_register_with_groups" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "input_register_device" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "sparse_keymap_setup" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "input_allocate_device" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "backlight_device_register" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "platform_device_put" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "platform_device_del" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "acpi_video_get_backlight_type" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "sysfs_create_group" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "platform_device_add" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "platform_device_alloc" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "acpi_bus_get_status" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "strcpy" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "kmalloc_caches" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "acpi_install_notify_handler" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "queue_work_on" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "ec_write" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "ec_read" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "acpi_execute_simple_method" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "sprintf" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "sscanf" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "kfree" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "platform_device_unregister" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "sysfs_remove_group" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "input_unregister_device" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "backlight_device_unregister" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "destroy_workqueue" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "led_classdev_unregister" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "pci_hp_deregister" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "acpi_remove_notify_handler" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "acpi_get_handle" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "pci_bus_add_device" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "pci_bus_assign_resources" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "pci_scan_single_device" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "pci_stop_and_remove_bus_device" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "mutex_unlock" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "pci_unlock_rescan_remove" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "pci_dev_put" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "pci_get_slot" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "pci_bus_read_config_dword" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "acpi_get_pci_dev" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "pci_lock_rescan_remove" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "acpi_evaluate_integer" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "backlight_force_update" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "acpi_bus_generate_netlink_event" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "printk" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "sparse_keymap_report_event" [drivers/platform/x86/eeepc-laptop.ko] undefined!
ERROR: "uwb_rc_put" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "uwb_rc_get_by_grandpa" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "kmalloc_caches" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "__kmalloc" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "msleep" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "uwb_rsv_establish" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "crypto_alloc_shash" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "param_ops_int" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "usb_register_notify" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "usb_ep0_reinit" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "uwb_pal_register" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "get_random_bytes" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "usb_set_device_state" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "uwb_rsv_get_usable_mas" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "delayed_work_timer_fn" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "cancel_work_sync" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "init_timer_key" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "cancel_delayed_work_sync" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "crypto_shash_finup" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "mutex_unlock" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "usb_hcd_giveback_urb" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "sprintf" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "sysfs_remove_group" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "uwb_rsv_destroy" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "jiffies" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "usb_get_hcd" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "usb_put_hcd" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "usb_get_descriptor" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "_dev_warn" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "cancel_delayed_work" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "__mutex_init" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "printk" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "sscanf" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "sysfs_create_group" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "memcmp" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "crypto_shash_update" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "crypto_shash_digest" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "uwb_radio_stop" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "usb_control_msg" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "uwb_rsv_terminate" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "destroy_workqueue" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "uwb_pal_unregister" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "crypto_shash_setkey" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "_dev_err" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "__list_add_valid" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "flush_workqueue" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "find_first_zero_bit" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "usb_unregister_notify" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "print_hex_dump" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "_dev_info" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "usb_get_dev" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "uwb_pal_init" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "uwb_rc_reset_all" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "uwb_radio_start" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "queue_delayed_work_on" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "refcount_warn_saturate" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "usb_put_dev" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "crypto_destroy_tfm" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "kfree" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "uwb_rsv_create" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "scnprintf" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "lockdep_init_map" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "queue_work_on" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "snprintf" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "__msecs_to_jiffies" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "alloc_workqueue" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "krealloc" [drivers/staging/wusbcore/wusbcore.ko] undefined!
ERROR: "uwb_rc_put" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "uwb_rc_get_by_grandpa" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "__request_region" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "kmalloc_caches" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "__kmalloc" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "msleep" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "wusb_cluster_id_put" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "usb_add_hcd" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "wusbhc_rh_control" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "single_open" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "__umc_driver_register" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "usb_remove_hcd" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "iomem_resource" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "page_address" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "single_release" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "usb_create_hcd" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "wusb_cluster_id_get" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "seq_printf" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "__warn_printk" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "sg_next" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "mutex_unlock" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "dma_free_attrs" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "debugfs_create_file" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "dma_pool_destroy" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "seq_read" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "__might_sleep" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "usb_put_hcd" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "wusbhc_giveback_urb" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "wait_for_completion" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "umc_driver_unregister" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "_dev_warn" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "usb_hcd_link_urb_to_ep" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "__mutex_init" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "ioremap" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "_raw_spin_unlock_irq" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "debugfs_remove" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "dma_direct_map_page" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "dma_alloc_attrs" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "mem_section" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "destroy_workqueue" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "dma_pool_free" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "wusbhc_rh_start_port_reset" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "device_wakeup_enable" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "_dev_err" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "__list_add_valid" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "init_wait_entry" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "whci_wait_for" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "usb_hcd_check_unlink_urb" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "wusbhc_b_destroy" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "schedule_timeout" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "_raw_spin_lock_irq" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "dev_driver_string" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "dma_pool_alloc" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "__release_region" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "__phys_addr" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "wusbhc_handle_dn" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "__wake_up" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "wusbhc_destroy" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "seq_lseek" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "kfree" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "wusbhc_create" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "iounmap" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "wusbhc_b_create" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "wusbhc_rh_status_data" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "lockdep_init_map" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "finish_wait" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "queue_work_on" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "complete" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "wusbhc_reset_all" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "iowrite32" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "usb_hcd_unlink_urb_from_ep" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "dma_pool_create" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "alloc_workqueue" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "dma_ops" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "ioread32" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "krealloc" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "is_vmalloc_addr" [drivers/staging/wusbcore/host/whci/whci-hcd.ko] undefined!
ERROR: "uwb_est_unregister" [drivers/staging/uwb/i1480/i1480-est.ko] undefined!
ERROR: "printk" [drivers/staging/uwb/i1480/i1480-est.ko] undefined!
ERROR: "uwb_est_register" [drivers/staging/uwb/i1480/i1480-est.ko] undefined!
ERROR: "kmalloc_caches" [drivers/staging/uwb/i1480/dfu/i1480-dfu-usb.ko] undefined!
ERROR: "msleep" [drivers/staging/uwb/i1480/dfu/i1480-dfu-usb.ko] undefined!
ERROR: "get_random_bytes" [drivers/staging/uwb/i1480/dfu/i1480-dfu-usb.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/staging/uwb/i1480/dfu/i1480-dfu-usb.ko] undefined!
ERROR: "usb_kill_urb" [drivers/staging/uwb/i1480/dfu/i1480-dfu-usb.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/staging/uwb/i1480/dfu/i1480-dfu-usb.ko] undefined!
ERROR: "_dev_warn" [drivers/staging/uwb/i1480/dfu/i1480-dfu-usb.ko] undefined!
ERROR: "usb_deregister" [drivers/staging/uwb/i1480/dfu/i1480-dfu-usb.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/staging/uwb/i1480/dfu/i1480-dfu-usb.ko] undefined!
ERROR: "memcmp" [drivers/staging/uwb/i1480/dfu/i1480-dfu-usb.ko] undefined!
ERROR: "usb_set_interface" [drivers/staging/uwb/i1480/dfu/i1480-dfu-usb.ko] undefined!
ERROR: "usb_control_msg" [drivers/staging/uwb/i1480/dfu/i1480-dfu-usb.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/staging/uwb/i1480/dfu/i1480-dfu-usb.ko] undefined!
ERROR: "_dev_err" [drivers/staging/uwb/i1480/dfu/i1480-dfu-usb.ko] undefined!
ERROR: "_dev_info" [drivers/staging/uwb/i1480/dfu/i1480-dfu-usb.ko] undefined!
ERROR: "usb_submit_urb" [drivers/staging/uwb/i1480/dfu/i1480-dfu-usb.ko] undefined!
ERROR: "usb_get_dev" [drivers/staging/uwb/i1480/dfu/i1480-dfu-usb.ko] undefined!
ERROR: "usb_reset_device" [drivers/staging/uwb/i1480/dfu/i1480-dfu-usb.ko] undefined!
ERROR: "usb_put_dev" [drivers/staging/uwb/i1480/dfu/i1480-dfu-usb.ko] undefined!
ERROR: "wait_for_completion_interruptible_timeout" [drivers/staging/uwb/i1480/dfu/i1480-dfu-usb.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/staging/uwb/i1480/dfu/i1480-dfu-usb.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/staging/uwb/i1480/dfu/i1480-dfu-usb.ko] undefined!
ERROR: "usb_get_intf" [drivers/staging/uwb/i1480/dfu/i1480-dfu-usb.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/staging/uwb/i1480/dfu/i1480-dfu-usb.ko] undefined!
ERROR: "kfree" [drivers/staging/uwb/i1480/dfu/i1480-dfu-usb.ko] undefined!
ERROR: "usb_register_driver" [drivers/staging/uwb/i1480/dfu/i1480-dfu-usb.ko] undefined!
ERROR: "request_firmware" [drivers/staging/uwb/i1480/dfu/i1480-dfu-usb.ko] undefined!
ERROR: "complete" [drivers/staging/uwb/i1480/dfu/i1480-dfu-usb.ko] undefined!
ERROR: "usb_free_urb" [drivers/staging/uwb/i1480/dfu/i1480-dfu-usb.ko] undefined!
ERROR: "release_firmware" [drivers/staging/uwb/i1480/dfu/i1480-dfu-usb.ko] undefined!
ERROR: "usb_alloc_urb" [drivers/staging/uwb/i1480/dfu/i1480-dfu-usb.ko] undefined!
ERROR: "usb_put_intf" [drivers/staging/uwb/i1480/dfu/i1480-dfu-usb.ko] undefined!
ERROR: "usb_deregister" [drivers/staging/uwb/hwa-rc.ko] undefined!
ERROR: "usb_register_driver" [drivers/staging/uwb/hwa-rc.ko] undefined!
ERROR: "__kmalloc" [drivers/staging/uwb/hwa-rc.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/staging/uwb/hwa-rc.ko] undefined!
ERROR: "uwb_rc_add" [drivers/staging/uwb/hwa-rc.ko] undefined!
ERROR: "usb_get_intf" [drivers/staging/uwb/hwa-rc.ko] undefined!
ERROR: "usb_get_dev" [drivers/staging/uwb/hwa-rc.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/staging/uwb/hwa-rc.ko] undefined!
ERROR: "kmalloc_caches" [drivers/staging/uwb/hwa-rc.ko] undefined!
ERROR: "uwb_rc_alloc" [drivers/staging/uwb/hwa-rc.ko] undefined!
ERROR: "uwb_rc_reset_all" [drivers/staging/uwb/hwa-rc.ko] undefined!
ERROR: "uwb_rc_neh_error" [drivers/staging/uwb/hwa-rc.ko] undefined!
ERROR: "jiffies" [drivers/staging/uwb/hwa-rc.ko] undefined!
ERROR: "uwb_rc_neh_grok" [drivers/staging/uwb/hwa-rc.ko] undefined!
ERROR: "usb_submit_urb" [drivers/staging/uwb/hwa-rc.ko] undefined!
ERROR: "usb_alloc_urb" [drivers/staging/uwb/hwa-rc.ko] undefined!
ERROR: "__get_free_pages" [drivers/staging/uwb/hwa-rc.ko] undefined!
ERROR: "free_pages" [drivers/staging/uwb/hwa-rc.ko] undefined!
ERROR: "usb_free_urb" [drivers/staging/uwb/hwa-rc.ko] undefined!
ERROR: "usb_kill_urb" [drivers/staging/uwb/hwa-rc.ko] undefined!
ERROR: "usb_control_msg" [drivers/staging/uwb/hwa-rc.ko] undefined!
ERROR: "mutex_unlock" [drivers/staging/uwb/hwa-rc.ko] undefined!
ERROR: "usb_reset_device" [drivers/staging/uwb/hwa-rc.ko] undefined!
ERROR: "usb_lock_device_for_reset" [drivers/staging/uwb/hwa-rc.ko] undefined!
ERROR: "_dev_err" [drivers/staging/uwb/hwa-rc.ko] undefined!
ERROR: "uwb_rc_put" [drivers/staging/uwb/hwa-rc.ko] undefined!
ERROR: "kfree" [drivers/staging/uwb/hwa-rc.ko] undefined!
ERROR: "usb_put_dev" [drivers/staging/uwb/hwa-rc.ko] undefined!
ERROR: "usb_put_intf" [drivers/staging/uwb/hwa-rc.ko] undefined!
ERROR: "uwb_rc_rm" [drivers/staging/uwb/hwa-rc.ko] undefined!
ERROR: "uwb_rc_pre_reset" [drivers/staging/uwb/hwa-rc.ko] undefined!
ERROR: "uwb_rc_post_reset" [drivers/staging/uwb/hwa-rc.ko] undefined!
ERROR: "umc_driver_unregister" [drivers/staging/uwb/whc-rc.ko] undefined!
ERROR: "__umc_driver_register" [drivers/staging/uwb/whc-rc.ko] undefined!
ERROR: "uwb_rc_add" [drivers/staging/uwb/whc-rc.ko] undefined!
ERROR: "dma_alloc_attrs" [drivers/staging/uwb/whc-rc.ko] undefined!
ERROR: "request_threaded_irq" [drivers/staging/uwb/whc-rc.ko] undefined!
ERROR: "ioremap" [drivers/staging/uwb/whc-rc.ko] undefined!
ERROR: "__request_region" [drivers/staging/uwb/whc-rc.ko] undefined!
ERROR: "lockdep_init_map" [drivers/staging/uwb/whc-rc.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/staging/uwb/whc-rc.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/staging/uwb/whc-rc.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/staging/uwb/whc-rc.ko] undefined!
ERROR: "kmalloc_caches" [drivers/staging/uwb/whc-rc.ko] undefined!
ERROR: "uwb_rc_alloc" [drivers/staging/uwb/whc-rc.ko] undefined!
ERROR: "__wake_up" [drivers/staging/uwb/whc-rc.ko] undefined!
ERROR: "queue_work_on" [drivers/staging/uwb/whc-rc.ko] undefined!
ERROR: "system_wq" [drivers/staging/uwb/whc-rc.ko] undefined!
ERROR: "uwb_rc_neh_grok" [drivers/staging/uwb/whc-rc.ko] undefined!
ERROR: "uwb_rc_reset_all" [drivers/staging/uwb/whc-rc.ko] undefined!
ERROR: "_dev_err" [drivers/staging/uwb/whc-rc.ko] undefined!
ERROR: "schedule_timeout" [drivers/staging/uwb/whc-rc.ko] undefined!
ERROR: "finish_wait" [drivers/staging/uwb/whc-rc.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/staging/uwb/whc-rc.ko] undefined!
ERROR: "init_wait_entry" [drivers/staging/uwb/whc-rc.ko] undefined!
ERROR: "memmove" [drivers/staging/uwb/whc-rc.ko] undefined!
ERROR: "__might_sleep" [drivers/staging/uwb/whc-rc.ko] undefined!
ERROR: "umc_controller_reset" [drivers/staging/uwb/whc-rc.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/staging/uwb/whc-rc.ko] undefined!
ERROR: "ioread32" [drivers/staging/uwb/whc-rc.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/staging/uwb/whc-rc.ko] undefined!
ERROR: "whci_wait_for" [drivers/staging/uwb/whc-rc.ko] undefined!
ERROR: "cancel_work_sync" [drivers/staging/uwb/whc-rc.ko] undefined!
ERROR: "iowrite32" [drivers/staging/uwb/whc-rc.ko] undefined!
ERROR: "uwb_rc_put" [drivers/staging/uwb/whc-rc.ko] undefined!
ERROR: "kfree" [drivers/staging/uwb/whc-rc.ko] undefined!
ERROR: "uwb_rc_rm" [drivers/staging/uwb/whc-rc.ko] undefined!
ERROR: "__release_region" [drivers/staging/uwb/whc-rc.ko] undefined!
ERROR: "iomem_resource" [drivers/staging/uwb/whc-rc.ko] undefined!
ERROR: "iounmap" [drivers/staging/uwb/whc-rc.ko] undefined!
ERROR: "free_irq" [drivers/staging/uwb/whc-rc.ko] undefined!
ERROR: "dma_free_attrs" [drivers/staging/uwb/whc-rc.ko] undefined!
ERROR: "uwb_rc_pre_reset" [drivers/staging/uwb/whc-rc.ko] undefined!
ERROR: "uwb_rc_post_reset" [drivers/staging/uwb/whc-rc.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/staging/uwb/whci.ko] undefined!
ERROR: "__pci_register_driver" [drivers/staging/uwb/whci.ko] undefined!
ERROR: "msleep" [drivers/staging/uwb/whci.ko] undefined!
ERROR: "_dev_err" [drivers/staging/uwb/whci.ko] undefined!
ERROR: "_dev_warn" [drivers/staging/uwb/whci.ko] undefined!
ERROR: "umc_device_register" [drivers/staging/uwb/whci.ko] undefined!
ERROR: "umc_device_create" [drivers/staging/uwb/whci.ko] undefined!
ERROR: "__request_region" [drivers/staging/uwb/whci.ko] undefined!
ERROR: "__kmalloc" [drivers/staging/uwb/whci.ko] undefined!
ERROR: "ioread32" [drivers/staging/uwb/whci.ko] undefined!
ERROR: "pci_iomap" [drivers/staging/uwb/whci.ko] undefined!
ERROR: "dma_set_coherent_mask" [drivers/staging/uwb/whci.ko] undefined!
ERROR: "dma_set_mask" [drivers/staging/uwb/whci.ko] undefined!
ERROR: "pci_set_master" [drivers/staging/uwb/whci.ko] undefined!
ERROR: "pci_enable_device" [drivers/staging/uwb/whci.ko] undefined!
ERROR: "pci_disable_device" [drivers/staging/uwb/whci.ko] undefined!
ERROR: "kfree" [drivers/staging/uwb/whci.ko] undefined!
ERROR: "__release_region" [drivers/staging/uwb/whci.ko] undefined!
ERROR: "iomem_resource" [drivers/staging/uwb/whci.ko] undefined!
ERROR: "pci_iounmap" [drivers/staging/uwb/whci.ko] undefined!
ERROR: "umc_device_unregister" [drivers/staging/uwb/whci.ko] undefined!
ERROR: "bus_register" [drivers/staging/uwb/umc.ko] undefined!
ERROR: "kmalloc_caches" [drivers/staging/uwb/umc.ko] undefined!
ERROR: "pci_bus_type" [drivers/staging/uwb/umc.ko] undefined!
ERROR: "driver_register" [drivers/staging/uwb/umc.ko] undefined!
ERROR: "release_resource" [drivers/staging/uwb/umc.ko] undefined!
ERROR: "device_release_driver" [drivers/staging/uwb/umc.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/staging/uwb/umc.ko] undefined!
ERROR: "pci_match_id" [drivers/staging/uwb/umc.ko] undefined!
ERROR: "mutex_unlock" [drivers/staging/uwb/umc.ko] undefined!
ERROR: "sprintf" [drivers/staging/uwb/umc.ko] undefined!
ERROR: "mutex_trylock" [drivers/staging/uwb/umc.ko] undefined!
ERROR: "device_register" [drivers/staging/uwb/umc.ko] undefined!
ERROR: "printk" [drivers/staging/uwb/umc.ko] undefined!
ERROR: "driver_unregister" [drivers/staging/uwb/umc.ko] undefined!
ERROR: "device_attach" [drivers/staging/uwb/umc.ko] undefined!
ERROR: "_dev_err" [drivers/staging/uwb/umc.ko] undefined!
ERROR: "bus_unregister" [drivers/staging/uwb/umc.ko] undefined!
ERROR: "put_device" [drivers/staging/uwb/umc.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/staging/uwb/umc.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/staging/uwb/umc.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/staging/uwb/umc.ko] undefined!
ERROR: "get_device" [drivers/staging/uwb/umc.ko] undefined!
ERROR: "device_for_each_child" [drivers/staging/uwb/umc.ko] undefined!
ERROR: "kfree" [drivers/staging/uwb/umc.ko] undefined!
ERROR: "device_unregister" [drivers/staging/uwb/umc.ko] undefined!
ERROR: "dev_set_name" [drivers/staging/uwb/umc.ko] undefined!
ERROR: "request_resource" [drivers/staging/uwb/umc.ko] undefined!
ERROR: "class_find_device" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "bus_register" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "kmalloc_caches" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "__kmalloc" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "msleep" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "debugfs_create_dir" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "single_open" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "__bitmap_shift_right" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "del_timer" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "strlen" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "_raw_write_lock_irqsave" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "get_random_bytes" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "single_release" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "no_llseek" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "delayed_work_timer_fn" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "seq_printf" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "init_timer_key" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "cancel_delayed_work_sync" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "mutex_unlock" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "debugfs_create_file" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "sprintf" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "seq_read" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "sysfs_remove_group" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "kthread_create_on_node" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "jiffies" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "__might_sleep" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "_raw_write_unlock_irqrestore" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "wait_for_completion" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "__bitmap_or" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "_dev_warn" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "__bitmap_intersects" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "device_del" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "__mutex_init" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "printk" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "sscanf" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "kthread_stop" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "sysfs_create_group" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "memcmp" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "class_unregister" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "__bitmap_subset" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "find_next_zero_bit" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "_raw_spin_unlock_irq" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "debugfs_remove" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "mac_pton" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "destroy_workqueue" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "__usecs_to_jiffies" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "__bitmap_complement" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "mod_timer" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "prandom_u32" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "sysfs_remove_link" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "device_add" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "simple_open" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "debugfs_create_bool" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "__class_register" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "_dev_err" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "bus_unregister" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "__list_add_valid" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "flush_workqueue" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "init_wait_entry" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "find_first_zero_bit" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "sysfs_create_link" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "_dev_info" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "_raw_read_lock_irqsave" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "put_device" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "queue_delayed_work_on" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "refcount_warn_saturate" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "__bitmap_andnot" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "schedule_timeout" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "_raw_spin_lock_irq" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "_raw_read_unlock_irqrestore" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "jiffies_to_usecs" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "wake_up_process" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "get_device" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "__wake_up" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "kthread_should_stop" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "device_for_each_child" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "__bitmap_and" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "seq_lseek" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "kfree" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "device_initialize" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "scnprintf" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "lockdep_init_map" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "__sw_hweight32" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "finish_wait" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "mutex_lock_interruptible_nested" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "queue_work_on" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "complete" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "snprintf" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "memmove" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "dev_set_name" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "__msecs_to_jiffies" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "_copy_from_user" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "alloc_workqueue" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "krealloc" [drivers/staging/uwb/uwb.ko] undefined!
ERROR: "disable_irq" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "kmem_cache_destroy" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "bus_register" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "kmalloc_caches" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "driver_register" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "__kfifo_out" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "__warn_printk" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "regmap_bulk_read" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "devres_free" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "regmap_bulk_write" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "regmap_read" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "kthread_create_on_node" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "jiffies" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "__might_sleep" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "__kfifo_init" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "_copy_to_user" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "_dev_warn" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "device_register" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "printk" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "kthread_stop" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "wait_for_completion_interruptible" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "driver_unregister" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "__devres_alloc_node" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "kmem_cache_free" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "_dev_err" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "bus_unregister" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "init_wait_entry" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "of_get_address" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "_dev_info" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "kmem_cache_alloc" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "usleep_range" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "refcount_warn_saturate" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "of_get_next_child" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "schedule_timeout" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "dump_stack" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "add_device_randomness" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "wake_up_process" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "devres_add" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "kmem_cache_create" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "__wake_up" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "kthread_should_stop" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "enable_irq" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "kfree" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "finish_wait" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "device_unregister" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "__kfifo_in" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "complete" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "dev_set_name" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "devm_kmalloc" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "wait_for_completion_timeout" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "_copy_from_user" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "regmap_write" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "completion_done" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "__kfifo_out_peek" [drivers/staging/fieldbus/anybuss/anybuss_core.ko] undefined!
ERROR: "cdev_del" [drivers/staging/fieldbus/fieldbus_dev.ko] undefined!
ERROR: "kmalloc_caches" [drivers/staging/fieldbus/fieldbus_dev.ko] undefined!
ERROR: "cdev_init" [drivers/staging/fieldbus/fieldbus_dev.ko] undefined!
ERROR: "generic_file_llseek" [drivers/staging/fieldbus/fieldbus_dev.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/staging/fieldbus/fieldbus_dev.ko] undefined!
ERROR: "kobject_uevent" [drivers/staging/fieldbus/fieldbus_dev.ko] undefined!
ERROR: "device_destroy" [drivers/staging/fieldbus/fieldbus_dev.ko] undefined!
ERROR: "mutex_unlock" [drivers/staging/fieldbus/fieldbus_dev.ko] undefined!
ERROR: "unregister_chrdev_region" [drivers/staging/fieldbus/fieldbus_dev.ko] undefined!
ERROR: "sprintf" [drivers/staging/fieldbus/fieldbus_dev.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/staging/fieldbus/fieldbus_dev.ko] undefined!
ERROR: "kstrtobool" [drivers/staging/fieldbus/fieldbus_dev.ko] undefined!
ERROR: "printk" [drivers/staging/fieldbus/fieldbus_dev.ko] undefined!
ERROR: "class_unregister" [drivers/staging/fieldbus/fieldbus_dev.ko] undefined!
ERROR: "ida_free" [drivers/staging/fieldbus/fieldbus_dev.ko] undefined!
ERROR: "device_create" [drivers/staging/fieldbus/fieldbus_dev.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/staging/fieldbus/fieldbus_dev.ko] undefined!
ERROR: "__class_register" [drivers/staging/fieldbus/fieldbus_dev.ko] undefined!
ERROR: "cdev_add" [drivers/staging/fieldbus/fieldbus_dev.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/staging/fieldbus/fieldbus_dev.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/staging/fieldbus/fieldbus_dev.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/staging/fieldbus/fieldbus_dev.ko] undefined!
ERROR: "__wake_up" [drivers/staging/fieldbus/fieldbus_dev.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/staging/fieldbus/fieldbus_dev.ko] undefined!
ERROR: "kfree" [drivers/staging/fieldbus/fieldbus_dev.ko] undefined!
ERROR: "snprintf" [drivers/staging/fieldbus/fieldbus_dev.ko] undefined!
ERROR: "ida_destroy" [drivers/staging/fieldbus/fieldbus_dev.ko] undefined!
ERROR: "alloc_chrdev_region" [drivers/staging/fieldbus/fieldbus_dev.ko] undefined!
ERROR: "ida_alloc_range" [drivers/staging/fieldbus/fieldbus_dev.ko] undefined!
ERROR: "param_ops_int" [drivers/staging/axis-fifo/axis-fifo.ko] undefined!
ERROR: "class_destroy" [drivers/staging/axis-fifo/axis-fifo.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/staging/axis-fifo/axis-fifo.ko] undefined!
ERROR: "__platform_driver_register" [drivers/staging/axis-fifo/axis-fifo.ko] undefined!
ERROR: "__class_create" [drivers/staging/axis-fifo/axis-fifo.ko] undefined!
ERROR: "printk" [drivers/staging/axis-fifo/axis-fifo.ko] undefined!
ERROR: "_dev_info" [drivers/staging/axis-fifo/axis-fifo.ko] undefined!
ERROR: "devm_device_add_group" [drivers/staging/axis-fifo/axis-fifo.ko] undefined!
ERROR: "cdev_add" [drivers/staging/axis-fifo/axis-fifo.ko] undefined!
ERROR: "cdev_init" [drivers/staging/axis-fifo/axis-fifo.ko] undefined!
ERROR: "device_create" [drivers/staging/axis-fifo/axis-fifo.ko] undefined!
ERROR: "alloc_chrdev_region" [drivers/staging/axis-fifo/axis-fifo.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/staging/axis-fifo/axis-fifo.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/staging/axis-fifo/axis-fifo.ko] undefined!
ERROR: "platform_get_resource" [drivers/staging/axis-fifo/axis-fifo.ko] undefined!
ERROR: "__mutex_init" [drivers/staging/axis-fifo/axis-fifo.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/staging/axis-fifo/axis-fifo.ko] undefined!
ERROR: "devm_kmalloc" [drivers/staging/axis-fifo/axis-fifo.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/staging/axis-fifo/axis-fifo.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/staging/axis-fifo/axis-fifo.ko] undefined!
ERROR: "__wake_up" [drivers/staging/axis-fifo/axis-fifo.ko] undefined!
ERROR: "_copy_to_user" [drivers/staging/axis-fifo/axis-fifo.ko] undefined!
ERROR: "schedule_timeout" [drivers/staging/axis-fifo/axis-fifo.ko] undefined!
ERROR: "finish_wait" [drivers/staging/axis-fifo/axis-fifo.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/staging/axis-fifo/axis-fifo.ko] undefined!
ERROR: "init_wait_entry" [drivers/staging/axis-fifo/axis-fifo.ko] undefined!
ERROR: "__might_sleep" [drivers/staging/axis-fifo/axis-fifo.ko] undefined!
ERROR: "__msecs_to_jiffies" [drivers/staging/axis-fifo/axis-fifo.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/staging/axis-fifo/axis-fifo.ko] undefined!
ERROR: "mutex_unlock" [drivers/staging/axis-fifo/axis-fifo.ko] undefined!
ERROR: "_copy_from_user" [drivers/staging/axis-fifo/axis-fifo.ko] undefined!
ERROR: "mutex_trylock" [drivers/staging/axis-fifo/axis-fifo.ko] undefined!
ERROR: "_kstrtoul" [drivers/staging/axis-fifo/axis-fifo.ko] undefined!
ERROR: "iowrite32" [drivers/staging/axis-fifo/axis-fifo.ko] undefined!
ERROR: "snprintf" [drivers/staging/axis-fifo/axis-fifo.ko] undefined!
ERROR: "ioread32" [drivers/staging/axis-fifo/axis-fifo.ko] undefined!
ERROR: "_dev_err" [drivers/staging/axis-fifo/axis-fifo.ko] undefined!
ERROR: "unregister_chrdev_region" [drivers/staging/axis-fifo/axis-fifo.ko] undefined!
ERROR: "device_destroy" [drivers/staging/axis-fifo/axis-fifo.ko] undefined!
ERROR: "cdev_del" [drivers/staging/axis-fifo/axis-fifo.ko] undefined!
ERROR: "tty_port_tty_get" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "rcu_lock_map" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "system_wq" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "fw_csr_iterator_next" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "kmem_cache_destroy" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "kmalloc_caches" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "__kmalloc" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "driver_register" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "debugfs_create_dir" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "single_open" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "param_ops_int" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "del_timer" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "schedule_timeout_uninterruptible" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "fw_send_request" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "single_release" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "system_unbound_wq" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "seq_puts" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "boot_cpu_data" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "tty_port_open" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "_raw_spin_lock_bh" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "delayed_work_timer_fn" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "seq_printf" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "__warn_printk" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "tty_port_hangup" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "tty_termios_encode_baud_rate" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "cancel_work_sync" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "fw_bus_type" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "tty_register_driver" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "fw_csr_iterator_init" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "param_ops_bool" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "init_timer_key" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "cancel_delayed_work_sync" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "mutex_unlock" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "put_tty_driver" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "debugfs_create_file" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "__preempt_count" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "_dev_notice" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "debugfs_remove_recursive" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "seq_read" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "tty_buffer_space_avail" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "rcu_read_lock_held" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "jiffies" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "__might_sleep" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "tty_set_operations" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "lock_release" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "lock_acquire" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "__tty_insert_flip_char" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "tty_port_close" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "debug_lockdep_rcu_enabled" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "fw_core_add_descriptor" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "printk" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "tty_port_register_device" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "mod_delayed_work_on" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "driver_unregister" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "seq_putc" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "tty_port_init" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "kmem_cache_free" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "tty_insert_flip_string_fixed_flag" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "tty_port_destroy" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "mod_timer" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "tty_buffer_set_limit" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "tty_vhangup" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "synchronize_rcu" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "_dev_err" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "__list_add_valid" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "init_wait_entry" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "tty_port_tty_wakeup" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "capable" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "tty_unregister_device" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "_dev_info" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "kmem_cache_alloc" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "tty_std_termios" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "_raw_spin_unlock_bh" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "queue_delayed_work_on" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "refcount_warn_saturate" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "schedule" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "schedule_timeout" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "___ratelimit" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "fw_core_add_address_handler" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "kmem_cache_create" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "tty_unregister_driver" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "__wake_up" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "tty_standard_install" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "__tty_alloc_driver" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "fw_core_remove_address_handler" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "tty_termios_baud_rate" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "seq_lseek" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "kfree" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "lockdep_init_map" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "tty_kref_put" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "finish_wait" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "tty_flip_buffer_push" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "queue_work_on" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "tty_wakeup" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "fw_high_memory_region" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "fw_run_transaction" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "lockdep_rcu_suspicious" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "fw_send_response" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "fw_core_remove_descriptor" [drivers/staging/fwserial/firewire-serial.ko] undefined!
ERROR: "tty_port_tty_get" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "system_wq" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "kmalloc_caches" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "match_string" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "tty_port_open" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "delayed_work_timer_fn" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "tty_port_hangup" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "cancel_work_sync" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "usb_kill_urb" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "tty_register_driver" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "init_timer_key" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "mutex_unlock" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "usb_autopm_get_interface" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "tty_buffer_request_room" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "put_tty_driver" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "tty_set_operations" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "tty_port_put" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "tty_port_close" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "cancel_delayed_work" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "usb_deregister" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "printk" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "tty_port_register_device" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "usb_control_msg" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "tty_port_init" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "tty_insert_flip_string_fixed_flag" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "tty_vhangup" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "_dev_err" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "__list_add_valid" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "tty_port_tty_wakeup" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "tty_unregister_device" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "_dev_info" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "usb_submit_urb" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "tty_std_termios" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "usb_get_dev" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "refcount_warn_saturate" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "usb_put_dev" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "kmalloc_order_trace" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "tty_unregister_driver" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "tty_standard_install" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "__tty_alloc_driver" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "kfree" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "usb_register_driver" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "lockdep_init_map" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "tty_kref_put" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "tty_flip_buffer_push" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "queue_work_on" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "ktime_get_mono_fast_ns" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "usb_free_urb" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "usb_autopm_put_interface" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "usb_alloc_urb" [drivers/staging/gdm724x/gdmtty.ko] undefined!
ERROR: "system_wq" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "netdev_info" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "kmalloc_caches" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "__kmalloc" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "netlink_has_listeners" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "get_random_bytes" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "sock_release" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "netif_carrier_on" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "delayed_work_timer_fn" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "cancel_work_sync" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "usb_kill_urb" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "init_timer_key" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "mutex_unlock" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "usb_autopm_get_interface" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "usb_enable_autosuspend" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "sprintf" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "__netdev_alloc_skb" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "netif_rx_ni" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "netif_tx_wake_queue" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "usb_deregister" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "printk" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "sscanf" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "free_netdev" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "register_netdev" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "dev_get_by_index" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "skb_pull" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "init_net" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "_dev_err" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "__list_add_valid" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "_dev_info" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "usb_submit_urb" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "__alloc_skb" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "usb_get_dev" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "netlink_broadcast" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "usb_bulk_msg" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "usb_put_dev" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "kmalloc_order_trace" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "alloc_netdev_mqs" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "netdev_err" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "ether_setup" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "__netlink_kernel_create" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "kfree" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "usb_register_driver" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "lockdep_init_map" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "pm_runtime_set_autosuspend_delay" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "unregister_netdev" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "queue_work_on" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "consume_skb" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "ktime_get_mono_fast_ns" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "skb_put" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "__nlmsg_put" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "usb_free_urb" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "usb_autopm_put_interface" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "usb_alloc_urb" [drivers/staging/gdm724x/gdmulte.ko] undefined!
ERROR: "kmalloc_caches" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "__kmalloc" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "ioremap_wc" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "pcim_enable_device" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "strlen" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "framebuffer_release" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "memset_io" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "__x86_indirect_thunk_eax" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "cfb_fillrect" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "strsep" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "pv_ops" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "fb_set_suspend" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "console_unlock" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "param_ops_charp" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "pci_set_master" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "_dev_warn" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "remove_conflicting_framebuffers" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "pci_restore_state" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "cfb_imageblit" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "printk" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "fb_alloc_cmap" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "ioremap" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "register_framebuffer" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "strncmp" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "console_lock" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "strlcpy" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "_dev_err" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "vesa_modes" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "strcat" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "_dev_info" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "fb_find_mode" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "pci_set_power_state" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "framebuffer_alloc" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "iowrite16" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "kfree" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "iounmap" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "__pci_register_driver" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "cfb_copyarea" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "pci_choose_state" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "pci_enable_device" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "devm_kmalloc" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "pci_request_region" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "pci_save_state" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "unregister_framebuffer" [drivers/staging/sm750fb/sm750fb.ko] undefined!
ERROR: "netdev_info" [drivers/staging/most/net/most_net.ko] undefined!
ERROR: "most_stop_channel" [drivers/staging/most/net/most_net.ko] undefined!
ERROR: "most_deregister_configfs_subsys" [drivers/staging/most/net/most_net.ko] undefined!
ERROR: "most_register_component" [drivers/staging/most/net/most_net.ko] undefined!
ERROR: "netif_carrier_on" [drivers/staging/most/net/most_net.ko] undefined!
ERROR: "netif_carrier_off" [drivers/staging/most/net/most_net.ko] undefined!
ERROR: "linkwatch_fire_event" [drivers/staging/most/net/most_net.ko] undefined!
ERROR: "mutex_unlock" [drivers/staging/most/net/most_net.ko] undefined!
ERROR: "most_put_mbo" [drivers/staging/most/net/most_net.ko] undefined!
ERROR: "__netdev_alloc_skb" [drivers/staging/most/net/most_net.ko] undefined!
ERROR: "netif_rx" [drivers/staging/most/net/most_net.ko] undefined!
ERROR: "netif_tx_wake_queue" [drivers/staging/most/net/most_net.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/staging/most/net/most_net.ko] undefined!
ERROR: "most_deregister_component" [drivers/staging/most/net/most_net.ko] undefined!
ERROR: "__mutex_init" [drivers/staging/most/net/most_net.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/staging/most/net/most_net.ko] undefined!
ERROR: "printk" [drivers/staging/most/net/most_net.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/staging/most/net/most_net.ko] undefined!
ERROR: "free_netdev" [drivers/staging/most/net/most_net.ko] undefined!
ERROR: "register_netdev" [drivers/staging/most/net/most_net.ko] undefined!
ERROR: "most_submit_mbo" [drivers/staging/most/net/most_net.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/staging/most/net/most_net.ko] undefined!
ERROR: "__list_add_valid" [drivers/staging/most/net/most_net.ko] undefined!
ERROR: "kfree_skb" [drivers/staging/most/net/most_net.ko] undefined!
ERROR: "most_get_mbo" [drivers/staging/most/net/most_net.ko] undefined!
ERROR: "alloc_netdev_mqs" [drivers/staging/most/net/most_net.ko] undefined!
ERROR: "eth_type_trans" [drivers/staging/most/net/most_net.ko] undefined!
ERROR: "netdev_err" [drivers/staging/most/net/most_net.ko] undefined!
ERROR: "ether_setup" [drivers/staging/most/net/most_net.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/staging/most/net/most_net.ko] undefined!
ERROR: "netdev_warn" [drivers/staging/most/net/most_net.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/staging/most/net/most_net.ko] undefined!
ERROR: "most_start_channel" [drivers/staging/most/net/most_net.ko] undefined!
ERROR: "unregister_netdev" [drivers/staging/most/net/most_net.ko] undefined!
ERROR: "skb_put" [drivers/staging/most/net/most_net.ko] undefined!
ERROR: "eth_mac_addr" [drivers/staging/most/net/most_net.ko] undefined!
ERROR: "most_register_configfs_subsys" [drivers/staging/most/net/most_net.ko] undefined!
ERROR: "i2c_del_driver" [drivers/staging/iio/impedance-analyzer/ad5933.ko] undefined!
ERROR: "i2c_register_driver" [drivers/staging/iio/impedance-analyzer/ad5933.ko] undefined!
ERROR: "__const_udelay" [drivers/staging/iio/impedance-analyzer/ad5933.ko] undefined!
ERROR: "clk_enable" [drivers/staging/iio/impedance-analyzer/ad5933.ko] undefined!
ERROR: "__iio_device_register" [drivers/staging/iio/impedance-analyzer/ad5933.ko] undefined!
ERROR: "iio_device_attach_buffer" [drivers/staging/iio/impedance-analyzer/ad5933.ko] undefined!
ERROR: "iio_kfifo_allocate" [drivers/staging/iio/impedance-analyzer/ad5933.ko] undefined!
ERROR: "init_timer_key" [drivers/staging/iio/impedance-analyzer/ad5933.ko] undefined!
ERROR: "delayed_work_timer_fn" [drivers/staging/iio/impedance-analyzer/ad5933.ko] undefined!
ERROR: "lockdep_init_map" [drivers/staging/iio/impedance-analyzer/ad5933.ko] undefined!
ERROR: "clk_get_rate" [drivers/staging/iio/impedance-analyzer/ad5933.ko] undefined!
ERROR: "clk_prepare" [drivers/staging/iio/impedance-analyzer/ad5933.ko] undefined!
ERROR: "devm_clk_get" [drivers/staging/iio/impedance-analyzer/ad5933.ko] undefined!
ERROR: "regulator_get_voltage" [drivers/staging/iio/impedance-analyzer/ad5933.ko] undefined!
ERROR: "regulator_enable" [drivers/staging/iio/impedance-analyzer/ad5933.ko] undefined!
ERROR: "devm_regulator_get" [drivers/staging/iio/impedance-analyzer/ad5933.ko] undefined!
ERROR: "__mutex_init" [drivers/staging/iio/impedance-analyzer/ad5933.ko] undefined!
ERROR: "devm_iio_device_alloc" [drivers/staging/iio/impedance-analyzer/ad5933.ko] undefined!
ERROR: "find_first_bit" [drivers/staging/iio/impedance-analyzer/ad5933.ko] undefined!
ERROR: "cancel_delayed_work_sync" [drivers/staging/iio/impedance-analyzer/ad5933.ko] undefined!
ERROR: "queue_delayed_work_on" [drivers/staging/iio/impedance-analyzer/ad5933.ko] undefined!
ERROR: "system_wq" [drivers/staging/iio/impedance-analyzer/ad5933.ko] undefined!
ERROR: "iio_push_to_buffers" [drivers/staging/iio/impedance-analyzer/ad5933.ko] undefined!
ERROR: "__bitmap_weight" [drivers/staging/iio/impedance-analyzer/ad5933.ko] undefined!
ERROR: "_kstrtoul" [drivers/staging/iio/impedance-analyzer/ad5933.ko] undefined!
ERROR: "sysfs_streq" [drivers/staging/iio/impedance-analyzer/ad5933.ko] undefined!
ERROR: "iio_device_release_direct_mode" [drivers/staging/iio/impedance-analyzer/ad5933.ko] undefined!
ERROR: "iio_device_claim_direct_mode" [drivers/staging/iio/impedance-analyzer/ad5933.ko] undefined!
ERROR: "kstrtou16" [drivers/staging/iio/impedance-analyzer/ad5933.ko] undefined!
ERROR: "mutex_unlock" [drivers/staging/iio/impedance-analyzer/ad5933.ko] undefined!
ERROR: "sprintf" [drivers/staging/iio/impedance-analyzer/ad5933.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/staging/iio/impedance-analyzer/ad5933.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/staging/iio/impedance-analyzer/ad5933.ko] undefined!
ERROR: "_dev_err" [drivers/staging/iio/impedance-analyzer/ad5933.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/staging/iio/impedance-analyzer/ad5933.ko] undefined!
ERROR: "clk_unprepare" [drivers/staging/iio/impedance-analyzer/ad5933.ko] undefined!
ERROR: "clk_disable" [drivers/staging/iio/impedance-analyzer/ad5933.ko] undefined!
ERROR: "regulator_disable" [drivers/staging/iio/impedance-analyzer/ad5933.ko] undefined!
ERROR: "iio_kfifo_free" [drivers/staging/iio/impedance-analyzer/ad5933.ko] undefined!
ERROR: "iio_device_unregister" [drivers/staging/iio/impedance-analyzer/ad5933.ko] undefined!
ERROR: "param_ops_int" [drivers/staging/vme/devices/vme_user.ko] undefined!
ERROR: "param_array_ops" [drivers/staging/vme/devices/vme_user.ko] undefined!
ERROR: "vme_unregister_driver" [drivers/staging/vme/devices/vme_user.ko] undefined!
ERROR: "vme_register_driver" [drivers/staging/vme/devices/vme_user.ko] undefined!
ERROR: "vme_master_read" [drivers/staging/vme/devices/vme_user.ko] undefined!
ERROR: "refcount_warn_saturate" [drivers/staging/vme/devices/vme_user.ko] undefined!
ERROR: "_dev_info" [drivers/staging/vme/devices/vme_user.ko] undefined!
ERROR: "_dev_warn" [drivers/staging/vme/devices/vme_user.ko] undefined!
ERROR: "_dev_err" [drivers/staging/vme/devices/vme_user.ko] undefined!
ERROR: "device_create" [drivers/staging/vme/devices/vme_user.ko] undefined!
ERROR: "__class_create" [drivers/staging/vme/devices/vme_user.ko] undefined!
ERROR: "kmalloc_order_trace" [drivers/staging/vme/devices/vme_user.ko] undefined!
ERROR: "vme_master_request" [drivers/staging/vme/devices/vme_user.ko] undefined!
ERROR: "vme_alloc_consistent" [drivers/staging/vme/devices/vme_user.ko] undefined!
ERROR: "vme_slave_request" [drivers/staging/vme/devices/vme_user.ko] undefined!
ERROR: "cdev_add" [drivers/staging/vme/devices/vme_user.ko] undefined!
ERROR: "cdev_alloc" [drivers/staging/vme/devices/vme_user.ko] undefined!
ERROR: "register_chrdev_region" [drivers/staging/vme/devices/vme_user.ko] undefined!
ERROR: "__mutex_init" [drivers/staging/vme/devices/vme_user.ko] undefined!
ERROR: "printk" [drivers/staging/vme/devices/vme_user.ko] undefined!
ERROR: "vme_master_set" [drivers/staging/vme/devices/vme_user.ko] undefined!
ERROR: "vme_irq_generate" [drivers/staging/vme/devices/vme_user.ko] undefined!
ERROR: "_copy_to_user" [drivers/staging/vme/devices/vme_user.ko] undefined!
ERROR: "vme_master_get" [drivers/staging/vme/devices/vme_user.ko] undefined!
ERROR: "vme_slave_get" [drivers/staging/vme/devices/vme_user.ko] undefined!
ERROR: "vme_master_write" [drivers/staging/vme/devices/vme_user.ko] undefined!
ERROR: "_copy_from_user" [drivers/staging/vme/devices/vme_user.ko] undefined!
ERROR: "vme_slot_num" [drivers/staging/vme/devices/vme_user.ko] undefined!
ERROR: "vme_bus_num" [drivers/staging/vme/devices/vme_user.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/staging/vme/devices/vme_user.ko] undefined!
ERROR: "kmalloc_caches" [drivers/staging/vme/devices/vme_user.ko] undefined!
ERROR: "vme_master_mmap" [drivers/staging/vme/devices/vme_user.ko] undefined!
ERROR: "mutex_unlock" [drivers/staging/vme/devices/vme_user.ko] undefined!
ERROR: "fixed_size_llseek" [drivers/staging/vme/devices/vme_user.ko] undefined!
ERROR: "vme_get_size" [drivers/staging/vme/devices/vme_user.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/staging/vme/devices/vme_user.ko] undefined!
ERROR: "unregister_chrdev_region" [drivers/staging/vme/devices/vme_user.ko] undefined!
ERROR: "cdev_del" [drivers/staging/vme/devices/vme_user.ko] undefined!
ERROR: "vme_slave_free" [drivers/staging/vme/devices/vme_user.ko] undefined!
ERROR: "vme_free_consistent" [drivers/staging/vme/devices/vme_user.ko] undefined!
ERROR: "vme_slave_set" [drivers/staging/vme/devices/vme_user.ko] undefined!
ERROR: "vme_master_free" [drivers/staging/vme/devices/vme_user.ko] undefined!
ERROR: "kfree" [drivers/staging/vme/devices/vme_user.ko] undefined!
ERROR: "class_destroy" [drivers/staging/vme/devices/vme_user.ko] undefined!
ERROR: "device_destroy" [drivers/staging/vme/devices/vme_user.ko] undefined!
ERROR: "mutex_destroy" [drivers/staging/vme/devices/vme_user.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/staging/media/phy-rockchip-dphy-rx0/phy-rockchip-dphy-rx0.ko] undefined!
ERROR: "__platform_driver_register" [drivers/staging/media/phy-rockchip-dphy-rx0/phy-rockchip-dphy-rx0.ko] undefined!
ERROR: "usleep_range" [drivers/staging/media/phy-rockchip-dphy-rx0/phy-rockchip-dphy-rx0.ko] undefined!
ERROR: "clk_bulk_enable" [drivers/staging/media/phy-rockchip-dphy-rx0/phy-rockchip-dphy-rx0.ko] undefined!
ERROR: "clk_bulk_disable" [drivers/staging/media/phy-rockchip-dphy-rx0/phy-rockchip-dphy-rx0.ko] undefined!
ERROR: "regmap_write" [drivers/staging/media/phy-rockchip-dphy-rx0/phy-rockchip-dphy-rx0.ko] undefined!
ERROR: "_dev_err" [drivers/staging/media/phy-rockchip-dphy-rx0/phy-rockchip-dphy-rx0.ko] undefined!
ERROR: "__devm_of_phy_provider_register" [drivers/staging/media/phy-rockchip-dphy-rx0/phy-rockchip-dphy-rx0.ko] undefined!
ERROR: "of_phy_simple_xlate" [drivers/staging/media/phy-rockchip-dphy-rx0/phy-rockchip-dphy-rx0.ko] undefined!
ERROR: "devm_phy_create" [drivers/staging/media/phy-rockchip-dphy-rx0/phy-rockchip-dphy-rx0.ko] undefined!
ERROR: "devm_clk_bulk_get" [drivers/staging/media/phy-rockchip-dphy-rx0/phy-rockchip-dphy-rx0.ko] undefined!
ERROR: "of_match_device" [drivers/staging/media/phy-rockchip-dphy-rx0/phy-rockchip-dphy-rx0.ko] undefined!
ERROR: "syscon_node_to_regmap" [drivers/staging/media/phy-rockchip-dphy-rx0/phy-rockchip-dphy-rx0.ko] undefined!
ERROR: "devm_kmalloc" [drivers/staging/media/phy-rockchip-dphy-rx0/phy-rockchip-dphy-rx0.ko] undefined!
ERROR: "clk_bulk_prepare" [drivers/staging/media/phy-rockchip-dphy-rx0/phy-rockchip-dphy-rx0.ko] undefined!
ERROR: "clk_bulk_unprepare" [drivers/staging/media/phy-rockchip-dphy-rx0/phy-rockchip-dphy-rx0.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/staging/media/phy-rockchip-dphy-rx0/phy-rockchip-dphy-rx0.ko] undefined!
ERROR: "phy_mipi_dphy_config_validate" [drivers/staging/media/phy-rockchip-dphy-rx0/phy-rockchip-dphy-rx0.ko] undefined!
ERROR: "clk_unprepare" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "v4l2_m2m_ioctl_prepare_buf" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "system_wq" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "kmalloc_caches" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "v4l2_event_unsubscribe" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "v4l2_m2m_ioctl_dqbuf" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "msleep" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "clk_enable" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "mutex_destroy" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "v4l2_event_queue_fh" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "gcd" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "v4l2_m2m_ctx_init" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "video_device_release" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "clk_disable" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "v4l2_ctrl_handler_free" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "v4l2_ctrl_new_std" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "vb2_ops_wait_prepare" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "v4l2_m2m_release" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "__video_register_device" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "mutex_unlock" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "v4l2_m2m_fop_mmap" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "dma_free_attrs" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "strscpy" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "meson_canvas_get" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "get_jiffies_64" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "v4l2_m2m_buf_remove_by_buf" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "__devm_reset_control_get" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "meson_canvas_alloc" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "kthread_create_on_node" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "__platform_driver_register" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "__might_sleep" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "v4l2_m2m_ioctl_streamon" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "v4l2_device_register" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "v4l2_m2m_ioctl_create_bufs" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "v4l2_m2m_buf_remove_by_idx" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "_dev_warn" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "video_device_alloc" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "v4l2_event_subscribe" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "v4l2_m2m_ioctl_streamoff" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "__mutex_init" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "kthread_stop" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "reset_control_reset" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "of_match_node" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "video_unregister_device" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "v4l2_m2m_ioctl_reqbufs" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "v4l2_fh_init" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "v4l2_ctrl_subscribe_event" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "vb2_plane_vaddr" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "vb2_buffer_done" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "dma_alloc_attrs" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "_dev_err" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "__list_add_valid" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "init_wait_entry" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "vb2_plane_cookie" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "__v4l2_ctrl_s_ctrl" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "_dev_info" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "meson_canvas_config" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "v4l2_m2m_ioctl_qbuf" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "usleep_range" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "v4l2_m2m_fop_poll" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "v4l2_m2m_ioctl_try_decoder_cmd" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "vb2_queue_error" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "syscon_regmap_lookup_by_phandle" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "video_devdata" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "v4l2_m2m_buf_queue" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "platform_get_irq_byname" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "schedule_timeout" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "clk_prepare" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "v4l2_m2m_ioctl_querybuf" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "wake_up_process" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "devm_clk_get" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "v4l2_m2m_ioctl_expbuf" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "clk_set_rate" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "platform_get_resource_byname" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "__wake_up" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "kthread_should_stop" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "meson_canvas_free" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "vb2_dma_contig_memops" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "kfree" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "v4l2_ctrl_handler_init_class" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "v4l2_m2m_buf_remove" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "lockdep_init_map" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "vb2_ops_wait_finish" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "request_firmware" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "finish_wait" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "v4l2_fh_add" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "v4l2_m2m_ctx_release" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "v4l2_fh_del" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "queue_work_on" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "devm_kmalloc" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "vb2_queue_release" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "regmap_write" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "release_firmware" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "video_ioctl2" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "v4l2_m2m_job_finish" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "v4l2_fh_exit" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "vb2_queue_init" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "v4l2_m2m_init" [drivers/staging/media/meson/vdec/meson-vdec.ko] undefined!
ERROR: "param_ops_bool" [drivers/hid/hid-led.ko] undefined!
ERROR: "hid_unregister_driver" [drivers/hid/hid-led.ko] undefined!
ERROR: "__hid_register_driver" [drivers/hid/hid-led.ko] undefined!
ERROR: "_dev_info" [drivers/hid/hid-led.ko] undefined!
ERROR: "hid_hw_stop" [drivers/hid/hid-led.ko] undefined!
ERROR: "hid_hw_start" [drivers/hid/hid-led.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/hid/hid-led.ko] undefined!
ERROR: "__mutex_init" [drivers/hid/hid-led.ko] undefined!
ERROR: "hid_open_report" [drivers/hid/hid-led.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hid/hid-led.ko] undefined!
ERROR: "devm_led_classdev_register_ext" [drivers/hid/hid-led.ko] undefined!
ERROR: "snprintf" [drivers/hid/hid-led.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/hid/hid-led.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/hid/hid-led.ko] undefined!
ERROR: "mutex_unlock" [drivers/hid/hid-led.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/hid/hid-led.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/hid/hid-led.ko] undefined!
ERROR: "hid_unregister_driver" [drivers/hid/hid-udraw-ps3.ko] undefined!
ERROR: "__hid_register_driver" [drivers/hid/hid-udraw-ps3.ko] undefined!
ERROR: "_dev_err" [drivers/hid/hid-udraw-ps3.ko] undefined!
ERROR: "hid_hw_start" [drivers/hid/hid-udraw-ps3.ko] undefined!
ERROR: "input_register_device" [drivers/hid/hid-udraw-ps3.ko] undefined!
ERROR: "input_alloc_absinfo" [drivers/hid/hid-udraw-ps3.ko] undefined!
ERROR: "input_set_abs_params" [drivers/hid/hid-udraw-ps3.ko] undefined!
ERROR: "hid_open_report" [drivers/hid/hid-udraw-ps3.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hid/hid-udraw-ps3.ko] undefined!
ERROR: "hid_hw_open" [drivers/hid/hid-udraw-ps3.ko] undefined!
ERROR: "hid_hw_close" [drivers/hid/hid-udraw-ps3.ko] undefined!
ERROR: "devm_input_allocate_device" [drivers/hid/hid-udraw-ps3.ko] undefined!
ERROR: "input_event" [drivers/hid/hid-udraw-ps3.ko] undefined!
ERROR: "hid_unregister_driver" [drivers/hid/hid-tivo.ko] undefined!
ERROR: "__hid_register_driver" [drivers/hid/hid-tivo.ko] undefined!
ERROR: "hid_unregister_driver" [drivers/hid/hid-tmff.ko] undefined!
ERROR: "__hid_register_driver" [drivers/hid/hid-tmff.ko] undefined!
ERROR: "_dev_err" [drivers/hid/hid-tmff.ko] undefined!
ERROR: "hid_hw_start" [drivers/hid/hid-tmff.ko] undefined!
ERROR: "hid_open_report" [drivers/hid/hid-tmff.ko] undefined!
ERROR: "hid_unregister_driver" [drivers/hid/hid-sunplus.ko] undefined!
ERROR: "__hid_register_driver" [drivers/hid/hid-sunplus.ko] undefined!
ERROR: "_dev_info" [drivers/hid/hid-sunplus.ko] undefined!
ERROR: "hid_unregister_driver" [drivers/hid/hid-speedlink.ko] undefined!
ERROR: "__hid_register_driver" [drivers/hid/hid-speedlink.ko] undefined!
ERROR: "hid_unregister_driver" [drivers/hid/hid-retrode.ko] undefined!
ERROR: "__hid_register_driver" [drivers/hid/hid-retrode.ko] undefined!
ERROR: "hid_hw_start" [drivers/hid/hid-retrode.ko] undefined!
ERROR: "hid_open_report" [drivers/hid/hid-retrode.ko] undefined!
ERROR: "_dev_err" [drivers/hid/hid-retrode.ko] undefined!
ERROR: "devm_kasprintf" [drivers/hid/hid-retrode.ko] undefined!
ERROR: "hid_unregister_driver" [drivers/hid/hid-penmount.ko] undefined!
ERROR: "__hid_register_driver" [drivers/hid/hid-penmount.ko] undefined!
ERROR: "param_ops_uint" [drivers/hid/hid-ntrig.ko] undefined!
ERROR: "hid_unregister_driver" [drivers/hid/hid-ntrig.ko] undefined!
ERROR: "__hid_register_driver" [drivers/hid/hid-ntrig.ko] undefined!
ERROR: "_dev_err" [drivers/hid/hid-ntrig.ko] undefined!
ERROR: "_dev_info" [drivers/hid/hid-ntrig.ko] undefined!
ERROR: "__hid_request" [drivers/hid/hid-ntrig.ko] undefined!
ERROR: "sysfs_create_group" [drivers/hid/hid-ntrig.ko] undefined!
ERROR: "usb_control_msg" [drivers/hid/hid-ntrig.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/hid/hid-ntrig.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/hid/hid-ntrig.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/hid/hid-ntrig.ko] undefined!
ERROR: "hid_hw_start" [drivers/hid/hid-ntrig.ko] undefined!
ERROR: "hid_open_report" [drivers/hid/hid-ntrig.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/hid/hid-ntrig.ko] undefined!
ERROR: "kmalloc_caches" [drivers/hid/hid-ntrig.ko] undefined!
ERROR: "sprintf" [drivers/hid/hid-ntrig.ko] undefined!
ERROR: "_kstrtoul" [drivers/hid/hid-ntrig.ko] undefined!
ERROR: "kfree" [drivers/hid/hid-ntrig.ko] undefined!
ERROR: "hid_hw_stop" [drivers/hid/hid-ntrig.ko] undefined!
ERROR: "sysfs_remove_group" [drivers/hid/hid-ntrig.ko] undefined!
ERROR: "input_event" [drivers/hid/hid-ntrig.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/hid/hid-ntrig.ko] undefined!
ERROR: "input_set_abs_params" [drivers/hid/hid-ntrig.ko] undefined!
ERROR: "param_ops_bool" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "hid_unregister_driver" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "__hid_register_driver" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "device_create_file" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "devm_kfree" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "alloc_workqueue" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "kmemdup" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "input_ff_create" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "down" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "up" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "hid_hw_start" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "sysfs_create_group" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "__mutex_init" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "hid_open_report" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "power_supply_powers" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "input_free_device" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "devm_power_supply_register" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "sprintf" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "devm_kmemdup" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "devm_kasprintf" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "input_register_device" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "devm_input_allocate_device" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "snprintf" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "__kmalloc" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "hid_snto32" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "hid_field_extract" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "__wake_up" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "hid_report_raw_event" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "power_supply_changed" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "system_wq" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "mutex_is_locked" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "strnstr" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "destroy_workqueue" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "device_remove_file" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "_dev_info" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "scnprintf" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "simple_strtoul" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "strncmp" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "power_supply_get_drvdata" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "kfree" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "schedule_timeout" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "finish_wait" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "init_wait_entry" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "__might_sleep" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "mutex_unlock" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "_dev_err" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "printk" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "hid_debug" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "_dev_warn" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "queue_work_on" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "lockdep_init_map" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "kmalloc_caches" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "hid_hw_close" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "hid_hw_open" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "mutex_destroy" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "cancel_work_sync" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "hid_hw_stop" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "sysfs_remove_group" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "input_mt_sync_frame" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "input_mt_report_slot_state" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "input_mt_get_slot_by_key" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "sched_clock" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "input_event" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "input_mt_init_slots" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "input_set_capability" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "input_alloc_absinfo" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "input_set_abs_params" [drivers/hid/hid-logitech-hidpp.ko] undefined!
ERROR: "hid_unregister_driver" [drivers/hid/hid-logitech-dj.ko] undefined!
ERROR: "__hid_register_driver" [drivers/hid/hid-logitech-dj.ko] undefined!
ERROR: "up" [drivers/hid/hid-logitech-dj.ko] undefined!
ERROR: "hid_hw_open" [drivers/hid/hid-logitech-dj.ko] undefined!
ERROR: "hid_hw_start" [drivers/hid/hid-logitech-dj.ko] undefined!
ERROR: "__list_add_valid" [drivers/hid/hid-logitech-dj.ko] undefined!
ERROR: "__kfifo_alloc" [drivers/hid/hid-logitech-dj.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/hid/hid-logitech-dj.ko] undefined!
ERROR: "lockdep_init_map" [drivers/hid/hid-logitech-dj.ko] undefined!
ERROR: "hid_compare_device_paths" [drivers/hid/hid-logitech-dj.ko] undefined!
ERROR: "usb_hid_driver" [drivers/hid/hid-logitech-dj.ko] undefined!
ERROR: "hid_open_report" [drivers/hid/hid-logitech-dj.ko] undefined!
ERROR: "hid_hw_stop" [drivers/hid/hid-logitech-dj.ko] undefined!
ERROR: "hid_hw_close" [drivers/hid/hid-logitech-dj.ko] undefined!
ERROR: "cancel_work_sync" [drivers/hid/hid-logitech-dj.ko] undefined!
ERROR: "refcount_warn_saturate" [drivers/hid/hid-logitech-dj.ko] undefined!
ERROR: "__kfifo_free" [drivers/hid/hid-logitech-dj.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/hid/hid-logitech-dj.ko] undefined!
ERROR: "mutex_unlock" [drivers/hid/hid-logitech-dj.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/hid/hid-logitech-dj.ko] undefined!
ERROR: "hid_add_device" [drivers/hid/hid-logitech-dj.ko] undefined!
ERROR: "strlcat" [drivers/hid/hid-logitech-dj.ko] undefined!
ERROR: "snprintf" [drivers/hid/hid-logitech-dj.ko] undefined!
ERROR: "hid_allocate_device" [drivers/hid/hid-logitech-dj.ko] undefined!
ERROR: "hid_destroy_device" [drivers/hid/hid-logitech-dj.ko] undefined!
ERROR: "__kfifo_out" [drivers/hid/hid-logitech-dj.ko] undefined!
ERROR: "kmemdup" [drivers/hid/hid-logitech-dj.ko] undefined!
ERROR: "msleep" [drivers/hid/hid-logitech-dj.ko] undefined!
ERROR: "__hid_request" [drivers/hid/hid-logitech-dj.ko] undefined!
ERROR: "_dev_info" [drivers/hid/hid-logitech-dj.ko] undefined!
ERROR: "_dev_err" [drivers/hid/hid-logitech-dj.ko] undefined!
ERROR: "hid_input_report" [drivers/hid/hid-logitech-dj.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/hid/hid-logitech-dj.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/hid/hid-logitech-dj.ko] undefined!
ERROR: "hid_parse_report" [drivers/hid/hid-logitech-dj.ko] undefined!
ERROR: "_dev_warn" [drivers/hid/hid-logitech-dj.ko] undefined!
ERROR: "kfree" [drivers/hid/hid-logitech-dj.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/hid/hid-logitech-dj.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/hid/hid-logitech-dj.ko] undefined!
ERROR: "kmalloc_caches" [drivers/hid/hid-logitech-dj.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/hid/hid-logitech-dj.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/hid/hid-logitech-dj.ko] undefined!
ERROR: "queue_work_on" [drivers/hid/hid-logitech-dj.ko] undefined!
ERROR: "system_wq" [drivers/hid/hid-logitech-dj.ko] undefined!
ERROR: "__kfifo_in" [drivers/hid/hid-logitech-dj.ko] undefined!
ERROR: "jiffies" [drivers/hid/hid-logitech-dj.ko] undefined!
ERROR: "printk" [drivers/hid/hid-logitech-dj.ko] undefined!
ERROR: "hid_debug" [drivers/hid/hid-logitech-dj.ko] undefined!
ERROR: "hid_unregister_driver" [drivers/hid/hid-lg-g15.ko] undefined!
ERROR: "__hid_register_driver" [drivers/hid/hid-lg-g15.ko] undefined!
ERROR: "_dev_info" [drivers/hid/hid-lg-g15.ko] undefined!
ERROR: "queue_work_on" [drivers/hid/hid-lg-g15.ko] undefined!
ERROR: "system_wq" [drivers/hid/hid-lg-g15.ko] undefined!
ERROR: "input_event" [drivers/hid/hid-lg-g15.ko] undefined!
ERROR: "devm_led_classdev_register_ext" [drivers/hid/hid-lg-g15.ko] undefined!
ERROR: "input_register_device" [drivers/hid/hid-lg-g15.ko] undefined!
ERROR: "input_set_capability" [drivers/hid/hid-lg-g15.ko] undefined!
ERROR: "hid_hw_stop" [drivers/hid/hid-lg-g15.ko] undefined!
ERROR: "hid_hw_start" [drivers/hid/hid-lg-g15.ko] undefined!
ERROR: "lockdep_init_map" [drivers/hid/hid-lg-g15.ko] undefined!
ERROR: "devm_input_allocate_device" [drivers/hid/hid-lg-g15.ko] undefined!
ERROR: "__mutex_init" [drivers/hid/hid-lg-g15.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hid/hid-lg-g15.ko] undefined!
ERROR: "hid_open_report" [drivers/hid/hid-lg-g15.ko] undefined!
ERROR: "sprintf" [drivers/hid/hid-lg-g15.ko] undefined!
ERROR: "_kstrtoul" [drivers/hid/hid-lg-g15.ko] undefined!
ERROR: "led_classdev_notify_brightness_hw_changed" [drivers/hid/hid-lg-g15.ko] undefined!
ERROR: "mutex_unlock" [drivers/hid/hid-lg-g15.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/hid/hid-lg-g15.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/hid/hid-lg-g15.ko] undefined!
ERROR: "_dev_err" [drivers/hid/hid-lg-g15.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/hid/hid-lg-g15.ko] undefined!
ERROR: "hid_hw_close" [drivers/hid/hid-lg-g15.ko] undefined!
ERROR: "hid_hw_open" [drivers/hid/hid-lg-g15.ko] undefined!
ERROR: "device_remove_file" [drivers/hid/hid-logitech.ko] undefined!
ERROR: "kmalloc_caches" [drivers/hid/hid-logitech.ko] undefined!
ERROR: "__kmalloc" [drivers/hid/hid-logitech.ko] undefined!
ERROR: "hid_open_report" [drivers/hid/hid-logitech.ko] undefined!
ERROR: "param_ops_int" [drivers/hid/hid-logitech.ko] undefined!
ERROR: "strlen" [drivers/hid/hid-logitech.ko] undefined!
ERROR: "get_random_bytes" [drivers/hid/hid-logitech.ko] undefined!
ERROR: "input_ff_create_memless" [drivers/hid/hid-logitech.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/hid/hid-logitech.ko] undefined!
ERROR: "simple_strtoul" [drivers/hid/hid-logitech.ko] undefined!
ERROR: "kmemdup" [drivers/hid/hid-logitech.ko] undefined!
ERROR: "__hid_request" [drivers/hid/hid-logitech.ko] undefined!
ERROR: "__might_sleep" [drivers/hid/hid-logitech.ko] undefined!
ERROR: "hid_debug" [drivers/hid/hid-logitech.ko] undefined!
ERROR: "strcmp" [drivers/hid/hid-logitech.ko] undefined!
ERROR: "kasprintf" [drivers/hid/hid-logitech.ko] undefined!
ERROR: "input_event" [drivers/hid/hid-logitech.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/hid/hid-logitech.ko] undefined!
ERROR: "_dev_warn" [drivers/hid/hid-logitech.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/hid/hid-logitech.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/hid/hid-logitech.ko] undefined!
ERROR: "printk" [drivers/hid/hid-logitech.ko] undefined!
ERROR: "led_classdev_register_ext" [drivers/hid/hid-logitech.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/hid/hid-logitech.ko] undefined!
ERROR: "_dev_err" [drivers/hid/hid-logitech.ko] undefined!
ERROR: "init_wait_entry" [drivers/hid/hid-logitech.ko] undefined!
ERROR: "device_create_file" [drivers/hid/hid-logitech.ko] undefined!
ERROR: "_dev_info" [drivers/hid/hid-logitech.ko] undefined!
ERROR: "schedule_timeout" [drivers/hid/hid-logitech.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/hid/hid-logitech.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/hid/hid-logitech.ko] undefined!
ERROR: "hid_hw_stop" [drivers/hid/hid-logitech.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/hid/hid-logitech.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/hid/hid-logitech.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/hid/hid-logitech.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/hid/hid-logitech.ko] undefined!
ERROR: "led_classdev_unregister" [drivers/hid/hid-logitech.ko] undefined!
ERROR: "kfree" [drivers/hid/hid-logitech.ko] undefined!
ERROR: "__hid_register_driver" [drivers/hid/hid-logitech.ko] undefined!
ERROR: "scnprintf" [drivers/hid/hid-logitech.ko] undefined!
ERROR: "finish_wait" [drivers/hid/hid-logitech.ko] undefined!
ERROR: "snprintf" [drivers/hid/hid-logitech.ko] undefined!
ERROR: "hid_validate_values" [drivers/hid/hid-logitech.ko] undefined!
ERROR: "hid_hw_start" [drivers/hid/hid-logitech.ko] undefined!
ERROR: "hid_unregister_driver" [drivers/hid/hid-logitech.ko] undefined!
ERROR: "hid_unregister_driver" [drivers/hid/hid-lenovo.ko] undefined!
ERROR: "__hid_register_driver" [drivers/hid/hid-lenovo.ko] undefined!
ERROR: "_dev_warn" [drivers/hid/hid-lenovo.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/hid/hid-lenovo.ko] undefined!
ERROR: "led_classdev_register_ext" [drivers/hid/hid-lenovo.ko] undefined!
ERROR: "hid_validate_values" [drivers/hid/hid-lenovo.ko] undefined!
ERROR: "strlen" [drivers/hid/hid-lenovo.ko] undefined!
ERROR: "sysfs_create_group" [drivers/hid/hid-lenovo.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hid/hid-lenovo.ko] undefined!
ERROR: "hid_hw_start" [drivers/hid/hid-lenovo.ko] undefined!
ERROR: "hid_open_report" [drivers/hid/hid-lenovo.ko] undefined!
ERROR: "__hid_request" [drivers/hid/hid-lenovo.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/hid/hid-lenovo.ko] undefined!
ERROR: "input_event" [drivers/hid/hid-lenovo.ko] undefined!
ERROR: "kstrtoint" [drivers/hid/hid-lenovo.ko] undefined!
ERROR: "_dev_err" [drivers/hid/hid-lenovo.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/hid/hid-lenovo.ko] undefined!
ERROR: "kfree" [drivers/hid/hid-lenovo.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/hid/hid-lenovo.ko] undefined!
ERROR: "kmalloc_caches" [drivers/hid/hid-lenovo.ko] undefined!
ERROR: "snprintf" [drivers/hid/hid-lenovo.ko] undefined!
ERROR: "led_classdev_unregister" [drivers/hid/hid-lenovo.ko] undefined!
ERROR: "hid_hw_stop" [drivers/hid/hid-lenovo.ko] undefined!
ERROR: "sysfs_remove_group" [drivers/hid/hid-lenovo.ko] undefined!
ERROR: "hid_unregister_driver" [drivers/hid/hid-kye.ko] undefined!
ERROR: "__hid_register_driver" [drivers/hid/hid-kye.ko] undefined!
ERROR: "hid_hw_stop" [drivers/hid/hid-kye.ko] undefined!
ERROR: "_dev_err" [drivers/hid/hid-kye.ko] undefined!
ERROR: "__hid_request" [drivers/hid/hid-kye.ko] undefined!
ERROR: "hid_hw_close" [drivers/hid/hid-kye.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/hid/hid-kye.ko] undefined!
ERROR: "hid_hw_open" [drivers/hid/hid-kye.ko] undefined!
ERROR: "hid_hw_start" [drivers/hid/hid-kye.ko] undefined!
ERROR: "hid_open_report" [drivers/hid/hid-kye.ko] undefined!
ERROR: "_dev_info" [drivers/hid/hid-kye.ko] undefined!
ERROR: "hid_unregister_driver" [drivers/hid/hid-google-hammer.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/hid/hid-google-hammer.ko] undefined!
ERROR: "__hid_register_driver" [drivers/hid/hid-google-hammer.ko] undefined!
ERROR: "__platform_driver_register" [drivers/hid/hid-google-hammer.ko] undefined!
ERROR: "hid_hw_open" [drivers/hid/hid-google-hammer.ko] undefined!
ERROR: "led_classdev_register_ext" [drivers/hid/hid-google-hammer.ko] undefined!
ERROR: "hid_hw_start" [drivers/hid/hid-google-hammer.ko] undefined!
ERROR: "hid_open_report" [drivers/hid/hid-google-hammer.ko] undefined!
ERROR: "hid_hw_close" [drivers/hid/hid-google-hammer.ko] undefined!
ERROR: "hid_hw_stop" [drivers/hid/hid-google-hammer.ko] undefined!
ERROR: "led_classdev_unregister" [drivers/hid/hid-google-hammer.ko] undefined!
ERROR: "pm_wakeup_dev_event" [drivers/hid/hid-google-hammer.ko] undefined!
ERROR: "device_init_wakeup" [drivers/hid/hid-google-hammer.ko] undefined!
ERROR: "blocking_notifier_chain_register" [drivers/hid/hid-google-hammer.ko] undefined!
ERROR: "input_register_device" [drivers/hid/hid-google-hammer.ko] undefined!
ERROR: "input_set_capability" [drivers/hid/hid-google-hammer.ko] undefined!
ERROR: "devm_input_allocate_device" [drivers/hid/hid-google-hammer.ko] undefined!
ERROR: "mutex_unlock" [drivers/hid/hid-google-hammer.ko] undefined!
ERROR: "blocking_notifier_chain_unregister" [drivers/hid/hid-google-hammer.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/hid/hid-google-hammer.ko] undefined!
ERROR: "_raw_spin_unlock_irq" [drivers/hid/hid-google-hammer.ko] undefined!
ERROR: "_raw_spin_lock_irq" [drivers/hid/hid-google-hammer.ko] undefined!
ERROR: "_dev_warn" [drivers/hid/hid-google-hammer.ko] undefined!
ERROR: "kfree" [drivers/hid/hid-google-hammer.ko] undefined!
ERROR: "cros_ec_cmd_xfer_status" [drivers/hid/hid-google-hammer.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/hid/hid-google-hammer.ko] undefined!
ERROR: "kmalloc_caches" [drivers/hid/hid-google-hammer.ko] undefined!
ERROR: "_dev_err" [drivers/hid/hid-google-hammer.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/hid/hid-google-hammer.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/hid/hid-google-hammer.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/hid/hid-google-hammer.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/hid/hid-google-hammer.ko] undefined!
ERROR: "input_event" [drivers/hid/hid-google-hammer.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/hid/hid-google-hammer.ko] undefined!
ERROR: "hid_unregister_driver" [drivers/hid/hid-gfrm.ko] undefined!
ERROR: "__hid_register_driver" [drivers/hid/hid-gfrm.ko] undefined!
ERROR: "hid_register_report" [drivers/hid/hid-gfrm.ko] undefined!
ERROR: "hid_hw_start" [drivers/hid/hid-gfrm.ko] undefined!
ERROR: "hid_open_report" [drivers/hid/hid-gfrm.ko] undefined!
ERROR: "hid_report_raw_event" [drivers/hid/hid-gfrm.ko] undefined!
ERROR: "input_enable_softrepeat" [drivers/hid/hid-gfrm.ko] undefined!
ERROR: "hid_unregister_driver" [drivers/hid/hid-gembird.ko] undefined!
ERROR: "__hid_register_driver" [drivers/hid/hid-gembird.ko] undefined!
ERROR: "_dev_info" [drivers/hid/hid-gembird.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hid/hid-gembird.ko] undefined!
ERROR: "memcmp" [drivers/hid/hid-gembird.ko] undefined!
ERROR: "hid_unregister_driver" [drivers/hid/hid-dr.ko] undefined!
ERROR: "__hid_register_driver" [drivers/hid/hid-dr.ko] undefined!
ERROR: "printk" [drivers/hid/hid-dr.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/hid/hid-dr.ko] undefined!
ERROR: "hid_debug" [drivers/hid/hid-dr.ko] undefined!
ERROR: "__hid_request" [drivers/hid/hid-dr.ko] undefined!
ERROR: "hid_hw_stop" [drivers/hid/hid-dr.ko] undefined!
ERROR: "_dev_err" [drivers/hid/hid-dr.ko] undefined!
ERROR: "_dev_info" [drivers/hid/hid-dr.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/hid/hid-dr.ko] undefined!
ERROR: "kfree" [drivers/hid/hid-dr.ko] undefined!
ERROR: "input_ff_create_memless" [drivers/hid/hid-dr.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/hid/hid-dr.ko] undefined!
ERROR: "kmalloc_caches" [drivers/hid/hid-dr.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/hid/hid-dr.ko] undefined!
ERROR: "hid_hw_start" [drivers/hid/hid-dr.ko] undefined!
ERROR: "hid_open_report" [drivers/hid/hid-dr.ko] undefined!
ERROR: "param_ops_ushort" [drivers/hid/hid-corsair.ko] undefined!
ERROR: "param_array_ops" [drivers/hid/hid-corsair.ko] undefined!
ERROR: "hid_unregister_driver" [drivers/hid/hid-corsair.ko] undefined!
ERROR: "__hid_register_driver" [drivers/hid/hid-corsair.ko] undefined!
ERROR: "_dev_err" [drivers/hid/hid-corsair.ko] undefined!
ERROR: "sysfs_create_group" [drivers/hid/hid-corsair.ko] undefined!
ERROR: "led_classdev_register_ext" [drivers/hid/hid-corsair.ko] undefined!
ERROR: "lockdep_init_map" [drivers/hid/hid-corsair.ko] undefined!
ERROR: "__kmalloc" [drivers/hid/hid-corsair.ko] undefined!
ERROR: "strlen" [drivers/hid/hid-corsair.ko] undefined!
ERROR: "hid_hw_start" [drivers/hid/hid-corsair.ko] undefined!
ERROR: "hid_open_report" [drivers/hid/hid-corsair.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hid/hid-corsair.ko] undefined!
ERROR: "queue_work_on" [drivers/hid/hid-corsair.ko] undefined!
ERROR: "system_wq" [drivers/hid/hid-corsair.ko] undefined!
ERROR: "strncmp" [drivers/hid/hid-corsair.ko] undefined!
ERROR: "snprintf" [drivers/hid/hid-corsair.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/hid/hid-corsair.ko] undefined!
ERROR: "kmalloc_caches" [drivers/hid/hid-corsair.ko] undefined!
ERROR: "_dev_warn" [drivers/hid/hid-corsair.ko] undefined!
ERROR: "usb_control_msg" [drivers/hid/hid-corsair.ko] undefined!
ERROR: "kstrtoint" [drivers/hid/hid-corsair.ko] undefined!
ERROR: "hid_hw_stop" [drivers/hid/hid-corsair.ko] undefined!
ERROR: "kfree" [drivers/hid/hid-corsair.ko] undefined!
ERROR: "cancel_work_sync" [drivers/hid/hid-corsair.ko] undefined!
ERROR: "led_classdev_unregister" [drivers/hid/hid-corsair.ko] undefined!
ERROR: "sysfs_remove_group" [drivers/hid/hid-corsair.ko] undefined!
ERROR: "_dev_info" [drivers/hid/hid-corsair.ko] undefined!
ERROR: "hid_unregister_driver" [drivers/hid/hid-cmedia.ko] undefined!
ERROR: "__hid_register_driver" [drivers/hid/hid-cmedia.ko] undefined!
ERROR: "input_event" [drivers/hid/hid-cmedia.ko] undefined!
ERROR: "_dev_err" [drivers/hid/hid-cmedia.ko] undefined!
ERROR: "hid_hw_start" [drivers/hid/hid-cmedia.ko] undefined!
ERROR: "hid_open_report" [drivers/hid/hid-cmedia.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/hid/hid-cmedia.ko] undefined!
ERROR: "kmalloc_caches" [drivers/hid/hid-cmedia.ko] undefined!
ERROR: "kfree" [drivers/hid/hid-cmedia.ko] undefined!
ERROR: "hid_hw_stop" [drivers/hid/hid-cmedia.ko] undefined!
ERROR: "input_set_capability" [drivers/hid/hid-cmedia.ko] undefined!
ERROR: "hid_unregister_driver" [drivers/hid/hid-chicony.ko] undefined!
ERROR: "__hid_register_driver" [drivers/hid/hid-chicony.ko] undefined!
ERROR: "_dev_info" [drivers/hid/hid-chicony.ko] undefined!
ERROR: "hid_unregister_driver" [drivers/hid/hid-bigbenff.ko] undefined!
ERROR: "__hid_register_driver" [drivers/hid/hid-bigbenff.ko] undefined!
ERROR: "__hid_request" [drivers/hid/hid-bigbenff.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/hid/hid-bigbenff.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/hid/hid-bigbenff.ko] undefined!
ERROR: "_dev_info" [drivers/hid/hid-bigbenff.ko] undefined!
ERROR: "queue_work_on" [drivers/hid/hid-bigbenff.ko] undefined!
ERROR: "system_wq" [drivers/hid/hid-bigbenff.ko] undefined!
ERROR: "devm_led_classdev_register_ext" [drivers/hid/hid-bigbenff.ko] undefined!
ERROR: "snprintf" [drivers/hid/hid-bigbenff.ko] undefined!
ERROR: "strlen" [drivers/hid/hid-bigbenff.ko] undefined!
ERROR: "input_ff_create_memless" [drivers/hid/hid-bigbenff.ko] undefined!
ERROR: "lockdep_init_map" [drivers/hid/hid-bigbenff.ko] undefined!
ERROR: "hid_hw_start" [drivers/hid/hid-bigbenff.ko] undefined!
ERROR: "hid_open_report" [drivers/hid/hid-bigbenff.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hid/hid-bigbenff.ko] undefined!
ERROR: "_dev_err" [drivers/hid/hid-bigbenff.ko] undefined!
ERROR: "hid_hw_stop" [drivers/hid/hid-bigbenff.ko] undefined!
ERROR: "hid_hw_close" [drivers/hid/hid-bigbenff.ko] undefined!
ERROR: "cancel_work_sync" [drivers/hid/hid-bigbenff.ko] undefined!
ERROR: "_dev_warn" [drivers/hid/hid-bigbenff.ko] undefined!
ERROR: "hid_unregister_driver" [drivers/hid/hid-betopff.ko] undefined!
ERROR: "__hid_register_driver" [drivers/hid/hid-betopff.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/hid/hid-betopff.ko] undefined!
ERROR: "_dev_err" [drivers/hid/hid-betopff.ko] undefined!
ERROR: "__hid_request" [drivers/hid/hid-betopff.ko] undefined!
ERROR: "_dev_info" [drivers/hid/hid-betopff.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/hid/hid-betopff.ko] undefined!
ERROR: "kfree" [drivers/hid/hid-betopff.ko] undefined!
ERROR: "input_ff_create_memless" [drivers/hid/hid-betopff.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/hid/hid-betopff.ko] undefined!
ERROR: "kmalloc_caches" [drivers/hid/hid-betopff.ko] undefined!
ERROR: "hid_hw_start" [drivers/hid/hid-betopff.ko] undefined!
ERROR: "hid_open_report" [drivers/hid/hid-betopff.ko] undefined!
ERROR: "hid_unregister_driver" [drivers/hid/hid-aureal.ko] undefined!
ERROR: "__hid_register_driver" [drivers/hid/hid-aureal.ko] undefined!
ERROR: "_dev_info" [drivers/hid/hid-aureal.ko] undefined!
ERROR: "hid_unregister_driver" [drivers/hid/hid-creative-sb0540.ko] undefined!
ERROR: "__hid_register_driver" [drivers/hid/hid-creative-sb0540.ko] undefined!
ERROR: "hid_hw_start" [drivers/hid/hid-creative-sb0540.ko] undefined!
ERROR: "hid_open_report" [drivers/hid/hid-creative-sb0540.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hid/hid-creative-sb0540.ko] undefined!
ERROR: "_dev_err" [drivers/hid/hid-creative-sb0540.ko] undefined!
ERROR: "input_event" [drivers/hid/hid-creative-sb0540.ko] undefined!
ERROR: "param_ops_uint" [drivers/hid/hid-apple.ko] undefined!
ERROR: "hid_unregister_driver" [drivers/hid/hid-apple.ko] undefined!
ERROR: "__hid_register_driver" [drivers/hid/hid-apple.ko] undefined!
ERROR: "input_event" [drivers/hid/hid-apple.ko] undefined!
ERROR: "_dev_err" [drivers/hid/hid-apple.ko] undefined!
ERROR: "hid_hw_start" [drivers/hid/hid-apple.ko] undefined!
ERROR: "hid_open_report" [drivers/hid/hid-apple.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hid/hid-apple.ko] undefined!
ERROR: "_dev_info" [drivers/hid/hid-apple.ko] undefined!
ERROR: "hid_unregister_driver" [drivers/hid/hid-axff.ko] undefined!
ERROR: "__hid_register_driver" [drivers/hid/hid-axff.ko] undefined!
ERROR: "printk" [drivers/hid/hid-axff.ko] undefined!
ERROR: "hid_debug" [drivers/hid/hid-axff.ko] undefined!
ERROR: "hid_hw_open" [drivers/hid/hid-axff.ko] undefined!
ERROR: "_dev_err" [drivers/hid/hid-axff.ko] undefined!
ERROR: "__hid_request" [drivers/hid/hid-axff.ko] undefined!
ERROR: "_dev_info" [drivers/hid/hid-axff.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/hid/hid-axff.ko] undefined!
ERROR: "_dev_warn" [drivers/hid/hid-axff.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/hid/hid-axff.ko] undefined!
ERROR: "kfree" [drivers/hid/hid-axff.ko] undefined!
ERROR: "input_ff_create_memless" [drivers/hid/hid-axff.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/hid/hid-axff.ko] undefined!
ERROR: "kmalloc_caches" [drivers/hid/hid-axff.ko] undefined!
ERROR: "hid_hw_start" [drivers/hid/hid-axff.ko] undefined!
ERROR: "hid_open_report" [drivers/hid/hid-axff.ko] undefined!
ERROR: "hid_hw_stop" [drivers/hid/hid-axff.ko] undefined!
ERROR: "hid_hw_close" [drivers/hid/hid-axff.ko] undefined!
ERROR: "system_wq" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "ishtp_cl_io_rb_recycle" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "kmalloc_caches" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "__kmalloc" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "ishtp_cl_unlink" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "ishtp_set_connection_state" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "ishtp_cl_driver_register" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "param_ops_int" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "ishtp_cl_flush_queues" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "__warn_printk" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "cancel_work_sync" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "ishtp_put_device" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "__might_sleep" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "ishtp_cl_connect" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "ishtp_set_rx_ring_size" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "clflush_cache_range" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "ishtp_cl_driver_unregister" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "ishtp_device" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "ishtp_cl_link" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "ish_hw_reset" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "ishtp_cl_disconnect" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "_dev_warn" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "ishtp_get_fw_client_id" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "ishtp_fw_cl_get_client" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "dma_direct_map_page" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "mem_section" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "device_property_read_string" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "ishtp_get_pci_device" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "_dev_err" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "init_wait_entry" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "ishtp_register_event_cb" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "_dev_info" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "ishtp_get_device" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "ishtp_set_drvdata" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "schedule_timeout" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "dev_driver_string" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "ishtp_get_client_data" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "ishtp_set_tx_ring_size" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "__phys_addr" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "ishtp_set_client_data" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "__wake_up" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "ishtp_get_drvdata" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "kfree" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "ishtp_cl_set_fw_client_id" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "ishtp_cl_free" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "lockdep_init_map" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "request_firmware" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "finish_wait" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "ishtp_cl_send" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "queue_work_on" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "snprintf" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "ishtp_cl_allocate" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "ishtp_get_ishtp_device" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "release_firmware" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "dma_ops" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "is_vmalloc_addr" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "ishtp_cl_rx_get_rb" [drivers/hid/intel-ish-hid/intel-ishtp-loader.ko] undefined!
ERROR: "clk_unprepare" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "kmalloc_caches" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "__kmalloc" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "clk_enable" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "debugfs_create_dir" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "single_open" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "sg_nents" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "single_release" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "crypto_transfer_skcipher_request_to_engine" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "clk_disable" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "seq_printf" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "__warn_printk" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "crypto_engine_alloc_init" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "kmemdup" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "sg_next" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "dma_free_attrs" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "debugfs_create_file" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "debugfs_remove_recursive" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "scatterwalk_map_and_copy" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "seq_read" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "__platform_driver_register" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "crypto_alloc_sync_skcipher" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "crypto_unregister_skcipher" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "crypto_engine_start" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "dma_direct_map_page" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "dma_alloc_attrs" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "mem_section" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "_dev_err" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "crypto_register_skcipher" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "crypto_skcipher_decrypt" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "clk_prepare" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "wait_for_completion_interruptible_timeout" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "crypto_destroy_tfm" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "dev_driver_string" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "devm_clk_get" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "__phys_addr" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "crypto_skcipher_setkey" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "crypto_engine_exit" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "seq_lseek" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "crypto_finalize_skcipher_request" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "kfree" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "dma_direct_map_sg" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "kzfree" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "complete" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "platform_get_irq" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "devm_kmalloc" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "devm_platform_ioremap_resource" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "dma_ops" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "is_vmalloc_addr" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "crypto_skcipher_encrypt" [drivers/crypto/amlogic/amlogic-gxl-crypto.ko] undefined!
ERROR: "kmalloc_caches" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "__kmalloc" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "sg_nents" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "boot_cpu_data" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "crypto_transfer_skcipher_request_to_engine" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "crypto_engine_alloc_init" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "kmemdup" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "sg_next" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "mutex_unlock" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "virtqueue_kick" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "__preempt_count" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "scatterwalk_map_and_copy" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "virtqueue_get_buf" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "__might_sleep" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "virtio_break_device" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "_dev_warn" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "virtqueue_add_sgs" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "printk" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "crypto_unregister_skcipher" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "crypto_engine_start" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "sg_nents_for_len" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "virtqueue_disable_cb" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "cpu_bit_bitmap" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "_dev_err" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "crypto_register_skcipher" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "__list_add_valid" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "_dev_info" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "unregister_virtio_driver" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "crypto_engine_exit" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "sg_init_one" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "crypto_finalize_skcipher_request" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "kfree" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "kzfree" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "snprintf" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "virtqueue_is_broken" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "virtqueue_detach_unused_buf" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "virtqueue_enable_cb" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "register_virtio_driver" [drivers/crypto/virtio/virtio_crypto.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "__platform_driver_register" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "__kmalloc" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "sg_nents" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "scatterwalk_map_and_copy" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "memcpy_toio" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "sg_next" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "crypto_dequeue_request" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "memcpy_fromio" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "free_pages" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "page_address" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "kfree" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "mem_section" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "__phys_addr" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "__virt_addr_valid" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "sg_init_table" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "scatterwalk_copychunks" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "__get_free_pages" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "kmalloc_caches" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "_dev_warn" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "_dev_info" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "crypto_register_ahash" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "crypto_register_skcipher" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "crypto_init_queue" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "tasklet_init" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "platform_get_irq" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "of_match_node" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "clk_enable" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "clk_prepare" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "devm_clk_get" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "platform_get_resource" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "devm_kmalloc" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "_dev_err" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "dma_direct_map_sg" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "crypto_shash_digest" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "crypto_unregister_ahash" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "clk_unprepare" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "clk_disable" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "tasklet_kill" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "crypto_unregister_skcipher" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "__tasklet_schedule" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "crypto_enqueue_request" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "printk" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "crypto_alloc_shash" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "crypto_destroy_tfm" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "dma_ops" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/crypto/s5p-sss.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/crypto/qcom-rng.ko] undefined!
ERROR: "__platform_driver_register" [drivers/crypto/qcom-rng.ko] undefined!
ERROR: "mutex_unlock" [drivers/crypto/qcom-rng.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/crypto/qcom-rng.ko] undefined!
ERROR: "_dev_err" [drivers/crypto/qcom-rng.ko] undefined!
ERROR: "crypto_register_rng" [drivers/crypto/qcom-rng.ko] undefined!
ERROR: "device_get_match_data" [drivers/crypto/qcom-rng.ko] undefined!
ERROR: "devm_clk_get" [drivers/crypto/qcom-rng.ko] undefined!
ERROR: "is_acpi_device_node" [drivers/crypto/qcom-rng.ko] undefined!
ERROR: "devm_platform_ioremap_resource" [drivers/crypto/qcom-rng.ko] undefined!
ERROR: "__mutex_init" [drivers/crypto/qcom-rng.ko] undefined!
ERROR: "devm_kmalloc" [drivers/crypto/qcom-rng.ko] undefined!
ERROR: "clk_unprepare" [drivers/crypto/qcom-rng.ko] undefined!
ERROR: "clk_disable" [drivers/crypto/qcom-rng.ko] undefined!
ERROR: "clk_enable" [drivers/crypto/qcom-rng.ko] undefined!
ERROR: "clk_prepare" [drivers/crypto/qcom-rng.ko] undefined!
ERROR: "crypto_unregister_rng" [drivers/crypto/qcom-rng.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "__platform_driver_register" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "crypto_aead_decrypt" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "crypto_aead_encrypt" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "dma_direct_map_sg" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "sg_next" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "dma_pool_alloc" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "mod_timer" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "jiffies" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "crypto_skcipher_decrypt" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "crypto_skcipher_encrypt" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "__tasklet_schedule" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "_dev_info" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "__list_add_valid" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "crypto_register_aead" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "crypto_register_skcipher" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "init_timer_key" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "device_create_file" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "clk_prepare" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "clk_get" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "dmam_pool_create" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "devm_add_action" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "tasklet_init" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "platform_get_resource" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "devm_platform_ioremap_resource" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "of_device_is_compatible" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "devm_kmalloc" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "crypto_skcipher_setkey" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "des_expand_key" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "crypto_authenc_extractkeys" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "crypto_aead_setkey" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "crypto_aead_setauthsize" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "crypto_alloc_aead" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "_dev_err" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "dma_ops" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "dma_pool_free" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "sg_nents_for_len" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "_dev_warn" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "crypto_alloc_sync_skcipher" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "crypto_destroy_tfm" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "tasklet_kill" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "clk_put" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "clk_unprepare" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "crypto_unregister_skcipher" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "crypto_unregister_aead" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "device_remove_file" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "del_timer" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "snprintf" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "_kstrtoul" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "clk_disable" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "clk_enable" [drivers/crypto/picoxcell_crypto.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/crypto/img-hash.ko] undefined!
ERROR: "__platform_driver_register" [drivers/crypto/img-hash.ko] undefined!
ERROR: "crypto_register_ahash" [drivers/crypto/img-hash.ko] undefined!
ERROR: "__list_add_valid" [drivers/crypto/img-hash.ko] undefined!
ERROR: "dma_request_chan" [drivers/crypto/img-hash.ko] undefined!
ERROR: "devm_clk_get" [drivers/crypto/img-hash.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/crypto/img-hash.ko] undefined!
ERROR: "platform_get_irq" [drivers/crypto/img-hash.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/crypto/img-hash.ko] undefined!
ERROR: "platform_get_resource" [drivers/crypto/img-hash.ko] undefined!
ERROR: "devm_platform_ioremap_resource" [drivers/crypto/img-hash.ko] undefined!
ERROR: "crypto_init_queue" [drivers/crypto/img-hash.ko] undefined!
ERROR: "tasklet_init" [drivers/crypto/img-hash.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/crypto/img-hash.ko] undefined!
ERROR: "devm_kmalloc" [drivers/crypto/img-hash.ko] undefined!
ERROR: "clk_enable" [drivers/crypto/img-hash.ko] undefined!
ERROR: "clk_prepare" [drivers/crypto/img-hash.ko] undefined!
ERROR: "_dev_err" [drivers/crypto/img-hash.ko] undefined!
ERROR: "dma_direct_map_sg" [drivers/crypto/img-hash.ko] undefined!
ERROR: "sg_init_one" [drivers/crypto/img-hash.ko] undefined!
ERROR: "sg_next" [drivers/crypto/img-hash.ko] undefined!
ERROR: "sg_pcopy_to_buffer" [drivers/crypto/img-hash.ko] undefined!
ERROR: "page_address" [drivers/crypto/img-hash.ko] undefined!
ERROR: "crypto_ahash_final" [drivers/crypto/img-hash.ko] undefined!
ERROR: "crypto_ahash_finup" [drivers/crypto/img-hash.ko] undefined!
ERROR: "dma_ops" [drivers/crypto/img-hash.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/crypto/img-hash.ko] undefined!
ERROR: "sg_copy_to_buffer" [drivers/crypto/img-hash.ko] undefined!
ERROR: "sg_nents" [drivers/crypto/img-hash.ko] undefined!
ERROR: "_dev_info" [drivers/crypto/img-hash.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/crypto/img-hash.ko] undefined!
ERROR: "crypto_dequeue_request" [drivers/crypto/img-hash.ko] undefined!
ERROR: "crypto_enqueue_request" [drivers/crypto/img-hash.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/crypto/img-hash.ko] undefined!
ERROR: "_dev_warn" [drivers/crypto/img-hash.ko] undefined!
ERROR: "__tasklet_schedule" [drivers/crypto/img-hash.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/crypto/img-hash.ko] undefined!
ERROR: "crypto_destroy_tfm" [drivers/crypto/img-hash.ko] undefined!
ERROR: "printk" [drivers/crypto/img-hash.ko] undefined!
ERROR: "crypto_alloc_ahash" [drivers/crypto/img-hash.ko] undefined!
ERROR: "dma_release_channel" [drivers/crypto/img-hash.ko] undefined!
ERROR: "tasklet_kill" [drivers/crypto/img-hash.ko] undefined!
ERROR: "crypto_unregister_ahash" [drivers/crypto/img-hash.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/crypto/img-hash.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/crypto/img-hash.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/crypto/img-hash.ko] undefined!
ERROR: "clk_unprepare" [drivers/crypto/img-hash.ko] undefined!
ERROR: "clk_disable" [drivers/crypto/img-hash.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/crypto/img-hash.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/crypto/img-hash.ko] undefined!
ERROR: "param_ops_string" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "__pci_register_driver" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "cancel_delayed_work_sync" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "crypto_dequeue_request" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "dma_direct_map_page" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "dma_ops" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "__alloc_pages_nodemask" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "sg_init_table" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "crypto_enqueue_request" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "init_timer_key" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "delayed_work_timer_fn" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "lockdep_init_map" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "crypto_register_skcipher" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "__list_add_valid" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "pci_disable_device" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "pci_release_regions" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "iounmap" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "dma_free_attrs" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "tasklet_kill" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "free_irq" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "request_threaded_irq" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "crypto_init_queue" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "tasklet_init" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "dma_alloc_attrs" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "ioremap" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "kmalloc_caches" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "pci_request_regions" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "snprintf" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "dma_set_mask" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "pci_set_master" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "pci_enable_device" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "printk" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "queue_delayed_work_on" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "system_wq" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "_dev_warn" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "__tasklet_schedule" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "des_expand_key" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "__free_pages" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "__kunmap_atomic" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "kmap_atomic" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "_dev_info" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "simple_strtoul" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "strncmp" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "_dev_err" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "__const_udelay" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "kfree" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "crypto_unregister_skcipher" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/crypto/hifn_795x.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "__platform_driver_register" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "__warn_printk" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "dev_driver_string" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "crypto_register_skcipher" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "__list_add_valid" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "dma_direct_map_page" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "dma_request_chan" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "mem_section" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "__phys_addr" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "is_vmalloc_addr" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "__get_free_pages" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "_dev_info" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "devm_clk_get" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "platform_get_irq" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "platform_get_resource" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "crypto_init_queue" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "tasklet_init" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "devm_kmalloc" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "printk" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "crypto_dequeue_request" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "crypto_enqueue_request" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "_dev_err" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "dma_direct_map_sg" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "sg_init_table" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "dma_release_channel" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "tasklet_kill" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "crypto_unregister_skcipher" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "dma_ops" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "free_pages" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "_raw_spin_unlock_bh" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "_raw_spin_lock_bh" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "_dev_warn" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "des_expand_key" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "__tasklet_schedule" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "clk_disable" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "sg_next" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "scatterwalk_map_and_copy" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "clk_unprepare" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "clk_enable" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "clk_prepare" [drivers/crypto/atmel-tdes.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "__platform_driver_register" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "scatterwalk_ffwd" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "atmel_sha_authenc_schedule" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "atmel_sha_authenc_init" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "sg_copy_to_buffer" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "dma_direct_map_sg" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "__might_sleep" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "mem_section" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "__phys_addr" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "__virt_addr_valid" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "sg_init_table" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "atmel_sha_authenc_abort" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "__crypto_memneq" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "sg_copy_from_buffer" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "sg_nents" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "dma_ops" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "sg_next" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "_raw_spin_unlock_bh" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "_raw_spin_lock_bh" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "_dev_err" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "crypto_register_aead" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "atmel_sha_authenc_is_ready" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "crypto_register_skcipher" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "__list_add_valid" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "dma_request_chan" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "__get_free_pages" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "clk_disable" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "_dev_info" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "clk_enable" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "clk_prepare" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "devm_clk_get" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "platform_get_irq" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "platform_get_resource" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "crypto_init_queue" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "tasklet_init" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "devm_kmalloc" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "_dev_warn" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "__tasklet_schedule" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "crypto_unregister_aead" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "clk_unprepare" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "free_pages" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "dma_release_channel" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "tasklet_kill" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "crypto_unregister_skcipher" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "atmel_sha_authenc_setkey" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "crypto_authenc_extractkeys" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "atmel_sha_authenc_free" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "atmel_sha_authenc_final" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "atmel_sha_authenc_spawn" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "atmel_sha_authenc_get_reqsize" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "crypto_dequeue_request" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "crypto_enqueue_request" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "crypto_inc" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "scatterwalk_map_and_copy" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/crypto/atmel-aes.ko] undefined!
ERROR: "__request_module" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "kmalloc_caches" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "debugfs_create_dir" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "pci_read_config_byte" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "dma_set_mask" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "pci_disable_device" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "adf_dev_init" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "find_next_bit" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "pci_release_regions" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "adf_dev_stop" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "adf_devmgr_rm_dev" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "adf_init_arb" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "dma_set_coherent_mask" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "pci_set_master" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "adf_dev_shutdown" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "adf_disable_aer" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "adf_cfg_dev_add" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "pci_iounmap" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "printk" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "adf_isr_resource_alloc" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "debugfs_remove" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "adf_cfg_dev_remove" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "adf_disable_sriov" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "_dev_err" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "adf_reset_flr" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "adf_isr_resource_free" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "adf_devmgr_add_dev" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "pci_select_bars" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "adf_dev_start" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "adf_sriov_configure" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "adf_enable_aer" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "adf_send_admin_init" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "adf_init_admin_comms" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "pci_read_config_dword" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "qat_crypto_dev_config" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "kfree" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "pci_request_regions" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "__pci_register_driver" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "find_first_bit" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "adf_devmgr_pci_to_accel_dev" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "adf_exit_admin_comms" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "snprintf" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "pci_iomap" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "adf_exit_arb" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "pci_enable_device" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "pci_save_state" [drivers/crypto/qat/qat_c62x/qat_c62x.ko] undefined!
ERROR: "__request_module" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "kmalloc_caches" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "debugfs_create_dir" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "pci_read_config_byte" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "dma_set_mask" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "pci_disable_device" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "adf_dev_init" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "find_next_bit" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "pci_release_regions" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "adf_dev_stop" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "adf_devmgr_rm_dev" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "adf_init_arb" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "dma_set_coherent_mask" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "pci_set_master" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "adf_dev_shutdown" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "adf_disable_aer" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "adf_cfg_dev_add" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "pci_iounmap" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "printk" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "adf_isr_resource_alloc" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "debugfs_remove" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "adf_cfg_dev_remove" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "adf_disable_sriov" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "_dev_err" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "adf_reset_flr" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "adf_isr_resource_free" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "adf_devmgr_add_dev" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "pci_select_bars" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "adf_dev_start" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "adf_sriov_configure" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "adf_enable_aer" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "adf_send_admin_init" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "adf_init_admin_comms" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "pci_read_config_dword" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "qat_crypto_dev_config" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "kfree" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "pci_request_regions" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "__pci_register_driver" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "find_first_bit" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "adf_devmgr_pci_to_accel_dev" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "adf_exit_admin_comms" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "snprintf" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "pci_iomap" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "adf_exit_arb" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "pci_enable_device" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "pci_save_state" [drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko] undefined!
ERROR: "kset_unregister" [drivers/firmware/edd.ko] undefined!
ERROR: "kobject_put" [drivers/firmware/edd.ko] undefined!
ERROR: "kobject_uevent" [drivers/firmware/edd.ko] undefined!
ERROR: "pci_dev_put" [drivers/firmware/edd.ko] undefined!
ERROR: "sysfs_create_link" [drivers/firmware/edd.ko] undefined!
ERROR: "pci_get_domain_bus_and_slot" [drivers/firmware/edd.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/firmware/edd.ko] undefined!
ERROR: "sysfs_create_file_ns" [drivers/firmware/edd.ko] undefined!
ERROR: "kobject_init_and_add" [drivers/firmware/edd.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/firmware/edd.ko] undefined!
ERROR: "kmalloc_caches" [drivers/firmware/edd.ko] undefined!
ERROR: "kset_create_and_add" [drivers/firmware/edd.ko] undefined!
ERROR: "firmware_kobj" [drivers/firmware/edd.ko] undefined!
ERROR: "printk" [drivers/firmware/edd.ko] undefined!
ERROR: "strlen" [drivers/firmware/edd.ko] undefined!
ERROR: "snprintf" [drivers/firmware/edd.ko] undefined!
ERROR: "strncmp" [drivers/firmware/edd.ko] undefined!
ERROR: "_ctype" [drivers/firmware/edd.ko] undefined!
ERROR: "scnprintf" [drivers/firmware/edd.ko] undefined!
ERROR: "kfree" [drivers/firmware/edd.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/firmware/edd.ko] undefined!
ERROR: "edd" [drivers/firmware/edd.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/firmware/scpi_pm_domain.ko] undefined!
ERROR: "__platform_driver_register" [drivers/firmware/scpi_pm_domain.ko] undefined!
ERROR: "_dev_err" [drivers/firmware/scpi_pm_domain.ko] undefined!
ERROR: "of_genpd_add_provider_onecell" [drivers/firmware/scpi_pm_domain.ko] undefined!
ERROR: "pm_genpd_init" [drivers/firmware/scpi_pm_domain.ko] undefined!
ERROR: "sprintf" [drivers/firmware/scpi_pm_domain.ko] undefined!
ERROR: "devm_kmalloc" [drivers/firmware/scpi_pm_domain.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/firmware/scpi_pm_domain.ko] undefined!
ERROR: "get_scpi_ops" [drivers/firmware/scpi_pm_domain.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/firmware/scpi_pm_domain.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/firmware/scpi_pm_domain.ko] undefined!
ERROR: "device_property_read_u32_array" [drivers/leds/leds-ti-lmu-common.ko] undefined!
ERROR: "_dev_warn" [drivers/leds/leds-ti-lmu-common.ko] undefined!
ERROR: "fwnode_property_read_u32_array" [drivers/leds/leds-ti-lmu-common.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/leds/leds-ti-lmu-common.ko] undefined!
ERROR: "regmap_write" [drivers/leds/leds-ti-lmu-common.ko] undefined!
ERROR: "i2c_del_driver" [drivers/leds/leds-lm3692x.ko] undefined!
ERROR: "i2c_register_driver" [drivers/leds/leds-lm3692x.ko] undefined!
ERROR: "mutex_unlock" [drivers/leds/leds-lm3692x.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/leds/leds-lm3692x.ko] undefined!
ERROR: "devm_led_classdev_register_ext" [drivers/leds/leds-lm3692x.ko] undefined!
ERROR: "fwnode_property_read_u32_array" [drivers/leds/leds-lm3692x.ko] undefined!
ERROR: "fwnode_property_read_string" [drivers/leds/leds-lm3692x.ko] undefined!
ERROR: "device_get_next_child_node" [drivers/leds/leds-lm3692x.ko] undefined!
ERROR: "device_property_read_u32_array" [drivers/leds/leds-lm3692x.ko] undefined!
ERROR: "devm_regulator_get_optional" [drivers/leds/leds-lm3692x.ko] undefined!
ERROR: "devm_gpiod_get_optional" [drivers/leds/leds-lm3692x.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/leds/leds-lm3692x.ko] undefined!
ERROR: "__mutex_init" [drivers/leds/leds-lm3692x.ko] undefined!
ERROR: "devm_kmalloc" [drivers/leds/leds-lm3692x.ko] undefined!
ERROR: "regmap_write" [drivers/leds/leds-lm3692x.ko] undefined!
ERROR: "regulator_enable" [drivers/leds/leds-lm3692x.ko] undefined!
ERROR: "regmap_read" [drivers/leds/leds-lm3692x.ko] undefined!
ERROR: "mutex_destroy" [drivers/leds/leds-lm3692x.ko] undefined!
ERROR: "_dev_err" [drivers/leds/leds-lm3692x.ko] undefined!
ERROR: "regulator_disable" [drivers/leds/leds-lm3692x.ko] undefined!
ERROR: "gpiod_direction_output" [drivers/leds/leds-lm3692x.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/leds/leds-lm3692x.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/leds/leds-mlxreg.ko] undefined!
ERROR: "__platform_driver_register" [drivers/leds/leds-mlxreg.ko] undefined!
ERROR: "_dev_info" [drivers/leds/leds-mlxreg.ko] undefined!
ERROR: "_dev_err" [drivers/leds/leds-mlxreg.ko] undefined!
ERROR: "devm_led_classdev_register_ext" [drivers/leds/leds-mlxreg.ko] undefined!
ERROR: "snprintf" [drivers/leds/leds-mlxreg.ko] undefined!
ERROR: "strstr" [drivers/leds/leds-mlxreg.ko] undefined!
ERROR: "__mutex_init" [drivers/leds/leds-mlxreg.ko] undefined!
ERROR: "devm_kmalloc" [drivers/leds/leds-mlxreg.ko] undefined!
ERROR: "_dev_warn" [drivers/leds/leds-mlxreg.ko] undefined!
ERROR: "mutex_unlock" [drivers/leds/leds-mlxreg.ko] undefined!
ERROR: "regmap_write" [drivers/leds/leds-mlxreg.ko] undefined!
ERROR: "regmap_read" [drivers/leds/leds-mlxreg.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/leds/leds-mlxreg.ko] undefined!
ERROR: "mutex_destroy" [drivers/leds/leds-mlxreg.ko] undefined!
ERROR: "i2c_del_driver" [drivers/leds/leds-blinkm.ko] undefined!
ERROR: "i2c_register_driver" [drivers/leds/leds-blinkm.ko] undefined!
ERROR: "led_classdev_register_ext" [drivers/leds/leds-blinkm.ko] undefined!
ERROR: "snprintf" [drivers/leds/leds-blinkm.ko] undefined!
ERROR: "sysfs_create_group" [drivers/leds/leds-blinkm.ko] undefined!
ERROR: "__mutex_init" [drivers/leds/leds-blinkm.ko] undefined!
ERROR: "devm_kmalloc" [drivers/leds/leds-blinkm.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/leds/leds-blinkm.ko] undefined!
ERROR: "kstrtou8" [drivers/leds/leds-blinkm.ko] undefined!
ERROR: "msleep" [drivers/leds/leds-blinkm.ko] undefined!
ERROR: "sysfs_remove_group" [drivers/leds/leds-blinkm.ko] undefined!
ERROR: "led_classdev_unregister" [drivers/leds/leds-blinkm.ko] undefined!
ERROR: "mutex_unlock" [drivers/leds/leds-blinkm.ko] undefined!
ERROR: "mutex_lock_interruptible_nested" [drivers/leds/leds-blinkm.ko] undefined!
ERROR: "scnprintf" [drivers/leds/leds-blinkm.ko] undefined!
ERROR: "_dev_err" [drivers/leds/leds-blinkm.ko] undefined!
ERROR: "strlcpy" [drivers/leds/leds-blinkm.ko] undefined!
ERROR: "i2c_smbus_read_byte" [drivers/leds/leds-blinkm.ko] undefined!
ERROR: "usleep_range" [drivers/leds/leds-blinkm.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/leds/leds-blinkm.ko] undefined!
ERROR: "i2c_smbus_write_byte" [drivers/leds/leds-blinkm.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/leds/leds-adp5520.ko] undefined!
ERROR: "__platform_driver_register" [drivers/leds/leds-adp5520.ko] undefined!
ERROR: "_dev_err" [drivers/leds/leds-adp5520.ko] undefined!
ERROR: "adp5520_set_bits" [drivers/leds/leds-adp5520.ko] undefined!
ERROR: "led_classdev_register_ext" [drivers/leds/leds-adp5520.ko] undefined!
ERROR: "devm_kmalloc" [drivers/leds/leds-adp5520.ko] undefined!
ERROR: "adp5520_write" [drivers/leds/leds-adp5520.ko] undefined!
ERROR: "led_classdev_unregister" [drivers/leds/leds-adp5520.ko] undefined!
ERROR: "adp5520_clr_bits" [drivers/leds/leds-adp5520.ko] undefined!
ERROR: "i2c_del_driver" [drivers/leds/leds-pca955x.ko] undefined!
ERROR: "i2c_register_driver" [drivers/leds/leds-pca955x.ko] undefined!
ERROR: "devm_led_classdev_register_ext" [drivers/leds/leds-pca955x.ko] undefined!
ERROR: "__mutex_init" [drivers/leds/leds-pca955x.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/leds/leds-pca955x.ko] undefined!
ERROR: "_dev_info" [drivers/leds/leds-pca955x.ko] undefined!
ERROR: "snprintf" [drivers/leds/leds-pca955x.ko] undefined!
ERROR: "of_fwnode_ops" [drivers/leds/leds-pca955x.ko] undefined!
ERROR: "fwnode_property_read_string" [drivers/leds/leds-pca955x.ko] undefined!
ERROR: "fwnode_property_read_u32_array" [drivers/leds/leds-pca955x.ko] undefined!
ERROR: "device_get_next_child_node" [drivers/leds/leds-pca955x.ko] undefined!
ERROR: "devm_kmalloc" [drivers/leds/leds-pca955x.ko] undefined!
ERROR: "device_get_child_node_count" [drivers/leds/leds-pca955x.ko] undefined!
ERROR: "mutex_unlock" [drivers/leds/leds-pca955x.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/leds/leds-pca955x.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/leds/leds-pca955x.ko] undefined!
ERROR: "_dev_err" [drivers/leds/leds-pca955x.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/leds/leds-pca955x.ko] undefined!
ERROR: "i2c_del_driver" [drivers/leds/leds-tca6507.ko] undefined!
ERROR: "i2c_register_driver" [drivers/leds/leds-tca6507.ko] undefined!
ERROR: "gpiochip_get_data" [drivers/leds/leds-tca6507.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/leds/leds-tca6507.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/leds/leds-tca6507.ko] undefined!
ERROR: "_dev_err" [drivers/leds/leds-tca6507.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/leds/leds-tca6507.ko] undefined!
ERROR: "gpiochip_add_data_with_key" [drivers/leds/leds-tca6507.ko] undefined!
ERROR: "of_node_get" [drivers/leds/leds-tca6507.ko] undefined!
ERROR: "queue_work_on" [drivers/leds/leds-tca6507.ko] undefined!
ERROR: "system_wq" [drivers/leds/leds-tca6507.ko] undefined!
ERROR: "led_classdev_register_ext" [drivers/leds/leds-tca6507.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/leds/leds-tca6507.ko] undefined!
ERROR: "lockdep_init_map" [drivers/leds/leds-tca6507.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/leds/leds-tca6507.ko] undefined!
ERROR: "of_property_match_string" [drivers/leds/leds-tca6507.ko] undefined!
ERROR: "of_get_property" [drivers/leds/leds-tca6507.ko] undefined!
ERROR: "devm_kmalloc" [drivers/leds/leds-tca6507.ko] undefined!
ERROR: "of_get_next_child" [drivers/leds/leds-tca6507.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/leds/leds-tca6507.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/leds/leds-tca6507.ko] undefined!
ERROR: "_raw_spin_unlock_irq" [drivers/leds/leds-tca6507.ko] undefined!
ERROR: "_raw_spin_lock_irq" [drivers/leds/leds-tca6507.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/leds/leds-tca6507.ko] undefined!
ERROR: "gpiochip_remove" [drivers/leds/leds-tca6507.ko] undefined!
ERROR: "cancel_work_sync" [drivers/leds/leds-tca6507.ko] undefined!
ERROR: "led_classdev_unregister" [drivers/leds/leds-tca6507.ko] undefined!
ERROR: "i2c_del_driver" [drivers/leds/leds-lp8860.ko] undefined!
ERROR: "i2c_register_driver" [drivers/leds/leds-lp8860.ko] undefined!
ERROR: "devm_led_classdev_register_ext" [drivers/leds/leds-lp8860.ko] undefined!
ERROR: "regulator_enable" [drivers/leds/leds-lp8860.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/leds/leds-lp8860.ko] undefined!
ERROR: "__mutex_init" [drivers/leds/leds-lp8860.ko] undefined!
ERROR: "devm_regulator_get" [drivers/leds/leds-lp8860.ko] undefined!
ERROR: "devm_gpiod_get_optional" [drivers/leds/leds-lp8860.ko] undefined!
ERROR: "of_get_property" [drivers/leds/leds-lp8860.ko] undefined!
ERROR: "of_get_next_available_child" [drivers/leds/leds-lp8860.ko] undefined!
ERROR: "devm_kmalloc" [drivers/leds/leds-lp8860.ko] undefined!
ERROR: "mutex_unlock" [drivers/leds/leds-lp8860.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/leds/leds-lp8860.ko] undefined!
ERROR: "regmap_write" [drivers/leds/leds-lp8860.ko] undefined!
ERROR: "regmap_read" [drivers/leds/leds-lp8860.ko] undefined!
ERROR: "_dev_err" [drivers/leds/leds-lp8860.ko] undefined!
ERROR: "mutex_destroy" [drivers/leds/leds-lp8860.ko] undefined!
ERROR: "regulator_disable" [drivers/leds/leds-lp8860.ko] undefined!
ERROR: "gpiod_direction_output" [drivers/leds/leds-lp8860.ko] undefined!
ERROR: "i2c_del_driver" [drivers/leds/leds-lp5562.ko] undefined!
ERROR: "i2c_register_driver" [drivers/leds/leds-lp5562.ko] undefined!
ERROR: "lp55xx_register_sysfs" [drivers/leds/leds-lp5562.ko] undefined!
ERROR: "lp55xx_of_populate_pdata" [drivers/leds/leds-lp5562.ko] undefined!
ERROR: "lp55xx_register_leds" [drivers/leds/leds-lp5562.ko] undefined!
ERROR: "lp55xx_init_device" [drivers/leds/leds-lp5562.ko] undefined!
ERROR: "__mutex_init" [drivers/leds/leds-lp5562.ko] undefined!
ERROR: "devm_kmalloc" [drivers/leds/leds-lp5562.ko] undefined!
ERROR: "lp55xx_is_extclk_used" [drivers/leds/leds-lp5562.ko] undefined!
ERROR: "sscanf" [drivers/leds/leds-lp5562.ko] undefined!
ERROR: "_kstrtoul" [drivers/leds/leds-lp5562.ko] undefined!
ERROR: "lp55xx_read" [drivers/leds/leds-lp5562.ko] undefined!
ERROR: "_dev_err" [drivers/leds/leds-lp5562.ko] undefined!
ERROR: "mutex_unlock" [drivers/leds/leds-lp5562.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/leds/leds-lp5562.ko] undefined!
ERROR: "sysfs_streq" [drivers/leds/leds-lp5562.ko] undefined!
ERROR: "lp55xx_update_bits" [drivers/leds/leds-lp5562.ko] undefined!
ERROR: "lp55xx_deinit_device" [drivers/leds/leds-lp5562.ko] undefined!
ERROR: "lp55xx_unregister_leds" [drivers/leds/leds-lp5562.ko] undefined!
ERROR: "lp55xx_unregister_sysfs" [drivers/leds/leds-lp5562.ko] undefined!
ERROR: "usleep_range" [drivers/leds/leds-lp5562.ko] undefined!
ERROR: "lp55xx_write" [drivers/leds/leds-lp5562.ko] undefined!
ERROR: "of_get_named_gpio_flags" [drivers/leds/leds-lp55xx-common.ko] undefined!
ERROR: "of_get_property" [drivers/leds/leds-lp55xx-common.ko] undefined!
ERROR: "of_property_read_variable_u8_array" [drivers/leds/leds-lp55xx-common.ko] undefined!
ERROR: "of_property_read_string" [drivers/leds/leds-lp55xx-common.ko] undefined!
ERROR: "of_get_next_child" [drivers/leds/leds-lp55xx-common.ko] undefined!
ERROR: "devm_kmalloc" [drivers/leds/leds-lp55xx-common.ko] undefined!
ERROR: "sysfs_remove_group" [drivers/leds/leds-lp55xx-common.ko] undefined!
ERROR: "sysfs_create_group" [drivers/leds/leds-lp55xx-common.ko] undefined!
ERROR: "led_classdev_unregister" [drivers/leds/leds-lp55xx-common.ko] undefined!
ERROR: "snprintf" [drivers/leds/leds-lp55xx-common.ko] undefined!
ERROR: "led_classdev_register_ext" [drivers/leds/leds-lp55xx-common.ko] undefined!
ERROR: "usleep_range" [drivers/leds/leds-lp55xx-common.ko] undefined!
ERROR: "devm_gpio_request_one" [drivers/leds/leds-lp55xx-common.ko] undefined!
ERROR: "gpiod_set_raw_value" [drivers/leds/leds-lp55xx-common.ko] undefined!
ERROR: "gpio_to_desc" [drivers/leds/leds-lp55xx-common.ko] undefined!
ERROR: "clk_unprepare" [drivers/leds/leds-lp55xx-common.ko] undefined!
ERROR: "clk_disable" [drivers/leds/leds-lp55xx-common.ko] undefined!
ERROR: "clk_get_rate" [drivers/leds/leds-lp55xx-common.ko] undefined!
ERROR: "clk_enable" [drivers/leds/leds-lp55xx-common.ko] undefined!
ERROR: "_dev_info" [drivers/leds/leds-lp55xx-common.ko] undefined!
ERROR: "clk_prepare" [drivers/leds/leds-lp55xx-common.ko] undefined!
ERROR: "devm_clk_get" [drivers/leds/leds-lp55xx-common.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/leds/leds-lp55xx-common.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/leds/leds-lp55xx-common.ko] undefined!
ERROR: "sprintf" [drivers/leds/leds-lp55xx-common.ko] undefined!
ERROR: "release_firmware" [drivers/leds/leds-lp55xx-common.ko] undefined!
ERROR: "_dev_err" [drivers/leds/leds-lp55xx-common.ko] undefined!
ERROR: "request_firmware_nowait" [drivers/leds/leds-lp55xx-common.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/leds/leds-lp55xx-common.ko] undefined!
ERROR: "mutex_unlock" [drivers/leds/leds-lp55xx-common.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/leds/leds-lp55xx-common.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/leds/leds-lp55xx-common.ko] undefined!
ERROR: "_kstrtoul" [drivers/leds/leds-lp55xx-common.ko] undefined!
ERROR: "scnprintf" [drivers/leds/leds-lp55xx-common.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/leds/leds-lp55xx-common.ko] undefined!
ERROR: "i2c_del_driver" [drivers/leds/leds-lp3944.ko] undefined!
ERROR: "i2c_register_driver" [drivers/leds/leds-lp3944.ko] undefined!
ERROR: "_dev_err" [drivers/leds/leds-lp3944.ko] undefined!
ERROR: "_dev_info" [drivers/leds/leds-lp3944.ko] undefined!
ERROR: "led_classdev_register_ext" [drivers/leds/leds-lp3944.ko] undefined!
ERROR: "__mutex_init" [drivers/leds/leds-lp3944.ko] undefined!
ERROR: "devm_kmalloc" [drivers/leds/leds-lp3944.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/leds/leds-lp3944.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/leds/leds-lp3944.ko] undefined!
ERROR: "mutex_unlock" [drivers/leds/leds-lp3944.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/leds/leds-lp3944.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/leds/leds-lp3944.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/leds/leds-lp3944.ko] undefined!
ERROR: "led_classdev_unregister" [drivers/leds/leds-lp3944.ko] undefined!
ERROR: "platform_device_unregister" [drivers/leds/leds-wrap.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/leds/leds-wrap.ko] undefined!
ERROR: "platform_device_register_full" [drivers/leds/leds-wrap.ko] undefined!
ERROR: "__platform_driver_register" [drivers/leds/leds-wrap.ko] undefined!
ERROR: "devm_led_classdev_register_ext" [drivers/leds/leds-wrap.ko] undefined!
ERROR: "scx200_gpio_shadow" [drivers/leds/leds-wrap.ko] undefined!
ERROR: "scx200_gpio_base" [drivers/leds/leds-wrap.ko] undefined!
ERROR: "platform_device_unregister" [drivers/leds/leds-net48xx.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/leds/leds-net48xx.ko] undefined!
ERROR: "platform_device_register_full" [drivers/leds/leds-net48xx.ko] undefined!
ERROR: "__platform_driver_register" [drivers/leds/leds-net48xx.ko] undefined!
ERROR: "devm_led_classdev_register_ext" [drivers/leds/leds-net48xx.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/leds/leds-net48xx.ko] undefined!
ERROR: "scx200_gpio_ops" [drivers/leds/leds-net48xx.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/leds/leds-lm3533.ko] undefined!
ERROR: "__platform_driver_register" [drivers/leds/leds-lm3533.ko] undefined!
ERROR: "lm3533_ctrlbank_enable" [drivers/leds/leds-lm3533.ko] undefined!
ERROR: "lm3533_ctrlbank_set_max_current" [drivers/leds/leds-lm3533.ko] undefined!
ERROR: "devm_led_classdev_register_ext" [drivers/leds/leds-lm3533.ko] undefined!
ERROR: "__mutex_init" [drivers/leds/leds-lm3533.ko] undefined!
ERROR: "devm_kmalloc" [drivers/leds/leds-lm3533.ko] undefined!
ERROR: "lm3533_ctrlbank_get_brightness" [drivers/leds/leds-lm3533.ko] undefined!
ERROR: "kstrtouint" [drivers/leds/leds-lm3533.ko] undefined!
ERROR: "_kstrtoul" [drivers/leds/leds-lm3533.ko] undefined!
ERROR: "lm3533_ctrlbank_get_pwm" [drivers/leds/leds-lm3533.ko] undefined!
ERROR: "lm3533_ctrlbank_set_pwm" [drivers/leds/leds-lm3533.ko] undefined!
ERROR: "kstrtou8" [drivers/leds/leds-lm3533.ko] undefined!
ERROR: "scnprintf" [drivers/leds/leds-lm3533.ko] undefined!
ERROR: "lm3533_read" [drivers/leds/leds-lm3533.ko] undefined!
ERROR: "lm3533_write" [drivers/leds/leds-lm3533.ko] undefined!
ERROR: "lm3533_ctrlbank_set_brightness" [drivers/leds/leds-lm3533.ko] undefined!
ERROR: "_dev_err" [drivers/leds/leds-lm3533.ko] undefined!
ERROR: "mutex_unlock" [drivers/leds/leds-lm3533.ko] undefined!
ERROR: "lm3533_update" [drivers/leds/leds-lm3533.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/leds/leds-lm3533.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/leds/leds-lm3533.ko] undefined!
ERROR: "lm3533_ctrlbank_disable" [drivers/leds/leds-lm3533.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/leds/leds-bcm6328.ko] undefined!
ERROR: "__platform_driver_register" [drivers/leds/leds-bcm6328.ko] undefined!
ERROR: "_dev_err" [drivers/leds/leds-bcm6328.ko] undefined!
ERROR: "_dev_warn" [drivers/leds/leds-bcm6328.ko] undefined!
ERROR: "of_node_put" [drivers/leds/leds-bcm6328.ko] undefined!
ERROR: "strcmp" [drivers/leds/leds-bcm6328.ko] undefined!
ERROR: "led_classdev_register_ext" [drivers/leds/leds-bcm6328.ko] undefined!
ERROR: "of_property_read_string" [drivers/leds/leds-bcm6328.ko] undefined!
ERROR: "of_get_property" [drivers/leds/leds-bcm6328.ko] undefined!
ERROR: "of_property_read_u32_index" [drivers/leds/leds-bcm6328.ko] undefined!
ERROR: "of_property_count_elems_of_size" [drivers/leds/leds-bcm6328.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/leds/leds-bcm6328.ko] undefined!
ERROR: "of_get_next_available_child" [drivers/leds/leds-bcm6328.ko] undefined!
ERROR: "of_find_property" [drivers/leds/leds-bcm6328.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/leds/leds-bcm6328.ko] undefined!
ERROR: "devm_kmalloc" [drivers/leds/leds-bcm6328.ko] undefined!
ERROR: "devm_platform_ioremap_resource" [drivers/leds/leds-bcm6328.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/leds/leds-bcm6328.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/leds/leds-bcm6328.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/leds/leds-bcm6328.ko] undefined!
ERROR: "i2c_del_driver" [drivers/leds/leds-an30259a.ko] undefined!
ERROR: "i2c_register_driver" [drivers/leds/leds-an30259a.ko] undefined!
ERROR: "_dev_err" [drivers/leds/leds-an30259a.ko] undefined!
ERROR: "strcmp" [drivers/leds/leds-an30259a.ko] undefined!
ERROR: "devm_led_classdev_register_ext" [drivers/leds/leds-an30259a.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/leds/leds-an30259a.ko] undefined!
ERROR: "__mutex_init" [drivers/leds/leds-an30259a.ko] undefined!
ERROR: "of_property_read_string" [drivers/leds/leds-an30259a.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/leds/leds-an30259a.ko] undefined!
ERROR: "of_get_next_available_child" [drivers/leds/leds-an30259a.ko] undefined!
ERROR: "of_get_next_child" [drivers/leds/leds-an30259a.ko] undefined!
ERROR: "devm_kmalloc" [drivers/leds/leds-an30259a.ko] undefined!
ERROR: "regmap_read" [drivers/leds/leds-an30259a.ko] undefined!
ERROR: "mutex_unlock" [drivers/leds/leds-an30259a.ko] undefined!
ERROR: "regmap_write" [drivers/leds/leds-an30259a.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/leds/leds-an30259a.ko] undefined!
ERROR: "mutex_destroy" [drivers/leds/leds-an30259a.ko] undefined!
ERROR: "led_trigger_unregister_simple" [drivers/leds/trigger/ledtrig-audio.ko] undefined!
ERROR: "led_trigger_register_simple" [drivers/leds/trigger/ledtrig-audio.ko] undefined!
ERROR: "led_trigger_event" [drivers/leds/trigger/ledtrig-audio.ko] undefined!
ERROR: "led_trigger_unregister" [drivers/leds/trigger/ledtrig-timer.ko] undefined!
ERROR: "led_trigger_register" [drivers/leds/trigger/ledtrig-timer.ko] undefined!
ERROR: "_dev_warn" [drivers/leds/trigger/ledtrig-timer.ko] undefined!
ERROR: "kfree" [drivers/leds/trigger/ledtrig-timer.ko] undefined!
ERROR: "led_get_default_pattern" [drivers/leds/trigger/ledtrig-timer.ko] undefined!
ERROR: "flush_work" [drivers/leds/trigger/ledtrig-timer.ko] undefined!
ERROR: "led_set_brightness" [drivers/leds/trigger/ledtrig-timer.ko] undefined!
ERROR: "sprintf" [drivers/leds/trigger/ledtrig-timer.ko] undefined!
ERROR: "led_blink_set" [drivers/leds/trigger/ledtrig-timer.ko] undefined!
ERROR: "_kstrtoul" [drivers/leds/trigger/ledtrig-timer.ko] undefined!
ERROR: "cpufreq_generic_attr" [drivers/cpufreq/speedstep-smi.ko] undefined!
ERROR: "cpufreq_generic_frequency_table_verify" [drivers/cpufreq/speedstep-smi.ko] undefined!
ERROR: "param_ops_int" [drivers/cpufreq/speedstep-smi.ko] undefined!
ERROR: "param_ops_uint" [drivers/cpufreq/speedstep-smi.ko] undefined!
ERROR: "cpufreq_unregister_driver" [drivers/cpufreq/speedstep-smi.ko] undefined!
ERROR: "cpufreq_register_driver" [drivers/cpufreq/speedstep-smi.ko] undefined!
ERROR: "speedstep_detect_processor" [drivers/cpufreq/speedstep-smi.ko] undefined!
ERROR: "x86_match_cpu" [drivers/cpufreq/speedstep-smi.ko] undefined!
ERROR: "speedstep_get_freqs" [drivers/cpufreq/speedstep-smi.ko] undefined!
ERROR: "ist_info" [drivers/cpufreq/speedstep-smi.ko] undefined!
ERROR: "printk" [drivers/cpufreq/speedstep-smi.ko] undefined!
ERROR: "__const_udelay" [drivers/cpufreq/speedstep-smi.ko] undefined!
ERROR: "trace_hardirqs_on" [drivers/cpufreq/speedstep-smi.ko] undefined!
ERROR: "trace_hardirqs_off" [drivers/cpufreq/speedstep-smi.ko] undefined!
ERROR: "__preempt_count" [drivers/cpufreq/speedstep-smi.ko] undefined!
ERROR: "speedstep_get_frequency" [drivers/cpufreq/speedstep-smi.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/cpufreq/speedstep-smi.ko] undefined!
ERROR: "__phys_addr" [drivers/cpufreq/speedstep-smi.ko] undefined!
ERROR: "cpufreq_generic_attr" [drivers/cpufreq/speedstep-ich.ko] undefined!
ERROR: "cpufreq_generic_frequency_table_verify" [drivers/cpufreq/speedstep-ich.ko] undefined!
ERROR: "cpufreq_unregister_driver" [drivers/cpufreq/speedstep-ich.ko] undefined!
ERROR: "cpufreq_register_driver" [drivers/cpufreq/speedstep-ich.ko] undefined!
ERROR: "pci_read_config_dword" [drivers/cpufreq/speedstep-ich.ko] undefined!
ERROR: "pci_write_config_word" [drivers/cpufreq/speedstep-ich.ko] undefined!
ERROR: "pci_read_config_word" [drivers/cpufreq/speedstep-ich.ko] undefined!
ERROR: "pci_dev_put" [drivers/cpufreq/speedstep-ich.ko] undefined!
ERROR: "pci_get_subsys" [drivers/cpufreq/speedstep-ich.ko] undefined!
ERROR: "speedstep_detect_processor" [drivers/cpufreq/speedstep-ich.ko] undefined!
ERROR: "x86_match_cpu" [drivers/cpufreq/speedstep-ich.ko] undefined!
ERROR: "speedstep_get_freqs" [drivers/cpufreq/speedstep-ich.ko] undefined!
ERROR: "printk" [drivers/cpufreq/speedstep-ich.ko] undefined!
ERROR: "trace_hardirqs_on" [drivers/cpufreq/speedstep-ich.ko] undefined!
ERROR: "trace_hardirqs_off" [drivers/cpufreq/speedstep-ich.ko] undefined!
ERROR: "speedstep_get_frequency" [drivers/cpufreq/speedstep-ich.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/cpufreq/speedstep-ich.ko] undefined!
ERROR: "smp_call_function_single" [drivers/cpufreq/speedstep-ich.ko] undefined!
ERROR: "free_percpu" [drivers/cpufreq/pcc-cpufreq.ko] undefined!
ERROR: "cpufreq_unregister_driver" [drivers/cpufreq/pcc-cpufreq.ko] undefined!
ERROR: "iounmap" [drivers/cpufreq/pcc-cpufreq.ko] undefined!
ERROR: "cpufreq_register_driver" [drivers/cpufreq/pcc-cpufreq.ko] undefined!
ERROR: "printk" [drivers/cpufreq/pcc-cpufreq.ko] undefined!
ERROR: "__alloc_percpu" [drivers/cpufreq/pcc-cpufreq.ko] undefined!
ERROR: "ioread8" [drivers/cpufreq/pcc-cpufreq.ko] undefined!
ERROR: "ioremap" [drivers/cpufreq/pcc-cpufreq.ko] undefined!
ERROR: "acpi_has_method" [drivers/cpufreq/pcc-cpufreq.ko] undefined!
ERROR: "acpi_get_handle" [drivers/cpufreq/pcc-cpufreq.ko] undefined!
ERROR: "acpi_disabled" [drivers/cpufreq/pcc-cpufreq.ko] undefined!
ERROR: "cpufreq_get_current_driver" [drivers/cpufreq/pcc-cpufreq.ko] undefined!
ERROR: "cpufreq_freq_transition_end" [drivers/cpufreq/pcc-cpufreq.ko] undefined!
ERROR: "cpufreq_freq_transition_begin" [drivers/cpufreq/pcc-cpufreq.ko] undefined!
ERROR: "kfree" [drivers/cpufreq/pcc-cpufreq.ko] undefined!
ERROR: "acpi_evaluate_object" [drivers/cpufreq/pcc-cpufreq.ko] undefined!
ERROR: "processors" [drivers/cpufreq/pcc-cpufreq.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/cpufreq/pcc-cpufreq.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/cpufreq/pcc-cpufreq.ko] undefined!
ERROR: "memset_io" [drivers/cpufreq/pcc-cpufreq.ko] undefined!
ERROR: "ioread32" [drivers/cpufreq/pcc-cpufreq.ko] undefined!
ERROR: "ioread16" [drivers/cpufreq/pcc-cpufreq.ko] undefined!
ERROR: "acpi_write" [drivers/cpufreq/pcc-cpufreq.ko] undefined!
ERROR: "acpi_read" [drivers/cpufreq/pcc-cpufreq.ko] undefined!
ERROR: "iowrite16" [drivers/cpufreq/pcc-cpufreq.ko] undefined!
ERROR: "iowrite32" [drivers/cpufreq/pcc-cpufreq.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/cpufreq/pcc-cpufreq.ko] undefined!
ERROR: "cpufreq_generic_attr" [drivers/cpufreq/powernow-k8.ko] undefined!
ERROR: "acpi_processor_get_bios_limit" [drivers/cpufreq/powernow-k8.ko] undefined!
ERROR: "cpufreq_generic_frequency_table_verify" [drivers/cpufreq/powernow-k8.ko] undefined!
ERROR: "cpufreq_unregister_driver" [drivers/cpufreq/powernow-k8.ko] undefined!
ERROR: "__request_module" [drivers/cpufreq/powernow-k8.ko] undefined!
ERROR: "strncmp" [drivers/cpufreq/powernow-k8.ko] undefined!
ERROR: "strlen" [drivers/cpufreq/powernow-k8.ko] undefined!
ERROR: "cpufreq_get_current_driver" [drivers/cpufreq/powernow-k8.ko] undefined!
ERROR: "cpufreq_register_driver" [drivers/cpufreq/powernow-k8.ko] undefined!
ERROR: "x86_match_cpu" [drivers/cpufreq/powernow-k8.ko] undefined!
ERROR: "boot_cpu_data" [drivers/cpufreq/powernow-k8.ko] undefined!
ERROR: "cpu_bit_bitmap" [drivers/cpufreq/powernow-k8.ko] undefined!
ERROR: "acpi_processor_notify_smm" [drivers/cpufreq/powernow-k8.ko] undefined!
ERROR: "__kmalloc" [drivers/cpufreq/powernow-k8.ko] undefined!
ERROR: "acpi_processor_register_performance" [drivers/cpufreq/powernow-k8.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/cpufreq/powernow-k8.ko] undefined!
ERROR: "kmalloc_caches" [drivers/cpufreq/powernow-k8.ko] undefined!
ERROR: "mutex_unlock" [drivers/cpufreq/powernow-k8.ko] undefined!
ERROR: "cpufreq_freq_transition_end" [drivers/cpufreq/powernow-k8.ko] undefined!
ERROR: "cpufreq_freq_transition_begin" [drivers/cpufreq/powernow-k8.ko] undefined!
ERROR: "cpufreq_cpu_put" [drivers/cpufreq/powernow-k8.ko] undefined!
ERROR: "cpufreq_cpu_get" [drivers/cpufreq/powernow-k8.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/cpufreq/powernow-k8.ko] undefined!
ERROR: "do_trace_write_msr" [drivers/cpufreq/powernow-k8.ko] undefined!
ERROR: "__tracepoint_write_msr" [drivers/cpufreq/powernow-k8.ko] undefined!
ERROR: "ex_handler_wrmsr_unsafe" [drivers/cpufreq/powernow-k8.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/cpufreq/powernow-k8.ko] undefined!
ERROR: "do_trace_read_msr" [drivers/cpufreq/powernow-k8.ko] undefined!
ERROR: "__tracepoint_read_msr" [drivers/cpufreq/powernow-k8.ko] undefined!
ERROR: "ex_handler_rdmsr_unsafe" [drivers/cpufreq/powernow-k8.ko] undefined!
ERROR: "__udelay" [drivers/cpufreq/powernow-k8.ko] undefined!
ERROR: "acpi_processor_unregister_performance" [drivers/cpufreq/powernow-k8.ko] undefined!
ERROR: "kfree" [drivers/cpufreq/powernow-k8.ko] undefined!
ERROR: "printk" [drivers/cpufreq/powernow-k8.ko] undefined!
ERROR: "smp_call_function_single" [drivers/cpufreq/powernow-k8.ko] undefined!
ERROR: "cpufreq_freq_attr_scaling_available_freqs" [drivers/cpufreq/cpufreq-dt.ko] undefined!
ERROR: "cpufreq_generic_suspend" [drivers/cpufreq/cpufreq-dt.ko] undefined!
ERROR: "cpufreq_generic_get" [drivers/cpufreq/cpufreq-dt.ko] undefined!
ERROR: "cpufreq_generic_frequency_table_verify" [drivers/cpufreq/cpufreq-dt.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/cpufreq/cpufreq-dt.ko] undefined!
ERROR: "__platform_driver_register" [drivers/cpufreq/cpufreq-dt.ko] undefined!
ERROR: "cpufreq_register_driver" [drivers/cpufreq/cpufreq-dt.ko] undefined!
ERROR: "regulator_put" [drivers/cpufreq/cpufreq-dt.ko] undefined!
ERROR: "regulator_get_optional" [drivers/cpufreq/cpufreq-dt.ko] undefined!
ERROR: "printk" [drivers/cpufreq/cpufreq-dt.ko] undefined!
ERROR: "_dev_err" [drivers/cpufreq/cpufreq-dt.ko] undefined!
ERROR: "dev_pm_opp_set_sharing_cpus" [drivers/cpufreq/cpufreq-dt.ko] undefined!
ERROR: "dev_pm_opp_of_register_em" [drivers/cpufreq/cpufreq-dt.ko] undefined!
ERROR: "dev_pm_opp_get_max_transition_latency" [drivers/cpufreq/cpufreq-dt.ko] undefined!
ERROR: "cpufreq_freq_attr_scaling_boost_freqs" [drivers/cpufreq/cpufreq-dt.ko] undefined!
ERROR: "cpufreq_enable_boost_support" [drivers/cpufreq/cpufreq-dt.ko] undefined!
ERROR: "policy_has_boost_freq" [drivers/cpufreq/cpufreq-dt.ko] undefined!
ERROR: "dev_pm_opp_get_suspend_opp_freq" [drivers/cpufreq/cpufreq-dt.ko] undefined!
ERROR: "dev_pm_opp_init_cpufreq_table" [drivers/cpufreq/cpufreq-dt.ko] undefined!
ERROR: "dev_pm_opp_get_opp_count" [drivers/cpufreq/cpufreq-dt.ko] undefined!
ERROR: "dev_pm_opp_of_cpumask_add_table" [drivers/cpufreq/cpufreq-dt.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/cpufreq/cpufreq-dt.ko] undefined!
ERROR: "kmalloc_caches" [drivers/cpufreq/cpufreq-dt.ko] undefined!
ERROR: "dev_pm_opp_set_regulators" [drivers/cpufreq/cpufreq-dt.ko] undefined!
ERROR: "dev_pm_opp_get_sharing_cpus" [drivers/cpufreq/cpufreq-dt.ko] undefined!
ERROR: "dev_pm_opp_of_get_sharing_cpus" [drivers/cpufreq/cpufreq-dt.ko] undefined!
ERROR: "clk_get" [drivers/cpufreq/cpufreq-dt.ko] undefined!
ERROR: "get_cpu_device" [drivers/cpufreq/cpufreq-dt.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/cpufreq/cpufreq-dt.ko] undefined!
ERROR: "of_node_put" [drivers/cpufreq/cpufreq-dt.ko] undefined!
ERROR: "of_find_property" [drivers/cpufreq/cpufreq-dt.ko] undefined!
ERROR: "of_node_get" [drivers/cpufreq/cpufreq-dt.ko] undefined!
ERROR: "arch_set_freq_scale" [drivers/cpufreq/cpufreq-dt.ko] undefined!
ERROR: "dev_pm_opp_set_rate" [drivers/cpufreq/cpufreq-dt.ko] undefined!
ERROR: "dev_pm_opp_of_cpumask_remove_table" [drivers/cpufreq/cpufreq-dt.ko] undefined!
ERROR: "kfree" [drivers/cpufreq/cpufreq-dt.ko] undefined!
ERROR: "clk_put" [drivers/cpufreq/cpufreq-dt.ko] undefined!
ERROR: "dev_pm_opp_put_regulators" [drivers/cpufreq/cpufreq-dt.ko] undefined!
ERROR: "dev_pm_opp_free_cpufreq_table" [drivers/cpufreq/cpufreq-dt.ko] undefined!
ERROR: "cpufreq_unregister_driver" [drivers/cpufreq/cpufreq-dt.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/thermal/thermal-generic-adc.ko] undefined!
ERROR: "__platform_driver_register" [drivers/thermal/thermal-generic-adc.ko] undefined!
ERROR: "iio_read_channel_processed" [drivers/thermal/thermal-generic-adc.ko] undefined!
ERROR: "_dev_notice" [drivers/thermal/thermal-generic-adc.ko] undefined!
ERROR: "_dev_err" [drivers/thermal/thermal-generic-adc.ko] undefined!
ERROR: "iio_get_channel_type" [drivers/thermal/thermal-generic-adc.ko] undefined!
ERROR: "devm_thermal_zone_of_sensor_register" [drivers/thermal/thermal-generic-adc.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/thermal/thermal-generic-adc.ko] undefined!
ERROR: "of_property_count_elems_of_size" [drivers/thermal/thermal-generic-adc.ko] undefined!
ERROR: "devm_iio_channel_get" [drivers/thermal/thermal-generic-adc.ko] undefined!
ERROR: "devm_kmalloc" [drivers/thermal/thermal-generic-adc.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/thermal/qcom/qcom-spmi-temp-alarm.ko] undefined!
ERROR: "__platform_driver_register" [drivers/thermal/qcom/qcom-spmi-temp-alarm.ko] undefined!
ERROR: "_dev_err" [drivers/thermal/qcom/qcom-spmi-temp-alarm.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/thermal/qcom/qcom-spmi-temp-alarm.ko] undefined!
ERROR: "of_thermal_is_trip_valid" [drivers/thermal/qcom/qcom-spmi-temp-alarm.ko] undefined!
ERROR: "of_thermal_get_ntrips" [drivers/thermal/qcom/qcom-spmi-temp-alarm.ko] undefined!
ERROR: "devm_thermal_zone_of_sensor_register" [drivers/thermal/qcom/qcom-spmi-temp-alarm.ko] undefined!
ERROR: "devm_iio_channel_get" [drivers/thermal/qcom/qcom-spmi-temp-alarm.ko] undefined!
ERROR: "platform_get_irq" [drivers/thermal/qcom/qcom-spmi-temp-alarm.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/thermal/qcom/qcom-spmi-temp-alarm.ko] undefined!
ERROR: "dev_get_regmap" [drivers/thermal/qcom/qcom-spmi-temp-alarm.ko] undefined!
ERROR: "__mutex_init" [drivers/thermal/qcom/qcom-spmi-temp-alarm.ko] undefined!
ERROR: "devm_kmalloc" [drivers/thermal/qcom/qcom-spmi-temp-alarm.ko] undefined!
ERROR: "iio_read_channel_processed" [drivers/thermal/qcom/qcom-spmi-temp-alarm.ko] undefined!
ERROR: "regmap_read" [drivers/thermal/qcom/qcom-spmi-temp-alarm.ko] undefined!
ERROR: "mutex_unlock" [drivers/thermal/qcom/qcom-spmi-temp-alarm.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/thermal/qcom/qcom-spmi-temp-alarm.ko] undefined!
ERROR: "of_thermal_get_trip_points" [drivers/thermal/qcom/qcom-spmi-temp-alarm.ko] undefined!
ERROR: "_dev_warn" [drivers/thermal/qcom/qcom-spmi-temp-alarm.ko] undefined!
ERROR: "regmap_write" [drivers/thermal/qcom/qcom-spmi-temp-alarm.ko] undefined!
ERROR: "mutex_is_locked" [drivers/thermal/qcom/qcom-spmi-temp-alarm.ko] undefined!
ERROR: "thermal_zone_device_update" [drivers/thermal/qcom/qcom-spmi-temp-alarm.ko] undefined!
ERROR: "debugfs_create_dir" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "single_open" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "single_release" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "seq_puts" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "seq_printf" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "__const_udelay" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "regmap_read" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "debugfs_create_file" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "debugfs_remove_recursive" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "seq_read" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "__platform_driver_register" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "jiffies" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "irq_set_irq_wake" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "__devm_regmap_init_mmio_clk" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "of_match_node" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "dev_get_regmap" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "platform_get_resource" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "thermal_zone_get_slope" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "_dev_err" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "debugfs_lookup" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "devm_regmap_field_alloc" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "regmap_field_read" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "nvmem_cell_read" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "put_device" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "platform_get_irq_byname" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "nvmem_cell_put" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "jiffies_to_usecs" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "regmap_field_update_bits_base" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "seq_lseek" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "kfree" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "devm_thermal_zone_of_sensor_register" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "thermal_zone_device_update" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "nvmem_cell_get" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "of_find_device_by_node" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "devm_kmalloc" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "regmap_write" [drivers/thermal/qcom/qcom_tsens.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/thermal/qoriq_thermal.ko] undefined!
ERROR: "__platform_driver_register" [drivers/thermal/qoriq_thermal.ko] undefined!
ERROR: "_dev_warn" [drivers/thermal/qoriq_thermal.ko] undefined!
ERROR: "devm_thermal_add_hwmon_sysfs" [drivers/thermal/qoriq_thermal.ko] undefined!
ERROR: "devm_thermal_zone_of_sensor_register" [drivers/thermal/qoriq_thermal.ko] undefined!
ERROR: "of_get_property" [drivers/thermal/qoriq_thermal.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/thermal/qoriq_thermal.ko] undefined!
ERROR: "of_property_count_elems_of_size" [drivers/thermal/qoriq_thermal.ko] undefined!
ERROR: "clk_enable" [drivers/thermal/qoriq_thermal.ko] undefined!
ERROR: "_dev_err" [drivers/thermal/qoriq_thermal.ko] undefined!
ERROR: "clk_prepare" [drivers/thermal/qoriq_thermal.ko] undefined!
ERROR: "devm_clk_get_optional" [drivers/thermal/qoriq_thermal.ko] undefined!
ERROR: "__devm_regmap_init_mmio_clk" [drivers/thermal/qoriq_thermal.ko] undefined!
ERROR: "devm_platform_ioremap_resource" [drivers/thermal/qoriq_thermal.ko] undefined!
ERROR: "devm_kmalloc" [drivers/thermal/qoriq_thermal.ko] undefined!
ERROR: "of_find_property" [drivers/thermal/qoriq_thermal.ko] undefined!
ERROR: "usleep_range" [drivers/thermal/qoriq_thermal.ko] undefined!
ERROR: "regmap_read" [drivers/thermal/qoriq_thermal.ko] undefined!
ERROR: "__might_sleep" [drivers/thermal/qoriq_thermal.ko] undefined!
ERROR: "ktime_get" [drivers/thermal/qoriq_thermal.ko] undefined!
ERROR: "regmap_write" [drivers/thermal/qoriq_thermal.ko] undefined!
ERROR: "clk_unprepare" [drivers/thermal/qoriq_thermal.ko] undefined!
ERROR: "clk_disable" [drivers/thermal/qoriq_thermal.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/thermal/qoriq_thermal.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/thermal/max77620_thermal.ko] undefined!
ERROR: "__platform_driver_register" [drivers/thermal/max77620_thermal.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/thermal/max77620_thermal.ko] undefined!
ERROR: "devm_thermal_zone_of_sensor_register" [drivers/thermal/max77620_thermal.ko] undefined!
ERROR: "device_set_of_node_from_dev" [drivers/thermal/max77620_thermal.ko] undefined!
ERROR: "dev_get_regmap" [drivers/thermal/max77620_thermal.ko] undefined!
ERROR: "platform_get_irq" [drivers/thermal/max77620_thermal.ko] undefined!
ERROR: "devm_kmalloc" [drivers/thermal/max77620_thermal.ko] undefined!
ERROR: "_dev_err" [drivers/thermal/max77620_thermal.ko] undefined!
ERROR: "regmap_read" [drivers/thermal/max77620_thermal.ko] undefined!
ERROR: "_dev_crit" [drivers/thermal/max77620_thermal.ko] undefined!
ERROR: "_dev_warn" [drivers/thermal/max77620_thermal.ko] undefined!
ERROR: "thermal_zone_device_update" [drivers/thermal/max77620_thermal.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/thermal/imx_thermal.ko] undefined!
ERROR: "__platform_driver_register" [drivers/thermal/imx_thermal.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/thermal/imx_thermal.ko] undefined!
ERROR: "_dev_info" [drivers/thermal/imx_thermal.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/thermal/imx_thermal.ko] undefined!
ERROR: "thermal_zone_device_register" [drivers/thermal/imx_thermal.ko] undefined!
ERROR: "clk_enable" [drivers/thermal/imx_thermal.ko] undefined!
ERROR: "clk_prepare" [drivers/thermal/imx_thermal.ko] undefined!
ERROR: "devm_clk_get" [drivers/thermal/imx_thermal.ko] undefined!
ERROR: "of_get_cpu_node" [drivers/thermal/imx_thermal.ko] undefined!
ERROR: "cpufreq_cpu_get" [drivers/thermal/imx_thermal.ko] undefined!
ERROR: "nvmem_cell_read_u32" [drivers/thermal/imx_thermal.ko] undefined!
ERROR: "of_find_property" [drivers/thermal/imx_thermal.ko] undefined!
ERROR: "platform_get_irq" [drivers/thermal/imx_thermal.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/thermal/imx_thermal.ko] undefined!
ERROR: "syscon_regmap_lookup_by_phandle" [drivers/thermal/imx_thermal.ko] undefined!
ERROR: "devm_kmalloc" [drivers/thermal/imx_thermal.ko] undefined!
ERROR: "thermal_zone_bind_cooling_device" [drivers/thermal/imx_thermal.ko] undefined!
ERROR: "_dev_err" [drivers/thermal/imx_thermal.ko] undefined!
ERROR: "thermal_zone_unbind_cooling_device" [drivers/thermal/imx_thermal.ko] undefined!
ERROR: "regmap_read" [drivers/thermal/imx_thermal.ko] undefined!
ERROR: "usleep_range" [drivers/thermal/imx_thermal.ko] undefined!
ERROR: "enable_irq" [drivers/thermal/imx_thermal.ko] undefined!
ERROR: "disable_irq" [drivers/thermal/imx_thermal.ko] undefined!
ERROR: "disable_irq_nosync" [drivers/thermal/imx_thermal.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/thermal/imx_thermal.ko] undefined!
ERROR: "thermal_zone_device_update" [drivers/thermal/imx_thermal.ko] undefined!
ERROR: "cpufreq_cpu_put" [drivers/thermal/imx_thermal.ko] undefined!
ERROR: "thermal_zone_device_unregister" [drivers/thermal/imx_thermal.ko] undefined!
ERROR: "clk_unprepare" [drivers/thermal/imx_thermal.ko] undefined!
ERROR: "clk_disable" [drivers/thermal/imx_thermal.ko] undefined!
ERROR: "regmap_write" [drivers/thermal/imx_thermal.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/thermal/tango_thermal.ko] undefined!
ERROR: "__platform_driver_register" [drivers/thermal/tango_thermal.ko] undefined!
ERROR: "devm_thermal_zone_of_sensor_register" [drivers/thermal/tango_thermal.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/thermal/tango_thermal.ko] undefined!
ERROR: "platform_get_resource" [drivers/thermal/tango_thermal.ko] undefined!
ERROR: "devm_kmalloc" [drivers/thermal/tango_thermal.ko] undefined!
ERROR: "usleep_range" [drivers/thermal/tango_thermal.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/thermal/dove_thermal.ko] undefined!
ERROR: "__platform_driver_register" [drivers/thermal/dove_thermal.ko] undefined!
ERROR: "thermal_zone_device_register" [drivers/thermal/dove_thermal.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/thermal/dove_thermal.ko] undefined!
ERROR: "platform_get_resource" [drivers/thermal/dove_thermal.ko] undefined!
ERROR: "devm_kmalloc" [drivers/thermal/dove_thermal.ko] undefined!
ERROR: "_dev_err" [drivers/thermal/dove_thermal.ko] undefined!
ERROR: "thermal_zone_device_unregister" [drivers/thermal/dove_thermal.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/thermal/rcar_gen3_thermal.ko] undefined!
ERROR: "__platform_driver_register" [drivers/thermal/rcar_gen3_thermal.ko] undefined!
ERROR: "_dev_info" [drivers/thermal/rcar_gen3_thermal.ko] undefined!
ERROR: "_dev_err" [drivers/thermal/rcar_gen3_thermal.ko] undefined!
ERROR: "of_thermal_get_ntrips" [drivers/thermal/rcar_gen3_thermal.ko] undefined!
ERROR: "devm_add_action" [drivers/thermal/rcar_gen3_thermal.ko] undefined!
ERROR: "thermal_add_hwmon_sysfs" [drivers/thermal/rcar_gen3_thermal.ko] undefined!
ERROR: "devm_thermal_zone_of_sensor_register" [drivers/thermal/rcar_gen3_thermal.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/thermal/rcar_gen3_thermal.ko] undefined!
ERROR: "platform_get_resource" [drivers/thermal/rcar_gen3_thermal.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/thermal/rcar_gen3_thermal.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/thermal/rcar_gen3_thermal.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/thermal/rcar_gen3_thermal.ko] undefined!
ERROR: "devm_kasprintf" [drivers/thermal/rcar_gen3_thermal.ko] undefined!
ERROR: "platform_get_irq" [drivers/thermal/rcar_gen3_thermal.ko] undefined!
ERROR: "soc_device_match" [drivers/thermal/rcar_gen3_thermal.ko] undefined!
ERROR: "devm_kmalloc" [drivers/thermal/rcar_gen3_thermal.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/thermal/rcar_gen3_thermal.ko] undefined!
ERROR: "usleep_range" [drivers/thermal/rcar_gen3_thermal.ko] undefined!
ERROR: "thermal_zone_device_update" [drivers/thermal/rcar_gen3_thermal.ko] undefined!
ERROR: "ioread32" [drivers/thermal/rcar_gen3_thermal.ko] undefined!
ERROR: "thermal_remove_hwmon_sysfs" [drivers/thermal/rcar_gen3_thermal.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/thermal/rcar_gen3_thermal.ko] undefined!
ERROR: "__pm_runtime_idle" [drivers/thermal/rcar_gen3_thermal.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/thermal/rcar_gen3_thermal.ko] undefined!
ERROR: "iowrite32" [drivers/thermal/rcar_gen3_thermal.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/thermal/spear_thermal.ko] undefined!
ERROR: "__platform_driver_register" [drivers/thermal/spear_thermal.ko] undefined!
ERROR: "thermal_zone_device_register" [drivers/thermal/spear_thermal.ko] undefined!
ERROR: "devm_clk_get" [drivers/thermal/spear_thermal.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/thermal/spear_thermal.ko] undefined!
ERROR: "platform_get_resource" [drivers/thermal/spear_thermal.ko] undefined!
ERROR: "devm_kmalloc" [drivers/thermal/spear_thermal.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/thermal/spear_thermal.ko] undefined!
ERROR: "thermal_zone_device_unregister" [drivers/thermal/spear_thermal.ko] undefined!
ERROR: "clk_disable" [drivers/thermal/spear_thermal.ko] undefined!
ERROR: "_dev_err" [drivers/thermal/spear_thermal.ko] undefined!
ERROR: "_dev_info" [drivers/thermal/spear_thermal.ko] undefined!
ERROR: "clk_enable" [drivers/thermal/spear_thermal.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/thermal/thermal_mmio.ko] undefined!
ERROR: "__platform_driver_register" [drivers/thermal/thermal_mmio.ko] undefined!
ERROR: "_dev_err" [drivers/thermal/thermal_mmio.ko] undefined!
ERROR: "_dev_info" [drivers/thermal/thermal_mmio.ko] undefined!
ERROR: "devm_thermal_zone_of_sensor_register" [drivers/thermal/thermal_mmio.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/thermal/thermal_mmio.ko] undefined!
ERROR: "device_get_match_data" [drivers/thermal/thermal_mmio.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/thermal/thermal_mmio.ko] undefined!
ERROR: "platform_get_resource" [drivers/thermal/thermal_mmio.ko] undefined!
ERROR: "devm_kmalloc" [drivers/thermal/thermal_mmio.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/thermal/thermal_mmio.ko] undefined!
ERROR: "param_get_int" [drivers/thermal/intel/intel_powerclamp.ko] undefined!
ERROR: "delayed_work_timer_fn" [drivers/thermal/intel/intel_powerclamp.ko] undefined!
ERROR: "single_release" [drivers/thermal/intel/intel_powerclamp.ko] undefined!
ERROR: "seq_read" [drivers/thermal/intel/intel_powerclamp.ko] undefined!
ERROR: "seq_lseek" [drivers/thermal/intel/intel_powerclamp.ko] undefined!
ERROR: "debugfs_remove_recursive" [drivers/thermal/intel/intel_powerclamp.ko] undefined!
ERROR: "cancel_delayed_work_sync" [drivers/thermal/intel/intel_powerclamp.ko] undefined!
ERROR: "thermal_cooling_device_unregister" [drivers/thermal/intel/intel_powerclamp.ko] undefined!
ERROR: "__cpuhp_remove_state" [drivers/thermal/intel/intel_powerclamp.ko] undefined!
ERROR: "debugfs_create_file" [drivers/thermal/intel/intel_powerclamp.ko] undefined!
ERROR: "debugfs_create_dir" [drivers/thermal/intel/intel_powerclamp.ko] undefined!
ERROR: "jiffies_to_msecs" [drivers/thermal/intel/intel_powerclamp.ko] undefined!
ERROR: "free_percpu" [drivers/thermal/intel/intel_powerclamp.ko] undefined!
ERROR: "thermal_cooling_device_register" [drivers/thermal/intel/intel_powerclamp.ko] undefined!
ERROR: "__alloc_percpu" [drivers/thermal/intel/intel_powerclamp.ko] undefined!
ERROR: "kfree" [drivers/thermal/intel/intel_powerclamp.ko] undefined!
ERROR: "__cpuhp_setup_state" [drivers/thermal/intel/intel_powerclamp.ko] undefined!
ERROR: "boot_cpu_data" [drivers/thermal/intel/intel_powerclamp.ko] undefined!
ERROR: "x86_match_cpu" [drivers/thermal/intel/intel_powerclamp.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/thermal/intel/intel_powerclamp.ko] undefined!
ERROR: "kmalloc_caches" [drivers/thermal/intel/intel_powerclamp.ko] undefined!
ERROR: "play_idle_precise" [drivers/thermal/intel/intel_powerclamp.ko] undefined!
ERROR: "jiffies_to_usecs" [drivers/thermal/intel/intel_powerclamp.ko] undefined!
ERROR: "do_trace_read_msr" [drivers/thermal/intel/intel_powerclamp.ko] undefined!
ERROR: "__tracepoint_read_msr" [drivers/thermal/intel/intel_powerclamp.ko] undefined!
ERROR: "ex_handler_default" [drivers/thermal/intel/intel_powerclamp.ko] undefined!
ERROR: "queue_delayed_work_on" [drivers/thermal/intel/intel_powerclamp.ko] undefined!
ERROR: "system_wq" [drivers/thermal/intel/intel_powerclamp.ko] undefined!
ERROR: "find_next_bit" [drivers/thermal/intel/intel_powerclamp.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/thermal/intel/intel_powerclamp.ko] undefined!
ERROR: "find_first_bit" [drivers/thermal/intel/intel_powerclamp.ko] undefined!
ERROR: "__sw_hweight32" [drivers/thermal/intel/intel_powerclamp.ko] undefined!
ERROR: "kthread_destroy_worker" [drivers/thermal/intel/intel_powerclamp.ko] undefined!
ERROR: "kthread_cancel_delayed_work_sync" [drivers/thermal/intel/intel_powerclamp.ko] undefined!
ERROR: "kthread_cancel_work_sync" [drivers/thermal/intel/intel_powerclamp.ko] undefined!
ERROR: "seq_printf" [drivers/thermal/intel/intel_powerclamp.ko] undefined!
ERROR: "single_open" [drivers/thermal/intel/intel_powerclamp.ko] undefined!
ERROR: "kthread_queue_delayed_work" [drivers/thermal/intel/intel_powerclamp.ko] undefined!
  OBJCOPY arch/x86/boot/compressed/vmlinux.bin
ERROR: "jiffies" [drivers/thermal/intel/intel_powerclamp.ko] undefined!
ERROR: "__msecs_to_jiffies" [drivers/thermal/intel/intel_powerclamp.ko] undefined!
ERROR: "kthread_queue_work" [drivers/thermal/intel/intel_powerclamp.ko] undefined!
ERROR: "init_timer_key" [drivers/thermal/intel/intel_powerclamp.ko] undefined!
ERROR: "kthread_delayed_work_timer_fn" [drivers/thermal/intel/intel_powerclamp.ko] undefined!
ERROR: "sched_setscheduler" [drivers/thermal/intel/intel_powerclamp.ko] undefined!
ERROR: "kthread_create_worker_on_cpu" [drivers/thermal/intel/intel_powerclamp.ko] undefined!
ERROR: "printk" [drivers/thermal/intel/intel_powerclamp.ko] undefined!
ERROR: "_kstrtoul" [drivers/thermal/intel/intel_powerclamp.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/thermal/intel/int340x_thermal/int3406_thermal.ko] undefined!
ERROR: "__platform_driver_register" [drivers/thermal/intel/int340x_thermal/int3406_thermal.ko] undefined!
ERROR: "acpi_install_notify_handler" [drivers/thermal/intel/int340x_thermal/int3406_thermal.ko] undefined!
ERROR: "thermal_cooling_device_register" [drivers/thermal/intel/int340x_thermal/int3406_thermal.ko] undefined!
ERROR: "acpi_video_get_levels" [drivers/thermal/intel/int340x_thermal/int3406_thermal.ko] undefined!
ERROR: "backlight_device_get_by_type" [drivers/thermal/intel/int340x_thermal/int3406_thermal.ko] undefined!
ERROR: "devm_kmalloc" [drivers/thermal/intel/int340x_thermal/int3406_thermal.ko] undefined!
ERROR: "is_acpi_device_node" [drivers/thermal/intel/int340x_thermal/int3406_thermal.ko] undefined!
ERROR: "acpi_evaluate_integer" [drivers/thermal/intel/int340x_thermal/int3406_thermal.ko] undefined!
ERROR: "backlight_device_set_brightness" [drivers/thermal/intel/int340x_thermal/int3406_thermal.ko] undefined!
ERROR: "kfree" [drivers/thermal/intel/int340x_thermal/int3406_thermal.ko] undefined!
ERROR: "thermal_cooling_device_unregister" [drivers/thermal/intel/int340x_thermal/int3406_thermal.ko] undefined!
ERROR: "param_ops_bool" [drivers/hwmon/w83l786ng.ko] undefined!
ERROR: "i2c_del_driver" [drivers/hwmon/w83l786ng.ko] undefined!
ERROR: "i2c_register_driver" [drivers/hwmon/w83l786ng.ko] undefined!
ERROR: "devm_hwmon_device_register_with_groups" [drivers/hwmon/w83l786ng.ko] undefined!
ERROR: "__mutex_init" [drivers/hwmon/w83l786ng.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hwmon/w83l786ng.ko] undefined!
ERROR: "_kstrtol" [drivers/hwmon/w83l786ng.ko] undefined!
ERROR: "sprintf" [drivers/hwmon/w83l786ng.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/hwmon/w83l786ng.ko] undefined!
ERROR: "_kstrtoul" [drivers/hwmon/w83l786ng.ko] undefined!
ERROR: "mutex_unlock" [drivers/hwmon/w83l786ng.ko] undefined!
ERROR: "jiffies" [drivers/hwmon/w83l786ng.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/hwmon/w83l786ng.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/hwmon/w83l786ng.ko] undefined!
ERROR: "strlcpy" [drivers/hwmon/w83l786ng.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/hwmon/w83l786ng.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/hwmon/w83l786ng.ko] undefined!
ERROR: "param_ops_int" [drivers/hwmon/vt1211.ko] undefined!
ERROR: "param_ops_ushort" [drivers/hwmon/vt1211.ko] undefined!
ERROR: "platform_device_unregister" [drivers/hwmon/vt1211.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/hwmon/vt1211.ko] undefined!
ERROR: "platform_device_put" [drivers/hwmon/vt1211.ko] undefined!
ERROR: "platform_device_add" [drivers/hwmon/vt1211.ko] undefined!
ERROR: "platform_device_add_resources" [drivers/hwmon/vt1211.ko] undefined!
ERROR: "acpi_check_resource_conflict" [drivers/hwmon/vt1211.ko] undefined!
ERROR: "platform_device_alloc" [drivers/hwmon/vt1211.ko] undefined!
ERROR: "__platform_driver_register" [drivers/hwmon/vt1211.ko] undefined!
ERROR: "__release_region" [drivers/hwmon/vt1211.ko] undefined!
ERROR: "printk" [drivers/hwmon/vt1211.ko] undefined!
ERROR: "__request_region" [drivers/hwmon/vt1211.ko] undefined!
ERROR: "_dev_err" [drivers/hwmon/vt1211.ko] undefined!
ERROR: "hwmon_device_register" [drivers/hwmon/vt1211.ko] undefined!
ERROR: "device_create_file" [drivers/hwmon/vt1211.ko] undefined!
ERROR: "sysfs_create_group" [drivers/hwmon/vt1211.ko] undefined!
ERROR: "vid_which_vrm" [drivers/hwmon/vt1211.ko] undefined!
ERROR: "__mutex_init" [drivers/hwmon/vt1211.ko] undefined!
ERROR: "__devm_request_region" [drivers/hwmon/vt1211.ko] undefined!
ERROR: "ioport_resource" [drivers/hwmon/vt1211.ko] undefined!
ERROR: "platform_get_resource" [drivers/hwmon/vt1211.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hwmon/vt1211.ko] undefined!
ERROR: "_dev_warn" [drivers/hwmon/vt1211.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/hwmon/vt1211.ko] undefined!
ERROR: "_kstrtol" [drivers/hwmon/vt1211.ko] undefined!
ERROR: "_kstrtoul" [drivers/hwmon/vt1211.ko] undefined!
ERROR: "vid_from_reg" [drivers/hwmon/vt1211.ko] undefined!
ERROR: "mutex_unlock" [drivers/hwmon/vt1211.ko] undefined!
ERROR: "jiffies" [drivers/hwmon/vt1211.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/hwmon/vt1211.ko] undefined!
ERROR: "sprintf" [drivers/hwmon/vt1211.ko] undefined!
ERROR: "hwmon_device_unregister" [drivers/hwmon/vt1211.ko] undefined!
ERROR: "device_remove_file" [drivers/hwmon/vt1211.ko] undefined!
ERROR: "sysfs_remove_group" [drivers/hwmon/vt1211.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/hwmon/via-cputemp.ko] undefined!
ERROR: "__cpuhp_remove_state" [drivers/hwmon/via-cputemp.ko] undefined!
ERROR: "__cpuhp_setup_state" [drivers/hwmon/via-cputemp.ko] undefined!
ERROR: "__platform_driver_register" [drivers/hwmon/via-cputemp.ko] undefined!
ERROR: "x86_match_cpu" [drivers/hwmon/via-cputemp.ko] undefined!
ERROR: "vid_from_reg" [drivers/hwmon/via-cputemp.ko] undefined!
ERROR: "_dev_err" [drivers/hwmon/via-cputemp.ko] undefined!
ERROR: "vid_which_vrm" [drivers/hwmon/via-cputemp.ko] undefined!
ERROR: "do_trace_read_msr" [drivers/hwmon/via-cputemp.ko] undefined!
ERROR: "hwmon_device_register" [drivers/hwmon/via-cputemp.ko] undefined!
ERROR: "device_create_file" [drivers/hwmon/via-cputemp.ko] undefined!
ERROR: "sysfs_create_group" [drivers/hwmon/via-cputemp.ko] undefined!
ERROR: "__tracepoint_read_msr" [drivers/hwmon/via-cputemp.ko] undefined!
ERROR: "ex_handler_default" [drivers/hwmon/via-cputemp.ko] undefined!
ERROR: "boot_cpu_data" [drivers/hwmon/via-cputemp.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hwmon/via-cputemp.ko] undefined!
ERROR: "sprintf" [drivers/hwmon/via-cputemp.ko] undefined!
ERROR: "device_remove_file" [drivers/hwmon/via-cputemp.ko] undefined!
ERROR: "sysfs_remove_group" [drivers/hwmon/via-cputemp.ko] undefined!
ERROR: "hwmon_device_unregister" [drivers/hwmon/via-cputemp.ko] undefined!
ERROR: "printk" [drivers/hwmon/via-cputemp.ko] undefined!
ERROR: "platform_device_put" [drivers/hwmon/via-cputemp.ko] undefined!
ERROR: "__list_add_valid" [drivers/hwmon/via-cputemp.ko] undefined!
ERROR: "platform_device_add" [drivers/hwmon/via-cputemp.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/hwmon/via-cputemp.ko] undefined!
ERROR: "kmalloc_caches" [drivers/hwmon/via-cputemp.ko] undefined!
ERROR: "platform_device_alloc" [drivers/hwmon/via-cputemp.ko] undefined!
ERROR: "kfree" [drivers/hwmon/via-cputemp.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/hwmon/via-cputemp.ko] undefined!
ERROR: "platform_device_unregister" [drivers/hwmon/via-cputemp.ko] undefined!
ERROR: "mutex_unlock" [drivers/hwmon/via-cputemp.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/hwmon/via-cputemp.ko] undefined!
ERROR: "i2c_del_driver" [drivers/hwmon/tmp421.ko] undefined!
ERROR: "i2c_register_driver" [drivers/hwmon/tmp421.ko] undefined!
ERROR: "_dev_err" [drivers/hwmon/tmp421.ko] undefined!
ERROR: "devm_hwmon_device_register_with_info" [drivers/hwmon/tmp421.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/hwmon/tmp421.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/hwmon/tmp421.ko] undefined!
ERROR: "__mutex_init" [drivers/hwmon/tmp421.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hwmon/tmp421.ko] undefined!
ERROR: "mutex_unlock" [drivers/hwmon/tmp421.ko] undefined!
ERROR: "jiffies" [drivers/hwmon/tmp421.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/hwmon/tmp421.ko] undefined!
ERROR: "_dev_info" [drivers/hwmon/tmp421.ko] undefined!
ERROR: "strlcpy" [drivers/hwmon/tmp421.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/hwmon/tmp421.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/hwmon/tmp421.ko] undefined!
ERROR: "i2c_del_driver" [drivers/hwmon/tmp401.ko] undefined!
ERROR: "i2c_register_driver" [drivers/hwmon/tmp401.ko] undefined!
ERROR: "_dev_info" [drivers/hwmon/tmp401.ko] undefined!
ERROR: "devm_hwmon_device_register_with_groups" [drivers/hwmon/tmp401.ko] undefined!
ERROR: "__mutex_init" [drivers/hwmon/tmp401.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hwmon/tmp401.ko] undefined!
ERROR: "_kstrtoul" [drivers/hwmon/tmp401.ko] undefined!
ERROR: "_dev_err" [drivers/hwmon/tmp401.ko] undefined!
ERROR: "i2c_smbus_read_word_data" [drivers/hwmon/tmp401.ko] undefined!
ERROR: "jiffies" [drivers/hwmon/tmp401.ko] undefined!
ERROR: "__msecs_to_jiffies" [drivers/hwmon/tmp401.ko] undefined!
ERROR: "sprintf" [drivers/hwmon/tmp401.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/hwmon/tmp401.ko] undefined!
ERROR: "mutex_unlock" [drivers/hwmon/tmp401.ko] undefined!
ERROR: "i2c_smbus_write_word_data" [drivers/hwmon/tmp401.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/hwmon/tmp401.ko] undefined!
ERROR: "_kstrtol" [drivers/hwmon/tmp401.ko] undefined!
ERROR: "strlcpy" [drivers/hwmon/tmp401.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/hwmon/tmp401.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/hwmon/tmp401.ko] undefined!
ERROR: "i2c_del_driver" [drivers/hwmon/tmp108.ko] undefined!
ERROR: "i2c_register_driver" [drivers/hwmon/tmp108.ko] undefined!
ERROR: "devm_hwmon_device_register_with_info" [drivers/hwmon/tmp108.ko] undefined!
ERROR: "_dev_err" [drivers/hwmon/tmp108.ko] undefined!
ERROR: "devm_add_action" [drivers/hwmon/tmp108.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/hwmon/tmp108.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hwmon/tmp108.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/hwmon/tmp108.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/hwmon/tmp108.ko] undefined!
ERROR: "regmap_write" [drivers/hwmon/tmp108.ko] undefined!
ERROR: "regmap_read" [drivers/hwmon/tmp108.ko] undefined!
ERROR: "jiffies" [drivers/hwmon/tmp108.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/hwmon/tmp108.ko] undefined!
ERROR: "i2c_del_driver" [drivers/hwmon/tmp103.ko] undefined!
ERROR: "i2c_register_driver" [drivers/hwmon/tmp103.ko] undefined!
ERROR: "sprintf" [drivers/hwmon/tmp103.ko] undefined!
ERROR: "regmap_read" [drivers/hwmon/tmp103.ko] undefined!
ERROR: "regmap_write" [drivers/hwmon/tmp103.ko] undefined!
ERROR: "_kstrtol" [drivers/hwmon/tmp103.ko] undefined!
ERROR: "_dev_err" [drivers/hwmon/tmp103.ko] undefined!
ERROR: "devm_hwmon_device_register_with_groups" [drivers/hwmon/tmp103.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/hwmon/tmp103.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/hwmon/tmp103.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/hwmon/pwm-fan.ko] undefined!
ERROR: "__platform_driver_register" [drivers/hwmon/pwm-fan.ko] undefined!
ERROR: "thermal_cdev_update" [drivers/hwmon/pwm-fan.ko] undefined!
ERROR: "devm_thermal_of_cooling_device_register" [drivers/hwmon/pwm-fan.ko] undefined!
ERROR: "of_property_count_elems_of_size" [drivers/hwmon/pwm-fan.ko] undefined!
ERROR: "of_find_property" [drivers/hwmon/pwm-fan.ko] undefined!
ERROR: "devm_hwmon_device_register_with_groups" [drivers/hwmon/pwm-fan.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/hwmon/pwm-fan.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/hwmon/pwm-fan.ko] undefined!
ERROR: "regulator_enable" [drivers/hwmon/pwm-fan.ko] undefined!
ERROR: "devm_add_action" [drivers/hwmon/pwm-fan.ko] undefined!
ERROR: "init_timer_key" [drivers/hwmon/pwm-fan.ko] undefined!
ERROR: "devm_regulator_get_optional" [drivers/hwmon/pwm-fan.ko] undefined!
ERROR: "platform_get_irq_optional" [drivers/hwmon/pwm-fan.ko] undefined!
ERROR: "devm_of_pwm_get" [drivers/hwmon/pwm-fan.ko] undefined!
ERROR: "__mutex_init" [drivers/hwmon/pwm-fan.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hwmon/pwm-fan.ko] undefined!
ERROR: "del_timer" [drivers/hwmon/pwm-fan.ko] undefined!
ERROR: "mod_timer" [drivers/hwmon/pwm-fan.ko] undefined!
ERROR: "jiffies" [drivers/hwmon/pwm-fan.ko] undefined!
ERROR: "ktime_get" [drivers/hwmon/pwm-fan.ko] undefined!
ERROR: "_kstrtoul" [drivers/hwmon/pwm-fan.ko] undefined!
ERROR: "sprintf" [drivers/hwmon/pwm-fan.ko] undefined!
ERROR: "mutex_unlock" [drivers/hwmon/pwm-fan.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/hwmon/pwm-fan.ko] undefined!
ERROR: "_dev_err" [drivers/hwmon/pwm-fan.ko] undefined!
ERROR: "pwm_apply_state" [drivers/hwmon/pwm-fan.ko] undefined!
ERROR: "regulator_disable" [drivers/hwmon/pwm-fan.ko] undefined!
ERROR: "param_ops_ushort" [drivers/hwmon/pc87427.ko] undefined!
ERROR: "platform_device_unregister" [drivers/hwmon/pc87427.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/hwmon/pc87427.ko] undefined!
ERROR: "platform_device_put" [drivers/hwmon/pc87427.ko] undefined!
ERROR: "platform_device_add" [drivers/hwmon/pc87427.ko] undefined!
ERROR: "platform_device_add_data" [drivers/hwmon/pc87427.ko] undefined!
ERROR: "platform_device_add_resources" [drivers/hwmon/pc87427.ko] undefined!
ERROR: "platform_device_alloc" [drivers/hwmon/pc87427.ko] undefined!
ERROR: "acpi_check_resource_conflict" [drivers/hwmon/pc87427.ko] undefined!
ERROR: "__platform_driver_register" [drivers/hwmon/pc87427.ko] undefined!
ERROR: "__release_region" [drivers/hwmon/pc87427.ko] undefined!
ERROR: "printk" [drivers/hwmon/pc87427.ko] undefined!
ERROR: "__request_region" [drivers/hwmon/pc87427.ko] undefined!
ERROR: "_dev_warn" [drivers/hwmon/pc87427.ko] undefined!
ERROR: "_dev_err" [drivers/hwmon/pc87427.ko] undefined!
ERROR: "hwmon_device_register" [drivers/hwmon/pc87427.ko] undefined!
ERROR: "sysfs_create_group" [drivers/hwmon/pc87427.ko] undefined!
ERROR: "device_create_file" [drivers/hwmon/pc87427.ko] undefined!
ERROR: "__mutex_init" [drivers/hwmon/pc87427.ko] undefined!
ERROR: "__devm_request_region" [drivers/hwmon/pc87427.ko] undefined!
ERROR: "ioport_resource" [drivers/hwmon/pc87427.ko] undefined!
ERROR: "platform_get_resource" [drivers/hwmon/pc87427.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hwmon/pc87427.ko] undefined!
ERROR: "_dev_notice" [drivers/hwmon/pc87427.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/hwmon/pc87427.ko] undefined!
ERROR: "_kstrtoul" [drivers/hwmon/pc87427.ko] undefined!
ERROR: "mutex_unlock" [drivers/hwmon/pc87427.ko] undefined!
ERROR: "jiffies" [drivers/hwmon/pc87427.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/hwmon/pc87427.ko] undefined!
ERROR: "sprintf" [drivers/hwmon/pc87427.ko] undefined!
ERROR: "hwmon_device_unregister" [drivers/hwmon/pc87427.ko] undefined!
ERROR: "sysfs_remove_group" [drivers/hwmon/pc87427.ko] undefined!
ERROR: "device_remove_file" [drivers/hwmon/pc87427.ko] undefined!
ERROR: "i2c_del_driver" [drivers/hwmon/mcp3021.ko] undefined!
ERROR: "i2c_register_driver" [drivers/hwmon/mcp3021.ko] undefined!
ERROR: "hwmon_device_register" [drivers/hwmon/mcp3021.ko] undefined!
ERROR: "sysfs_create_file_ns" [drivers/hwmon/mcp3021.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/hwmon/mcp3021.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hwmon/mcp3021.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/hwmon/mcp3021.ko] undefined!
ERROR: "sysfs_remove_file_ns" [drivers/hwmon/mcp3021.ko] undefined!
ERROR: "hwmon_device_unregister" [drivers/hwmon/mcp3021.ko] undefined!
ERROR: "sprintf" [drivers/hwmon/mcp3021.ko] undefined!
ERROR: "i2c_transfer_buffer_flags" [drivers/hwmon/mcp3021.ko] undefined!
ERROR: "i2c_del_driver" [drivers/hwmon/max31730.ko] undefined!
ERROR: "i2c_register_driver" [drivers/hwmon/max31730.ko] undefined!
ERROR: "i2c_smbus_write_word_data" [drivers/hwmon/max31730.ko] undefined!
ERROR: "devm_hwmon_device_register_with_info" [drivers/hwmon/max31730.ko] undefined!
ERROR: "devm_add_action" [drivers/hwmon/max31730.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hwmon/max31730.ko] undefined!
ERROR: "i2c_smbus_read_word_data" [drivers/hwmon/max31730.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/hwmon/max31730.ko] undefined!
ERROR: "strlcpy" [drivers/hwmon/max31730.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/hwmon/max31730.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/hwmon/max31730.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/hwmon/max197.ko] undefined!
ERROR: "__platform_driver_register" [drivers/hwmon/max197.ko] undefined!
ERROR: "hwmon_device_register" [drivers/hwmon/max197.ko] undefined!
ERROR: "sysfs_create_group" [drivers/hwmon/max197.ko] undefined!
ERROR: "__mutex_init" [drivers/hwmon/max197.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hwmon/max197.ko] undefined!
ERROR: "_dev_err" [drivers/hwmon/max197.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/hwmon/max197.ko] undefined!
ERROR: "sprintf" [drivers/hwmon/max197.ko] undefined!
ERROR: "mutex_unlock" [drivers/hwmon/max197.ko] undefined!
ERROR: "mutex_lock_interruptible_nested" [drivers/hwmon/max197.ko] undefined!
ERROR: "_kstrtol" [drivers/hwmon/max197.ko] undefined!
ERROR: "sysfs_remove_group" [drivers/hwmon/max197.ko] undefined!
ERROR: "hwmon_device_unregister" [drivers/hwmon/max197.ko] undefined!
ERROR: "i2c_del_driver" [drivers/hwmon/max16065.ko] undefined!
ERROR: "i2c_register_driver" [drivers/hwmon/max16065.ko] undefined!
ERROR: "devm_hwmon_device_register_with_groups" [drivers/hwmon/max16065.ko] undefined!
ERROR: "__mutex_init" [drivers/hwmon/max16065.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hwmon/max16065.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/hwmon/max16065.ko] undefined!
ERROR: "_kstrtoul" [drivers/hwmon/max16065.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/hwmon/max16065.ko] undefined!
ERROR: "mutex_unlock" [drivers/hwmon/max16065.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/hwmon/max16065.ko] undefined!
ERROR: "jiffies" [drivers/hwmon/max16065.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/hwmon/max16065.ko] undefined!
ERROR: "i2c_smbus_read_word_data" [drivers/hwmon/max16065.ko] undefined!
ERROR: "snprintf" [drivers/hwmon/max16065.ko] undefined!
ERROR: "i2c_del_driver" [drivers/hwmon/ltc4222.ko] undefined!
ERROR: "i2c_register_driver" [drivers/hwmon/ltc4222.ko] undefined!
ERROR: "regmap_bulk_read" [drivers/hwmon/ltc4222.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/hwmon/ltc4222.ko] undefined!
ERROR: "snprintf" [drivers/hwmon/ltc4222.ko] undefined!
ERROR: "regmap_read" [drivers/hwmon/ltc4222.ko] undefined!
ERROR: "_dev_err" [drivers/hwmon/ltc4222.ko] undefined!
ERROR: "devm_hwmon_device_register_with_groups" [drivers/hwmon/ltc4222.ko] undefined!
ERROR: "regmap_write" [drivers/hwmon/ltc4222.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/hwmon/ltc4222.ko] undefined!
ERROR: "i2c_del_driver" [drivers/hwmon/ltc2990.ko] undefined!
ERROR: "i2c_register_driver" [drivers/hwmon/ltc2990.ko] undefined!
ERROR: "snprintf" [drivers/hwmon/ltc2990.ko] undefined!
ERROR: "i2c_smbus_read_word_data" [drivers/hwmon/ltc2990.ko] undefined!
ERROR: "_dev_err" [drivers/hwmon/ltc2990.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/hwmon/ltc2990.ko] undefined!
ERROR: "devm_hwmon_device_register_with_groups" [drivers/hwmon/ltc2990.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/hwmon/ltc2990.ko] undefined!
ERROR: "device_property_read_u32_array" [drivers/hwmon/ltc2990.ko] undefined!
ERROR: "dev_fwnode" [drivers/hwmon/ltc2990.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hwmon/ltc2990.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/hwmon/ltc2990.ko] undefined!
ERROR: "param_ops_bool" [drivers/hwmon/lm93.ko] undefined!
ERROR: "param_array_ops" [drivers/hwmon/lm93.ko] undefined!
ERROR: "param_ops_int" [drivers/hwmon/lm93.ko] undefined!
ERROR: "i2c_del_driver" [drivers/hwmon/lm93.ko] undefined!
ERROR: "i2c_register_driver" [drivers/hwmon/lm93.ko] undefined!
ERROR: "devm_hwmon_device_register_with_groups" [drivers/hwmon/lm93.ko] undefined!
ERROR: "msleep" [drivers/hwmon/lm93.ko] undefined!
ERROR: "__mutex_init" [drivers/hwmon/lm93.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hwmon/lm93.ko] undefined!
ERROR: "i2c_smbus_read_block_data" [drivers/hwmon/lm93.ko] undefined!
ERROR: "i2c_smbus_read_word_data" [drivers/hwmon/lm93.ko] undefined!
ERROR: "_kstrtol" [drivers/hwmon/lm93.ko] undefined!
ERROR: "i2c_smbus_write_word_data" [drivers/hwmon/lm93.ko] undefined!
ERROR: "vid_from_reg" [drivers/hwmon/lm93.ko] undefined!
ERROR: "_kstrtoul" [drivers/hwmon/lm93.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/hwmon/lm93.ko] undefined!
ERROR: "sprintf" [drivers/hwmon/lm93.ko] undefined!
ERROR: "mutex_unlock" [drivers/hwmon/lm93.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/hwmon/lm93.ko] undefined!
ERROR: "jiffies" [drivers/hwmon/lm93.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/hwmon/lm93.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/hwmon/lm93.ko] undefined!
ERROR: "strlcpy" [drivers/hwmon/lm93.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/hwmon/lm93.ko] undefined!
ERROR: "_dev_err" [drivers/hwmon/lm93.ko] undefined!
ERROR: "__const_udelay" [drivers/hwmon/lm93.ko] undefined!
ERROR: "_dev_warn" [drivers/hwmon/lm93.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/hwmon/lm93.ko] undefined!
ERROR: "i2c_del_driver" [drivers/hwmon/lm87.ko] undefined!
ERROR: "i2c_register_driver" [drivers/hwmon/lm87.ko] undefined!
ERROR: "regulator_get_voltage" [drivers/hwmon/lm87.ko] undefined!
ERROR: "devm_hwmon_device_register_with_groups" [drivers/hwmon/lm87.ko] undefined!
ERROR: "vid_which_vrm" [drivers/hwmon/lm87.ko] undefined!
ERROR: "devm_add_action" [drivers/hwmon/lm87.ko] undefined!
ERROR: "devm_regulator_get_optional" [drivers/hwmon/lm87.ko] undefined!
ERROR: "of_find_property" [drivers/hwmon/lm87.ko] undefined!
ERROR: "__mutex_init" [drivers/hwmon/lm87.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hwmon/lm87.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/hwmon/lm87.ko] undefined!
ERROR: "_kstrtol" [drivers/hwmon/lm87.ko] undefined!
ERROR: "vid_from_reg" [drivers/hwmon/lm87.ko] undefined!
ERROR: "mutex_unlock" [drivers/hwmon/lm87.ko] undefined!
ERROR: "jiffies" [drivers/hwmon/lm87.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/hwmon/lm87.ko] undefined!
ERROR: "sprintf" [drivers/hwmon/lm87.ko] undefined!
ERROR: "_kstrtoul" [drivers/hwmon/lm87.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/hwmon/lm87.ko] undefined!
ERROR: "strlcpy" [drivers/hwmon/lm87.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/hwmon/lm87.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/hwmon/lm87.ko] undefined!
ERROR: "i2c_del_driver" [drivers/hwmon/lm85.ko] undefined!
ERROR: "i2c_register_driver" [drivers/hwmon/lm85.ko] undefined!
ERROR: "_dev_info" [drivers/hwmon/lm85.ko] undefined!
ERROR: "_dev_warn" [drivers/hwmon/lm85.ko] undefined!
ERROR: "devm_hwmon_device_register_with_groups" [drivers/hwmon/lm85.ko] undefined!
ERROR: "vid_which_vrm" [drivers/hwmon/lm85.ko] undefined!
ERROR: "__mutex_init" [drivers/hwmon/lm85.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/hwmon/lm85.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hwmon/lm85.ko] undefined!
ERROR: "_kstrtoul" [drivers/hwmon/lm85.ko] undefined!
ERROR: "vid_from_reg" [drivers/hwmon/lm85.ko] undefined!
ERROR: "_kstrtol" [drivers/hwmon/lm85.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/hwmon/lm85.ko] undefined!
ERROR: "mutex_unlock" [drivers/hwmon/lm85.ko] undefined!
ERROR: "jiffies" [drivers/hwmon/lm85.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/hwmon/lm85.ko] undefined!
ERROR: "sprintf" [drivers/hwmon/lm85.ko] undefined!
ERROR: "strlcpy" [drivers/hwmon/lm85.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/hwmon/lm85.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/hwmon/lm85.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/hwmon/lm85.ko] undefined!
ERROR: "i2c_del_driver" [drivers/hwmon/lm80.ko] undefined!
ERROR: "i2c_register_driver" [drivers/hwmon/lm80.ko] undefined!
ERROR: "devm_hwmon_device_register_with_groups" [drivers/hwmon/lm80.ko] undefined!
ERROR: "__mutex_init" [drivers/hwmon/lm80.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hwmon/lm80.ko] undefined!
ERROR: "_dev_err" [drivers/hwmon/lm80.ko] undefined!
ERROR: "_kstrtoul" [drivers/hwmon/lm80.ko] undefined!
ERROR: "sprintf" [drivers/hwmon/lm80.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/hwmon/lm80.ko] undefined!
ERROR: "jiffies" [drivers/hwmon/lm80.ko] undefined!
ERROR: "mutex_unlock" [drivers/hwmon/lm80.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/hwmon/lm80.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/hwmon/lm80.ko] undefined!
ERROR: "_kstrtol" [drivers/hwmon/lm80.ko] undefined!
ERROR: "strlcpy" [drivers/hwmon/lm80.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/hwmon/lm80.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/hwmon/lm80.ko] undefined!
ERROR: "i2c_del_driver" [drivers/hwmon/lm78.ko] undefined!
ERROR: "i2c_register_driver" [drivers/hwmon/lm78.ko] undefined!
ERROR: "devm_hwmon_device_register_with_groups" [drivers/hwmon/lm78.ko] undefined!
ERROR: "__mutex_init" [drivers/hwmon/lm78.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hwmon/lm78.ko] undefined!
ERROR: "_kstrtol" [drivers/hwmon/lm78.ko] undefined!
ERROR: "_dev_err" [drivers/hwmon/lm78.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/hwmon/lm78.ko] undefined!
ERROR: "_kstrtoul" [drivers/hwmon/lm78.ko] undefined!
ERROR: "sprintf" [drivers/hwmon/lm78.ko] undefined!
ERROR: "vid_from_reg" [drivers/hwmon/lm78.ko] undefined!
ERROR: "strlcpy" [drivers/hwmon/lm78.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/hwmon/lm78.ko] undefined!
ERROR: "mutex_unlock" [drivers/hwmon/lm78.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/hwmon/lm78.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/hwmon/lm78.ko] undefined!
ERROR: "jiffies" [drivers/hwmon/lm78.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/hwmon/lm78.ko] undefined!
ERROR: "i2c_del_driver" [drivers/hwmon/lm77.ko] undefined!
ERROR: "i2c_register_driver" [drivers/hwmon/lm77.ko] undefined!
ERROR: "devm_hwmon_device_register_with_groups" [drivers/hwmon/lm77.ko] undefined!
ERROR: "__mutex_init" [drivers/hwmon/lm77.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hwmon/lm77.ko] undefined!
ERROR: "_kstrtol" [drivers/hwmon/lm77.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/hwmon/lm77.ko] undefined!
ERROR: "i2c_smbus_write_word_data" [drivers/hwmon/lm77.ko] undefined!
ERROR: "sprintf" [drivers/hwmon/lm77.ko] undefined!
ERROR: "mutex_unlock" [drivers/hwmon/lm77.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/hwmon/lm77.ko] undefined!
ERROR: "jiffies" [drivers/hwmon/lm77.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/hwmon/lm77.ko] undefined!
ERROR: "strlcpy" [drivers/hwmon/lm77.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/hwmon/lm77.ko] undefined!
ERROR: "i2c_smbus_read_word_data" [drivers/hwmon/lm77.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/hwmon/lm77.ko] undefined!
ERROR: "i2c_del_driver" [drivers/hwmon/lm63.ko] undefined!
ERROR: "i2c_register_driver" [drivers/hwmon/lm63.ko] undefined!
ERROR: "devm_hwmon_device_register_with_groups" [drivers/hwmon/lm63.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/hwmon/lm63.ko] undefined!
ERROR: "__mutex_init" [drivers/hwmon/lm63.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hwmon/lm63.ko] undefined!
ERROR: "_dev_warn" [drivers/hwmon/lm63.ko] undefined!
ERROR: "_kstrtoul" [drivers/hwmon/lm63.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/hwmon/lm63.ko] undefined!
ERROR: "_kstrtol" [drivers/hwmon/lm63.ko] undefined!
ERROR: "mutex_unlock" [drivers/hwmon/lm63.ko] undefined!
ERROR: "__msecs_to_jiffies" [drivers/hwmon/lm63.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/hwmon/lm63.ko] undefined!
ERROR: "sprintf" [drivers/hwmon/lm63.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/hwmon/lm63.ko] undefined!
ERROR: "strlcpy" [drivers/hwmon/lm63.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/hwmon/lm63.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/hwmon/lm63.ko] undefined!
ERROR: "jiffies" [drivers/hwmon/lm63.ko] undefined!
ERROR: "param_ops_bool" [drivers/hwmon/k10temp.ko] undefined!
ERROR: "single_release" [drivers/hwmon/k10temp.ko] undefined!
ERROR: "seq_read" [drivers/hwmon/k10temp.ko] undefined!
ERROR: "seq_lseek" [drivers/hwmon/k10temp.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/hwmon/k10temp.ko] undefined!
ERROR: "__pci_register_driver" [drivers/hwmon/k10temp.ko] undefined!
ERROR: "seq_puts" [drivers/hwmon/k10temp.ko] undefined!
ERROR: "seq_printf" [drivers/hwmon/k10temp.ko] undefined!
ERROR: "_dev_err" [drivers/hwmon/k10temp.ko] undefined!
ERROR: "_dev_warn" [drivers/hwmon/k10temp.ko] undefined!
ERROR: "devm_add_action" [drivers/hwmon/k10temp.ko] undefined!
ERROR: "debugfs_create_file" [drivers/hwmon/k10temp.ko] undefined!
ERROR: "debugfs_create_dir" [drivers/hwmon/k10temp.ko] undefined!
ERROR: "scnprintf" [drivers/hwmon/k10temp.ko] undefined!
ERROR: "devm_hwmon_device_register_with_info" [drivers/hwmon/k10temp.ko] undefined!
ERROR: "strstr" [drivers/hwmon/k10temp.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hwmon/k10temp.ko] undefined!
ERROR: "boot_cpu_data" [drivers/hwmon/k10temp.ko] undefined!
ERROR: "amd_smn_read" [drivers/hwmon/k10temp.ko] undefined!
ERROR: "__warn_printk" [drivers/hwmon/k10temp.ko] undefined!
ERROR: "node_to_amd_nb" [drivers/hwmon/k10temp.ko] undefined!
ERROR: "amd_nb_num" [drivers/hwmon/k10temp.ko] undefined!
ERROR: "mutex_unlock" [drivers/hwmon/k10temp.ko] undefined!
ERROR: "pci_bus_read_config_dword" [drivers/hwmon/k10temp.ko] undefined!
ERROR: "pci_bus_write_config_dword" [drivers/hwmon/k10temp.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/hwmon/k10temp.ko] undefined!
ERROR: "single_open" [drivers/hwmon/k10temp.ko] undefined!
ERROR: "debugfs_remove_recursive" [drivers/hwmon/k10temp.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/hwmon/k10temp.ko] undefined!
ERROR: "pci_read_config_dword" [drivers/hwmon/k10temp.ko] undefined!
ERROR: "param_ops_ushort" [drivers/hwmon/it87.ko] undefined!
ERROR: "param_ops_bool" [drivers/hwmon/it87.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/hwmon/it87.ko] undefined!
ERROR: "platform_device_unregister" [drivers/hwmon/it87.ko] undefined!
ERROR: "platform_device_put" [drivers/hwmon/it87.ko] undefined!
ERROR: "platform_device_add" [drivers/hwmon/it87.ko] undefined!
ERROR: "platform_device_add_data" [drivers/hwmon/it87.ko] undefined!
ERROR: "platform_device_add_resources" [drivers/hwmon/it87.ko] undefined!
ERROR: "platform_device_alloc" [drivers/hwmon/it87.ko] undefined!
ERROR: "acpi_check_resource_conflict" [drivers/hwmon/it87.ko] undefined!
ERROR: "printk" [drivers/hwmon/it87.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/hwmon/it87.ko] undefined!
ERROR: "__platform_driver_register" [drivers/hwmon/it87.ko] undefined!
ERROR: "__release_region" [drivers/hwmon/it87.ko] undefined!
ERROR: "__request_region" [drivers/hwmon/it87.ko] undefined!
ERROR: "vid_which_vrm" [drivers/hwmon/it87.ko] undefined!
ERROR: "devm_hwmon_device_register_with_groups" [drivers/hwmon/it87.ko] undefined!
ERROR: "__mutex_init" [drivers/hwmon/it87.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hwmon/it87.ko] undefined!
ERROR: "__devm_request_region" [drivers/hwmon/it87.ko] undefined!
ERROR: "ioport_resource" [drivers/hwmon/it87.ko] undefined!
ERROR: "platform_get_resource" [drivers/hwmon/it87.ko] undefined!
ERROR: "vid_from_reg" [drivers/hwmon/it87.ko] undefined!
ERROR: "_dev_warn" [drivers/hwmon/it87.ko] undefined!
ERROR: "_dev_err" [drivers/hwmon/it87.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/hwmon/it87.ko] undefined!
ERROR: "_kstrtol" [drivers/hwmon/it87.ko] undefined!
ERROR: "sprintf" [drivers/hwmon/it87.ko] undefined!
ERROR: "_kstrtoul" [drivers/hwmon/it87.ko] undefined!
ERROR: "_dev_info" [drivers/hwmon/it87.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/hwmon/it87.ko] undefined!
ERROR: "mutex_unlock" [drivers/hwmon/it87.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/hwmon/it87.ko] undefined!
ERROR: "jiffies" [drivers/hwmon/it87.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/hwmon/it87.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/hwmon/it87.ko] undefined!
ERROR: "__x86_indirect_thunk_eax" [drivers/hwmon/it87.ko] undefined!
ERROR: "pv_ops" [drivers/hwmon/it87.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/hwmon/i5500_temp.ko] undefined!
ERROR: "__pci_register_driver" [drivers/hwmon/i5500_temp.ko] undefined!
ERROR: "pci_read_config_word" [drivers/hwmon/i5500_temp.ko] undefined!
ERROR: "sprintf" [drivers/hwmon/i5500_temp.ko] undefined!
ERROR: "_dev_err" [drivers/hwmon/i5500_temp.ko] undefined!
ERROR: "_dev_notice" [drivers/hwmon/i5500_temp.ko] undefined!
ERROR: "devm_hwmon_device_register_with_groups" [drivers/hwmon/i5500_temp.ko] undefined!
ERROR: "pci_read_config_dword" [drivers/hwmon/i5500_temp.ko] undefined!
ERROR: "pci_read_config_byte" [drivers/hwmon/i5500_temp.ko] undefined!
ERROR: "pci_enable_device" [drivers/hwmon/i5500_temp.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/hwmon/gpio-fan.ko] undefined!
ERROR: "__platform_driver_register" [drivers/hwmon/gpio-fan.ko] undefined!
ERROR: "_dev_err" [drivers/hwmon/gpio-fan.ko] undefined!
ERROR: "_dev_warn" [drivers/hwmon/gpio-fan.ko] undefined!
ERROR: "of_prop_next_u32" [drivers/hwmon/gpio-fan.ko] undefined!
ERROR: "of_find_property" [drivers/hwmon/gpio-fan.ko] undefined!
ERROR: "_dev_info" [drivers/hwmon/gpio-fan.ko] undefined!
ERROR: "devm_thermal_of_cooling_device_register" [drivers/hwmon/gpio-fan.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/hwmon/gpio-fan.ko] undefined!
ERROR: "irq_set_irq_type" [drivers/hwmon/gpio-fan.ko] undefined!
ERROR: "lockdep_init_map" [drivers/hwmon/gpio-fan.ko] undefined!
ERROR: "gpiod_to_irq" [drivers/hwmon/gpio-fan.ko] undefined!
ERROR: "devm_hwmon_device_register_with_groups" [drivers/hwmon/gpio-fan.ko] undefined!
ERROR: "devm_gpiod_get_index" [drivers/hwmon/gpio-fan.ko] undefined!
ERROR: "gpiod_count" [drivers/hwmon/gpio-fan.ko] undefined!
ERROR: "devm_add_action" [drivers/hwmon/gpio-fan.ko] undefined!
ERROR: "gpiod_direction_output" [drivers/hwmon/gpio-fan.ko] undefined!
ERROR: "__mutex_init" [drivers/hwmon/gpio-fan.ko] undefined!
ERROR: "devm_gpiod_get_optional" [drivers/hwmon/gpio-fan.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hwmon/gpio-fan.ko] undefined!
ERROR: "kobject_uevent" [drivers/hwmon/gpio-fan.ko] undefined!
ERROR: "sysfs_notify" [drivers/hwmon/gpio-fan.ko] undefined!
ERROR: "queue_work_on" [drivers/hwmon/gpio-fan.ko] undefined!
ERROR: "system_wq" [drivers/hwmon/gpio-fan.ko] undefined!
ERROR: "gpiod_get_value_cansleep" [drivers/hwmon/gpio-fan.ko] undefined!
ERROR: "mutex_unlock" [drivers/hwmon/gpio-fan.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/hwmon/gpio-fan.ko] undefined!
ERROR: "_kstrtoul" [drivers/hwmon/gpio-fan.ko] undefined!
ERROR: "sprintf" [drivers/hwmon/gpio-fan.ko] undefined!
ERROR: "gpiod_set_value_cansleep" [drivers/hwmon/gpio-fan.ko] undefined!
ERROR: "param_ops_ushort" [drivers/hwmon/gl520sm.ko] undefined!
ERROR: "i2c_del_driver" [drivers/hwmon/gl520sm.ko] undefined!
ERROR: "i2c_register_driver" [drivers/hwmon/gl520sm.ko] undefined!
ERROR: "devm_hwmon_device_register_with_groups" [drivers/hwmon/gl520sm.ko] undefined!
ERROR: "vid_which_vrm" [drivers/hwmon/gl520sm.ko] undefined!
ERROR: "__mutex_init" [drivers/hwmon/gl520sm.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hwmon/gl520sm.ko] undefined!
ERROR: "vid_from_reg" [drivers/hwmon/gl520sm.ko] undefined!
ERROR: "_dev_err" [drivers/hwmon/gl520sm.ko] undefined!
ERROR: "_kstrtol" [drivers/hwmon/gl520sm.ko] undefined!
ERROR: "sprintf" [drivers/hwmon/gl520sm.ko] undefined!
ERROR: "_kstrtoul" [drivers/hwmon/gl520sm.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/hwmon/gl520sm.ko] undefined!
ERROR: "i2c_smbus_write_word_data" [drivers/hwmon/gl520sm.ko] undefined!
ERROR: "mutex_unlock" [drivers/hwmon/gl520sm.ko] undefined!
ERROR: "jiffies" [drivers/hwmon/gl520sm.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/hwmon/gl520sm.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/hwmon/gl520sm.ko] undefined!
ERROR: "strlcpy" [drivers/hwmon/gl520sm.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/hwmon/gl520sm.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/hwmon/gl520sm.ko] undefined!
ERROR: "i2c_smbus_read_word_data" [drivers/hwmon/gl520sm.ko] undefined!
ERROR: "i2c_del_driver" [drivers/hwmon/gl518sm.ko] undefined!
ERROR: "i2c_register_driver" [drivers/hwmon/gl518sm.ko] undefined!
ERROR: "devm_hwmon_device_register_with_groups" [drivers/hwmon/gl518sm.ko] undefined!
ERROR: "__mutex_init" [drivers/hwmon/gl518sm.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hwmon/gl518sm.ko] undefined!
ERROR: "_dev_err" [drivers/hwmon/gl518sm.ko] undefined!
ERROR: "_kstrtoul" [drivers/hwmon/gl518sm.ko] undefined!
ERROR: "_kstrtol" [drivers/hwmon/gl518sm.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/hwmon/gl518sm.ko] undefined!
ERROR: "i2c_smbus_write_word_data" [drivers/hwmon/gl518sm.ko] undefined!
ERROR: "sprintf" [drivers/hwmon/gl518sm.ko] undefined!
ERROR: "mutex_unlock" [drivers/hwmon/gl518sm.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/hwmon/gl518sm.ko] undefined!
ERROR: "jiffies" [drivers/hwmon/gl518sm.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/hwmon/gl518sm.ko] undefined!
ERROR: "strlcpy" [drivers/hwmon/gl518sm.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/hwmon/gl518sm.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/hwmon/gl518sm.ko] undefined!
ERROR: "i2c_smbus_read_word_data" [drivers/hwmon/gl518sm.ko] undefined!
ERROR: "i2c_del_driver" [drivers/hwmon/atxp1.ko] undefined!
ERROR: "i2c_register_driver" [drivers/hwmon/atxp1.ko] undefined!
ERROR: "devm_hwmon_device_register_with_groups" [drivers/hwmon/atxp1.ko] undefined!
ERROR: "__mutex_init" [drivers/hwmon/atxp1.ko] undefined!
ERROR: "vid_which_vrm" [drivers/hwmon/atxp1.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hwmon/atxp1.ko] undefined!
ERROR: "sprintf" [drivers/hwmon/atxp1.ko] undefined!
ERROR: "vid_from_reg" [drivers/hwmon/atxp1.ko] undefined!
ERROR: "_dev_info" [drivers/hwmon/atxp1.ko] undefined!
ERROR: "_dev_err" [drivers/hwmon/atxp1.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/hwmon/atxp1.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/hwmon/atxp1.ko] undefined!
ERROR: "_kstrtoul" [drivers/hwmon/atxp1.ko] undefined!
ERROR: "mutex_unlock" [drivers/hwmon/atxp1.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/hwmon/atxp1.ko] undefined!
ERROR: "jiffies" [drivers/hwmon/atxp1.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/hwmon/atxp1.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/hwmon/aspeed-pwm-tacho.ko] undefined!
ERROR: "__platform_driver_register" [drivers/hwmon/aspeed-pwm-tacho.ko] undefined!
ERROR: "_dev_err" [drivers/hwmon/aspeed-pwm-tacho.ko] undefined!
ERROR: "of_node_put" [drivers/hwmon/aspeed-pwm-tacho.ko] undefined!
ERROR: "devm_hwmon_device_register_with_groups" [drivers/hwmon/aspeed-pwm-tacho.ko] undefined!
ERROR: "devm_thermal_of_cooling_device_register" [drivers/hwmon/aspeed-pwm-tacho.ko] undefined!
ERROR: "snprintf" [drivers/hwmon/aspeed-pwm-tacho.ko] undefined!
ERROR: "of_property_read_variable_u8_array" [drivers/hwmon/aspeed-pwm-tacho.ko] undefined!
ERROR: "of_property_count_elems_of_size" [drivers/hwmon/aspeed-pwm-tacho.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/hwmon/aspeed-pwm-tacho.ko] undefined!
ERROR: "of_get_next_child" [drivers/hwmon/aspeed-pwm-tacho.ko] undefined!
ERROR: "clk_get_rate" [drivers/hwmon/aspeed-pwm-tacho.ko] undefined!
ERROR: "devm_clk_get" [drivers/hwmon/aspeed-pwm-tacho.ko] undefined!
ERROR: "devm_add_action" [drivers/hwmon/aspeed-pwm-tacho.ko] undefined!
ERROR: "reset_control_deassert" [drivers/hwmon/aspeed-pwm-tacho.ko] undefined!
ERROR: "__devm_reset_control_get" [drivers/hwmon/aspeed-pwm-tacho.ko] undefined!
ERROR: "__devm_regmap_init" [drivers/hwmon/aspeed-pwm-tacho.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hwmon/aspeed-pwm-tacho.ko] undefined!
ERROR: "devm_platform_ioremap_resource" [drivers/hwmon/aspeed-pwm-tacho.ko] undefined!
ERROR: "_kstrtol" [drivers/hwmon/aspeed-pwm-tacho.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/hwmon/aspeed-pwm-tacho.ko] undefined!
ERROR: "reset_control_assert" [drivers/hwmon/aspeed-pwm-tacho.ko] undefined!
ERROR: "regmap_read" [drivers/hwmon/aspeed-pwm-tacho.ko] undefined!
ERROR: "usleep_range" [drivers/hwmon/aspeed-pwm-tacho.ko] undefined!
ERROR: "__might_sleep" [drivers/hwmon/aspeed-pwm-tacho.ko] undefined!
ERROR: "ktime_get" [drivers/hwmon/aspeed-pwm-tacho.ko] undefined!
ERROR: "regmap_write" [drivers/hwmon/aspeed-pwm-tacho.ko] undefined!
ERROR: "sprintf" [drivers/hwmon/aspeed-pwm-tacho.ko] undefined!
ERROR: "i2c_del_driver" [drivers/hwmon/adt7475.ko] undefined!
ERROR: "i2c_register_driver" [drivers/hwmon/adt7475.ko] undefined!
ERROR: "_dev_info" [drivers/hwmon/adt7475.ko] undefined!
ERROR: "vid_which_vrm" [drivers/hwmon/adt7475.ko] undefined!
ERROR: "devm_hwmon_device_register_with_groups" [drivers/hwmon/adt7475.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/hwmon/adt7475.ko] undefined!
ERROR: "__mutex_init" [drivers/hwmon/adt7475.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hwmon/adt7475.ko] undefined!
ERROR: "_kstrtoul" [drivers/hwmon/adt7475.ko] undefined!
ERROR: "vid_from_reg" [drivers/hwmon/adt7475.ko] undefined!
ERROR: "mutex_unlock" [drivers/hwmon/adt7475.ko] undefined!
ERROR: "jiffies" [drivers/hwmon/adt7475.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/hwmon/adt7475.ko] undefined!
ERROR: "sprintf" [drivers/hwmon/adt7475.ko] undefined!
ERROR: "_kstrtol" [drivers/hwmon/adt7475.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/hwmon/adt7475.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/hwmon/adt7475.ko] undefined!
ERROR: "strlcpy" [drivers/hwmon/adt7475.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/hwmon/adt7475.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/hwmon/adt7475.ko] undefined!
ERROR: "i2c_del_driver" [drivers/hwmon/adt7411.ko] undefined!
ERROR: "i2c_register_driver" [drivers/hwmon/adt7411.ko] undefined!
ERROR: "devm_hwmon_device_register_with_info" [drivers/hwmon/adt7411.ko] undefined!
ERROR: "__mutex_init" [drivers/hwmon/adt7411.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hwmon/adt7411.ko] undefined!
ERROR: "sprintf" [drivers/hwmon/adt7411.ko] undefined!
ERROR: "jiffies" [drivers/hwmon/adt7411.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/hwmon/adt7411.ko] undefined!
ERROR: "_kstrtoul" [drivers/hwmon/adt7411.ko] undefined!
ERROR: "mutex_unlock" [drivers/hwmon/adt7411.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/hwmon/adt7411.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/hwmon/adt7411.ko] undefined!
ERROR: "strlcpy" [drivers/hwmon/adt7411.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/hwmon/adt7411.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/hwmon/adt7411.ko] undefined!
ERROR: "i2c_del_driver" [drivers/hwmon/ads7828.ko] undefined!
ERROR: "i2c_register_driver" [drivers/hwmon/ads7828.ko] undefined!
ERROR: "regulator_get_voltage" [drivers/hwmon/ads7828.ko] undefined!
ERROR: "devm_regulator_get_optional" [drivers/hwmon/ads7828.ko] undefined!
ERROR: "of_find_property" [drivers/hwmon/ads7828.ko] undefined!
ERROR: "devm_hwmon_device_register_with_groups" [drivers/hwmon/ads7828.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/hwmon/ads7828.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/hwmon/ads7828.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hwmon/ads7828.ko] undefined!
ERROR: "sprintf" [drivers/hwmon/ads7828.ko] undefined!
ERROR: "regmap_read" [drivers/hwmon/ads7828.ko] undefined!
ERROR: "i2c_del_driver" [drivers/hwmon/adm1177.ko] undefined!
ERROR: "i2c_register_driver" [drivers/hwmon/adm1177.ko] undefined!
ERROR: "devm_add_action" [drivers/hwmon/adm1177.ko] undefined!
ERROR: "regulator_enable" [drivers/hwmon/adm1177.ko] undefined!
ERROR: "devm_hwmon_device_register_with_info" [drivers/hwmon/adm1177.ko] undefined!
ERROR: "i2c_smbus_write_byte" [drivers/hwmon/adm1177.ko] undefined!
ERROR: "device_property_present" [drivers/hwmon/adm1177.ko] undefined!
ERROR: "device_property_read_u32_array" [drivers/hwmon/adm1177.ko] undefined!
ERROR: "devm_regulator_get_optional" [drivers/hwmon/adm1177.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hwmon/adm1177.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/hwmon/adm1177.ko] undefined!
ERROR: "regulator_disable" [drivers/hwmon/adm1177.ko] undefined!
ERROR: "i2c_transfer_buffer_flags" [drivers/hwmon/adm1177.ko] undefined!
ERROR: "i2c_del_driver" [drivers/hwmon/adc128d818.ko] undefined!
ERROR: "i2c_register_driver" [drivers/hwmon/adc128d818.ko] undefined!
ERROR: "_dev_err" [drivers/hwmon/adc128d818.ko] undefined!
ERROR: "regulator_get_voltage" [drivers/hwmon/adc128d818.ko] undefined!
ERROR: "regulator_enable" [drivers/hwmon/adc128d818.ko] undefined!
ERROR: "devm_hwmon_device_register_with_groups" [drivers/hwmon/adc128d818.ko] undefined!
ERROR: "__mutex_init" [drivers/hwmon/adc128d818.ko] undefined!
ERROR: "of_property_read_variable_u8_array" [drivers/hwmon/adc128d818.ko] undefined!
ERROR: "devm_regulator_get_optional" [drivers/hwmon/adc128d818.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hwmon/adc128d818.ko] undefined!
ERROR: "sprintf" [drivers/hwmon/adc128d818.ko] undefined!
ERROR: "i2c_smbus_read_word_data" [drivers/hwmon/adc128d818.ko] undefined!
ERROR: "jiffies" [drivers/hwmon/adc128d818.ko] undefined!
ERROR: "mutex_unlock" [drivers/hwmon/adc128d818.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/hwmon/adc128d818.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/hwmon/adc128d818.ko] undefined!
ERROR: "_kstrtol" [drivers/hwmon/adc128d818.ko] undefined!
ERROR: "regulator_disable" [drivers/hwmon/adc128d818.ko] undefined!
ERROR: "strlcpy" [drivers/hwmon/adc128d818.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/hwmon/adc128d818.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/hwmon/adc128d818.ko] undefined!
ERROR: "i2c_del_driver" [drivers/hwmon/ad7414.ko] undefined!
ERROR: "i2c_register_driver" [drivers/hwmon/ad7414.ko] undefined!
ERROR: "sprintf" [drivers/hwmon/ad7414.ko] undefined!
ERROR: "i2c_smbus_read_word_data" [drivers/hwmon/ad7414.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/hwmon/ad7414.ko] undefined!
ERROR: "jiffies" [drivers/hwmon/ad7414.ko] undefined!
ERROR: "_dev_warn" [drivers/hwmon/ad7414.ko] undefined!
ERROR: "devm_hwmon_device_register_with_groups" [drivers/hwmon/ad7414.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/hwmon/ad7414.ko] undefined!
ERROR: "_dev_info" [drivers/hwmon/ad7414.ko] undefined!
ERROR: "__mutex_init" [drivers/hwmon/ad7414.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hwmon/ad7414.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/hwmon/ad7414.ko] undefined!
ERROR: "mutex_unlock" [drivers/hwmon/ad7414.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/hwmon/ad7414.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/hwmon/ad7414.ko] undefined!
ERROR: "_kstrtol" [drivers/hwmon/ad7414.ko] undefined!
ERROR: "param_ops_short" [drivers/hwmon/w83781d.ko] undefined!
ERROR: "param_array_ops" [drivers/hwmon/w83781d.ko] undefined!
ERROR: "param_ops_bool" [drivers/hwmon/w83781d.ko] undefined!
ERROR: "i2c_del_driver" [drivers/hwmon/w83781d.ko] undefined!
ERROR: "i2c_register_driver" [drivers/hwmon/w83781d.ko] undefined!
ERROR: "_dev_info" [drivers/hwmon/w83781d.ko] undefined!
ERROR: "device_create_file" [drivers/hwmon/w83781d.ko] undefined!
ERROR: "hwmon_device_register" [drivers/hwmon/w83781d.ko] undefined!
ERROR: "sysfs_chmod_file" [drivers/hwmon/w83781d.ko] undefined!
ERROR: "sysfs_create_group" [drivers/hwmon/w83781d.ko] undefined!
ERROR: "vid_which_vrm" [drivers/hwmon/w83781d.ko] undefined!
ERROR: "i2c_new_dummy_device" [drivers/hwmon/w83781d.ko] undefined!
ERROR: "__mutex_init" [drivers/hwmon/w83781d.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hwmon/w83781d.ko] undefined!
ERROR: "vid_from_reg" [drivers/hwmon/w83781d.ko] undefined!
ERROR: "_kstrtol" [drivers/hwmon/w83781d.ko] undefined!
ERROR: "sprintf" [drivers/hwmon/w83781d.ko] undefined!
ERROR: "_dev_warn" [drivers/hwmon/w83781d.ko] undefined!
ERROR: "_dev_err" [drivers/hwmon/w83781d.ko] undefined!
ERROR: "i2c_smbus_write_word_data" [drivers/hwmon/w83781d.ko] undefined!
ERROR: "jiffies" [drivers/hwmon/w83781d.ko] undefined!
ERROR: "mutex_unlock" [drivers/hwmon/w83781d.ko] undefined!
ERROR: "i2c_smbus_read_word_data" [drivers/hwmon/w83781d.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/hwmon/w83781d.ko] undefined!
ERROR: "_kstrtoul" [drivers/hwmon/w83781d.ko] undefined!
ERROR: "i2c_unregister_device" [drivers/hwmon/w83781d.ko] undefined!
ERROR: "hwmon_device_unregister" [drivers/hwmon/w83781d.ko] undefined!
ERROR: "sysfs_remove_group" [drivers/hwmon/w83781d.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/hwmon/w83781d.ko] undefined!
ERROR: "strlcpy" [drivers/hwmon/w83781d.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/hwmon/w83781d.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/hwmon/w83781d.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/hwmon/w83781d.ko] undefined!
ERROR: "param_ops_bool" [drivers/hwmon/w83795.ko] undefined!
ERROR: "i2c_del_driver" [drivers/hwmon/w83795.ko] undefined!
ERROR: "i2c_register_driver" [drivers/hwmon/w83795.ko] undefined!
ERROR: "_dev_warn" [drivers/hwmon/w83795.ko] undefined!
ERROR: "sysfs_chmod_file" [drivers/hwmon/w83795.ko] undefined!
ERROR: "hwmon_device_register" [drivers/hwmon/w83795.ko] undefined!
ERROR: "device_create_file" [drivers/hwmon/w83795.ko] undefined!
ERROR: "__mutex_init" [drivers/hwmon/w83795.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hwmon/w83795.ko] undefined!
ERROR: "_kstrtol" [drivers/hwmon/w83795.ko] undefined!
ERROR: "sprintf" [drivers/hwmon/w83795.ko] undefined!
ERROR: "jiffies" [drivers/hwmon/w83795.ko] undefined!
ERROR: "_kstrtoul" [drivers/hwmon/w83795.ko] undefined!
ERROR: "mutex_unlock" [drivers/hwmon/w83795.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/hwmon/w83795.ko] undefined!
ERROR: "_dev_err" [drivers/hwmon/w83795.ko] undefined!
ERROR: "device_remove_file" [drivers/hwmon/w83795.ko] undefined!
ERROR: "hwmon_device_unregister" [drivers/hwmon/w83795.ko] undefined!
ERROR: "_dev_info" [drivers/hwmon/w83795.ko] undefined!
ERROR: "strlcpy" [drivers/hwmon/w83795.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/hwmon/w83795.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/hwmon/w83795.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/hwmon/w83795.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/hwmon/w83795.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/hwmon/w83795.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/hwmon/w83795.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/hwmon/w83795.ko] undefined!
ERROR: "param_ops_short" [drivers/hwmon/w83793.ko] undefined!
ERROR: "param_array_ops" [drivers/hwmon/w83793.ko] undefined!
ERROR: "param_ops_int" [drivers/hwmon/w83793.ko] undefined!
ERROR: "param_ops_bool" [drivers/hwmon/w83793.ko] undefined!
ERROR: "no_llseek" [drivers/hwmon/w83793.ko] undefined!
ERROR: "i2c_del_driver" [drivers/hwmon/w83793.ko] undefined!
ERROR: "i2c_register_driver" [drivers/hwmon/w83793.ko] undefined!
ERROR: "_dev_crit" [drivers/hwmon/w83793.ko] undefined!
ERROR: "stream_open" [drivers/hwmon/w83793.ko] undefined!
ERROR: "mutex_trylock" [drivers/hwmon/w83793.ko] undefined!
ERROR: "refcount_warn_saturate" [drivers/hwmon/w83793.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/hwmon/w83793.ko] undefined!
ERROR: "misc_deregister" [drivers/hwmon/w83793.ko] undefined!
ERROR: "unregister_reboot_notifier" [drivers/hwmon/w83793.ko] undefined!
ERROR: "_dev_info" [drivers/hwmon/w83793.ko] undefined!
ERROR: "hwmon_device_unregister" [drivers/hwmon/w83793.ko] undefined!
ERROR: "_dev_warn" [drivers/hwmon/w83793.ko] undefined!
ERROR: "__list_add_valid" [drivers/hwmon/w83793.ko] undefined!
ERROR: "misc_register" [drivers/hwmon/w83793.ko] undefined!
ERROR: "snprintf" [drivers/hwmon/w83793.ko] undefined!
ERROR: "register_reboot_notifier" [drivers/hwmon/w83793.ko] undefined!
ERROR: "vid_which_vrm" [drivers/hwmon/w83793.ko] undefined!
ERROR: "hwmon_device_register" [drivers/hwmon/w83793.ko] undefined!
ERROR: "kfree" [drivers/hwmon/w83793.ko] undefined!
ERROR: "device_remove_file" [drivers/hwmon/w83793.ko] undefined!
ERROR: "device_create_file" [drivers/hwmon/w83793.ko] undefined!
ERROR: "devm_i2c_new_dummy_device" [drivers/hwmon/w83793.ko] undefined!
ERROR: "__mutex_init" [drivers/hwmon/w83793.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/hwmon/w83793.ko] undefined!
ERROR: "kmalloc_caches" [drivers/hwmon/w83793.ko] undefined!
ERROR: "__get_user_4" [drivers/hwmon/w83793.ko] undefined!
ERROR: "_copy_to_user" [drivers/hwmon/w83793.ko] undefined!
ERROR: "__put_user_4" [drivers/hwmon/w83793.ko] undefined!
ERROR: "__get_user_1" [drivers/hwmon/w83793.ko] undefined!
ERROR: "__might_fault" [drivers/hwmon/w83793.ko] undefined!
ERROR: "_kstrtol" [drivers/hwmon/w83793.ko] undefined!
ERROR: "vid_from_reg" [drivers/hwmon/w83793.ko] undefined!
ERROR: "mutex_unlock" [drivers/hwmon/w83793.ko] undefined!
ERROR: "jiffies" [drivers/hwmon/w83793.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/hwmon/w83793.ko] undefined!
ERROR: "_dev_err" [drivers/hwmon/w83793.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/hwmon/w83793.ko] undefined!
ERROR: "_kstrtoul" [drivers/hwmon/w83793.ko] undefined!
ERROR: "sprintf" [drivers/hwmon/w83793.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/hwmon/w83793.ko] undefined!
ERROR: "strlcpy" [drivers/hwmon/w83793.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/hwmon/w83793.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/hwmon/w83793.ko] undefined!
ERROR: "param_ops_short" [drivers/hwmon/w83792d.ko] undefined!
ERROR: "param_array_ops" [drivers/hwmon/w83792d.ko] undefined!
ERROR: "param_ops_bool" [drivers/hwmon/w83792d.ko] undefined!
ERROR: "i2c_del_driver" [drivers/hwmon/w83792d.ko] undefined!
ERROR: "i2c_register_driver" [drivers/hwmon/w83792d.ko] undefined!
ERROR: "_dev_err" [drivers/hwmon/w83792d.ko] undefined!
ERROR: "hwmon_device_register" [drivers/hwmon/w83792d.ko] undefined!
ERROR: "sysfs_create_group" [drivers/hwmon/w83792d.ko] undefined!
ERROR: "devm_i2c_new_dummy_device" [drivers/hwmon/w83792d.ko] undefined!
ERROR: "__mutex_init" [drivers/hwmon/w83792d.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hwmon/w83792d.ko] undefined!
ERROR: "_kstrtol" [drivers/hwmon/w83792d.ko] undefined!
ERROR: "sprintf" [drivers/hwmon/w83792d.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/hwmon/w83792d.ko] undefined!
ERROR: "jiffies" [drivers/hwmon/w83792d.ko] undefined!
ERROR: "mutex_unlock" [drivers/hwmon/w83792d.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/hwmon/w83792d.ko] undefined!
ERROR: "_kstrtoul" [drivers/hwmon/w83792d.ko] undefined!
ERROR: "sysfs_remove_group" [drivers/hwmon/w83792d.ko] undefined!
ERROR: "hwmon_device_unregister" [drivers/hwmon/w83792d.ko] undefined!
ERROR: "strlcpy" [drivers/hwmon/w83792d.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/hwmon/w83792d.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/hwmon/w83792d.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/hwmon/w83792d.ko] undefined!
ERROR: "param_ops_short" [drivers/hwmon/asb100.ko] undefined!
ERROR: "param_array_ops" [drivers/hwmon/asb100.ko] undefined!
ERROR: "i2c_del_driver" [drivers/hwmon/asb100.ko] undefined!
ERROR: "i2c_register_driver" [drivers/hwmon/asb100.ko] undefined!
ERROR: "_dev_err" [drivers/hwmon/asb100.ko] undefined!
ERROR: "hwmon_device_register" [drivers/hwmon/asb100.ko] undefined!
ERROR: "sysfs_create_group" [drivers/hwmon/asb100.ko] undefined!
ERROR: "vid_which_vrm" [drivers/hwmon/asb100.ko] undefined!
ERROR: "i2c_new_dummy_device" [drivers/hwmon/asb100.ko] undefined!
ERROR: "__mutex_init" [drivers/hwmon/asb100.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hwmon/asb100.ko] undefined!
ERROR: "_kstrtol" [drivers/hwmon/asb100.ko] undefined!
ERROR: "vid_from_reg" [drivers/hwmon/asb100.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/hwmon/asb100.ko] undefined!
ERROR: "jiffies" [drivers/hwmon/asb100.ko] undefined!
ERROR: "i2c_smbus_read_word_data" [drivers/hwmon/asb100.ko] undefined!
ERROR: "sprintf" [drivers/hwmon/asb100.ko] undefined!
ERROR: "i2c_smbus_write_word_data" [drivers/hwmon/asb100.ko] undefined!
ERROR: "mutex_unlock" [drivers/hwmon/asb100.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/hwmon/asb100.ko] undefined!
ERROR: "_kstrtoul" [drivers/hwmon/asb100.ko] undefined!
ERROR: "i2c_unregister_device" [drivers/hwmon/asb100.ko] undefined!
ERROR: "sysfs_remove_group" [drivers/hwmon/asb100.ko] undefined!
ERROR: "hwmon_device_unregister" [drivers/hwmon/asb100.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/hwmon/asb100.ko] undefined!
ERROR: "strlcpy" [drivers/hwmon/asb100.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/hwmon/asb100.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/hwmon/asb100.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/hwmon/asb100.ko] undefined!
ERROR: "param_ops_bool" [drivers/hwmon/asus_atk0110.ko] undefined!
ERROR: "simple_attr_release" [drivers/hwmon/asus_atk0110.ko] undefined!
ERROR: "debugfs_attr_write" [drivers/hwmon/asus_atk0110.ko] undefined!
ERROR: "debugfs_attr_read" [drivers/hwmon/asus_atk0110.ko] undefined!
ERROR: "no_llseek" [drivers/hwmon/asus_atk0110.ko] undefined!
ERROR: "acpi_bus_unregister_driver" [drivers/hwmon/asus_atk0110.ko] undefined!
ERROR: "acpi_bus_register_driver" [drivers/hwmon/asus_atk0110.ko] undefined!
ERROR: "printk" [drivers/hwmon/asus_atk0110.ko] undefined!
ERROR: "acpi_resources_are_enforced" [drivers/hwmon/asus_atk0110.ko] undefined!
ERROR: "debugfs_create_file" [drivers/hwmon/asus_atk0110.ko] undefined!
ERROR: "debugfs_create_file_unsafe" [drivers/hwmon/asus_atk0110.ko] undefined!
ERROR: "debugfs_create_x32" [drivers/hwmon/asus_atk0110.ko] undefined!
ERROR: "debugfs_create_dir" [drivers/hwmon/asus_atk0110.ko] undefined!
ERROR: "hwmon_device_register_with_groups" [drivers/hwmon/asus_atk0110.ko] undefined!
ERROR: "acpi_get_handle" [drivers/hwmon/asus_atk0110.ko] undefined!
ERROR: "hwmon_device_unregister" [drivers/hwmon/asus_atk0110.ko] undefined!
ERROR: "debugfs_remove_recursive" [drivers/hwmon/asus_atk0110.ko] undefined!
ERROR: "_dev_info" [drivers/hwmon/asus_atk0110.ko] undefined!
ERROR: "nonseekable_open" [drivers/hwmon/asus_atk0110.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/hwmon/asus_atk0110.ko] undefined!
ERROR: "kmalloc_caches" [drivers/hwmon/asus_atk0110.ko] undefined!
ERROR: "acpi_evaluate_integer" [drivers/hwmon/asus_atk0110.ko] undefined!
ERROR: "jiffies" [drivers/hwmon/asus_atk0110.ko] undefined!
ERROR: "acpi_evaluate_object_typed" [drivers/hwmon/asus_atk0110.ko] undefined!
ERROR: "simple_attr_open" [drivers/hwmon/asus_atk0110.ko] undefined!
ERROR: "simple_read_from_buffer" [drivers/hwmon/asus_atk0110.ko] undefined!
ERROR: "strlen" [drivers/hwmon/asus_atk0110.ko] undefined!
ERROR: "_dev_err" [drivers/hwmon/asus_atk0110.ko] undefined!
ERROR: "acpi_format_exception" [drivers/hwmon/asus_atk0110.ko] undefined!
ERROR: "acpi_evaluate_object" [drivers/hwmon/asus_atk0110.ko] undefined!
ERROR: "_dev_warn" [drivers/hwmon/asus_atk0110.ko] undefined!
ERROR: "__list_add_valid" [drivers/hwmon/asus_atk0110.ko] undefined!
ERROR: "snprintf" [drivers/hwmon/asus_atk0110.ko] undefined!
ERROR: "devm_kstrdup" [drivers/hwmon/asus_atk0110.ko] undefined!
ERROR: "devm_kmalloc" [drivers/hwmon/asus_atk0110.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/hwmon/asus_atk0110.ko] undefined!
ERROR: "sprintf" [drivers/hwmon/asus_atk0110.ko] undefined!
ERROR: "kfree" [drivers/hwmon/asus_atk0110.ko] undefined!
ERROR: "param_ops_bool" [drivers/hwmon/acpi_power_meter.ko] undefined!
ERROR: "acpi_bus_unregister_driver" [drivers/hwmon/acpi_power_meter.ko] undefined!
ERROR: "acpi_bus_register_driver" [drivers/hwmon/acpi_power_meter.ko] undefined!
ERROR: "acpi_disabled" [drivers/hwmon/acpi_power_meter.ko] undefined!
ERROR: "hwmon_device_register" [drivers/hwmon/acpi_power_meter.ko] undefined!
ERROR: "strcpy" [drivers/hwmon/acpi_power_meter.ko] undefined!
ERROR: "__mutex_init" [drivers/hwmon/acpi_power_meter.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/hwmon/acpi_power_meter.ko] undefined!
ERROR: "kmalloc_caches" [drivers/hwmon/acpi_power_meter.ko] undefined!
ERROR: "acpi_bus_generate_netlink_event" [drivers/hwmon/acpi_power_meter.ko] undefined!
ERROR: "sysfs_notify" [drivers/hwmon/acpi_power_meter.ko] undefined!
ERROR: "_dev_info" [drivers/hwmon/acpi_power_meter.ko] undefined!
ERROR: "strncpy" [drivers/hwmon/acpi_power_meter.ko] undefined!
ERROR: "acpi_extract_package" [drivers/hwmon/acpi_power_meter.ko] undefined!
ERROR: "_dev_err" [drivers/hwmon/acpi_power_meter.ko] undefined!
ERROR: "_dev_warn" [drivers/hwmon/acpi_power_meter.ko] undefined!
ERROR: "sysfs_create_link" [drivers/hwmon/acpi_power_meter.ko] undefined!
ERROR: "get_device" [drivers/hwmon/acpi_power_meter.ko] undefined!
ERROR: "acpi_bus_get_device" [drivers/hwmon/acpi_power_meter.ko] undefined!
ERROR: "kobject_create_and_add" [drivers/hwmon/acpi_power_meter.ko] undefined!
ERROR: "__kmalloc" [drivers/hwmon/acpi_power_meter.ko] undefined!
ERROR: "acpi_evaluate_object" [drivers/hwmon/acpi_power_meter.ko] undefined!
ERROR: "hwmon_device_unregister" [drivers/hwmon/acpi_power_meter.ko] undefined!
ERROR: "__msecs_to_jiffies" [drivers/hwmon/acpi_power_meter.ko] undefined!
ERROR: "jiffies" [drivers/hwmon/acpi_power_meter.ko] undefined!
ERROR: "device_create_file" [drivers/hwmon/acpi_power_meter.ko] undefined!
ERROR: "acpi_exception" [drivers/hwmon/acpi_power_meter.ko] undefined!
ERROR: "mutex_unlock" [drivers/hwmon/acpi_power_meter.ko] undefined!
ERROR: "acpi_evaluate_integer" [drivers/hwmon/acpi_power_meter.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/hwmon/acpi_power_meter.ko] undefined!
ERROR: "_kstrtoul" [drivers/hwmon/acpi_power_meter.ko] undefined!
ERROR: "sprintf" [drivers/hwmon/acpi_power_meter.ko] undefined!
ERROR: "__warn_printk" [drivers/hwmon/acpi_power_meter.ko] undefined!
ERROR: "kobject_put" [drivers/hwmon/acpi_power_meter.ko] undefined!
ERROR: "kfree" [drivers/hwmon/acpi_power_meter.ko] undefined!
ERROR: "put_device" [drivers/hwmon/acpi_power_meter.ko] undefined!
ERROR: "sysfs_remove_link" [drivers/hwmon/acpi_power_meter.ko] undefined!
ERROR: "device_remove_file" [drivers/hwmon/acpi_power_meter.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/power/supply/wilco-charger.ko] undefined!
ERROR: "__platform_driver_register" [drivers/power/supply/wilco-charger.ko] undefined!
ERROR: "wilco_ec_get_byte_property" [drivers/power/supply/wilco-charger.ko] undefined!
ERROR: "wilco_ec_set_byte_property" [drivers/power/supply/wilco-charger.ko] undefined!
ERROR: "power_supply_get_drvdata" [drivers/power/supply/wilco-charger.ko] undefined!
ERROR: "devm_power_supply_register" [drivers/power/supply/wilco-charger.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/power/supply/cros_usbpd-charger.ko] undefined!
ERROR: "__platform_driver_register" [drivers/power/supply/cros_usbpd-charger.ko] undefined!
ERROR: "cros_ec_get_host_event" [drivers/power/supply/cros_usbpd-charger.ko] undefined!
ERROR: "snprintf" [drivers/power/supply/cros_usbpd-charger.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/power/supply/cros_usbpd-charger.ko] undefined!
ERROR: "power_supply_get_drvdata" [drivers/power/supply/cros_usbpd-charger.ko] undefined!
ERROR: "_dev_warn" [drivers/power/supply/cros_usbpd-charger.ko] undefined!
ERROR: "_dev_err" [drivers/power/supply/cros_usbpd-charger.ko] undefined!
ERROR: "_dev_info" [drivers/power/supply/cros_usbpd-charger.ko] undefined!
ERROR: "__warn_printk" [drivers/power/supply/cros_usbpd-charger.ko] undefined!
ERROR: "devm_add_action" [drivers/power/supply/cros_usbpd-charger.ko] undefined!
ERROR: "blocking_notifier_chain_register" [drivers/power/supply/cros_usbpd-charger.ko] undefined!
ERROR: "devm_power_supply_register_no_ws" [drivers/power/supply/cros_usbpd-charger.ko] undefined!
ERROR: "sprintf" [drivers/power/supply/cros_usbpd-charger.ko] undefined!
ERROR: "devm_kmalloc" [drivers/power/supply/cros_usbpd-charger.ko] undefined!
ERROR: "kfree" [drivers/power/supply/cros_usbpd-charger.ko] undefined!
ERROR: "cros_ec_cmd_xfer_status" [drivers/power/supply/cros_usbpd-charger.ko] undefined!
ERROR: "__kmalloc" [drivers/power/supply/cros_usbpd-charger.ko] undefined!
ERROR: "blocking_notifier_chain_unregister" [drivers/power/supply/cros_usbpd-charger.ko] undefined!
ERROR: "jiffies" [drivers/power/supply/cros_usbpd-charger.ko] undefined!
ERROR: "power_supply_changed" [drivers/power/supply/cros_usbpd-charger.ko] undefined!
ERROR: "single_release" [drivers/power/supply/axp288_fuel_gauge.ko] undefined!
ERROR: "seq_read" [drivers/power/supply/axp288_fuel_gauge.ko] undefined!
ERROR: "seq_lseek" [drivers/power/supply/axp288_fuel_gauge.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/power/supply/axp288_fuel_gauge.ko] undefined!
ERROR: "__platform_driver_register" [drivers/power/supply/axp288_fuel_gauge.ko] undefined!
ERROR: "regmap_write" [drivers/power/supply/axp288_fuel_gauge.ko] undefined!
ERROR: "mutex_unlock" [drivers/power/supply/axp288_fuel_gauge.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/power/supply/axp288_fuel_gauge.ko] undefined!
ERROR: "iio_read_channel_raw" [drivers/power/supply/axp288_fuel_gauge.ko] undefined!
ERROR: "seq_printf" [drivers/power/supply/axp288_fuel_gauge.ko] undefined!
ERROR: "_dev_warn" [drivers/power/supply/axp288_fuel_gauge.ko] undefined!
ERROR: "_dev_info" [drivers/power/supply/axp288_fuel_gauge.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/power/supply/axp288_fuel_gauge.ko] undefined!
ERROR: "request_threaded_irq" [drivers/power/supply/axp288_fuel_gauge.ko] undefined!
ERROR: "regmap_irq_get_virq" [drivers/power/supply/axp288_fuel_gauge.ko] undefined!
ERROR: "platform_get_irq" [drivers/power/supply/axp288_fuel_gauge.ko] undefined!
ERROR: "debugfs_create_file" [drivers/power/supply/axp288_fuel_gauge.ko] undefined!
ERROR: "power_supply_register" [drivers/power/supply/axp288_fuel_gauge.ko] undefined!
ERROR: "iio_channel_get" [drivers/power/supply/axp288_fuel_gauge.ko] undefined!
ERROR: "__mutex_init" [drivers/power/supply/axp288_fuel_gauge.ko] undefined!
ERROR: "devm_kmalloc" [drivers/power/supply/axp288_fuel_gauge.ko] undefined!
ERROR: "single_open" [drivers/power/supply/axp288_fuel_gauge.ko] undefined!
ERROR: "regmap_bulk_read" [drivers/power/supply/axp288_fuel_gauge.ko] undefined!
ERROR: "power_supply_changed" [drivers/power/supply/axp288_fuel_gauge.ko] undefined!
ERROR: "power_supply_get_drvdata" [drivers/power/supply/axp288_fuel_gauge.ko] undefined!
ERROR: "_dev_err" [drivers/power/supply/axp288_fuel_gauge.ko] undefined!
ERROR: "regmap_read" [drivers/power/supply/axp288_fuel_gauge.ko] undefined!
ERROR: "iio_channel_release" [drivers/power/supply/axp288_fuel_gauge.ko] undefined!
ERROR: "free_irq" [drivers/power/supply/axp288_fuel_gauge.ko] undefined!
ERROR: "debugfs_remove" [drivers/power/supply/axp288_fuel_gauge.ko] undefined!
ERROR: "power_supply_unregister" [drivers/power/supply/axp288_fuel_gauge.ko] undefined!
ERROR: "i2c_del_driver" [drivers/power/supply/smb347-charger.ko] undefined!
ERROR: "i2c_register_driver" [drivers/power/supply/smb347-charger.ko] undefined!
ERROR: "request_threaded_irq" [drivers/power/supply/smb347-charger.ko] undefined!
ERROR: "gpio_request_one" [drivers/power/supply/smb347-charger.ko] undefined!
ERROR: "gpiod_to_irq" [drivers/power/supply/smb347-charger.ko] undefined!
ERROR: "gpio_to_desc" [drivers/power/supply/smb347-charger.ko] undefined!
ERROR: "power_supply_register" [drivers/power/supply/smb347-charger.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/power/supply/smb347-charger.ko] undefined!
ERROR: "__mutex_init" [drivers/power/supply/smb347-charger.ko] undefined!
ERROR: "devm_kmalloc" [drivers/power/supply/smb347-charger.ko] undefined!
ERROR: "_dev_warn" [drivers/power/supply/smb347-charger.ko] undefined!
ERROR: "power_supply_changed" [drivers/power/supply/smb347-charger.ko] undefined!
ERROR: "_dev_err" [drivers/power/supply/smb347-charger.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/power/supply/smb347-charger.ko] undefined!
ERROR: "power_supply_get_drvdata" [drivers/power/supply/smb347-charger.ko] undefined!
ERROR: "mutex_unlock" [drivers/power/supply/smb347-charger.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/power/supply/smb347-charger.ko] undefined!
ERROR: "regmap_read" [drivers/power/supply/smb347-charger.ko] undefined!
ERROR: "gpio_free" [drivers/power/supply/smb347-charger.ko] undefined!
ERROR: "free_irq" [drivers/power/supply/smb347-charger.ko] undefined!
ERROR: "power_supply_unregister" [drivers/power/supply/smb347-charger.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/power/supply/smb347-charger.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/power/supply/max77693_charger.ko] undefined!
ERROR: "__platform_driver_register" [drivers/power/supply/max77693_charger.ko] undefined!
ERROR: "_dev_err" [drivers/power/supply/max77693_charger.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/power/supply/max77693_charger.ko] undefined!
ERROR: "power_supply_register" [drivers/power/supply/max77693_charger.ko] undefined!
ERROR: "device_create_file" [drivers/power/supply/max77693_charger.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/power/supply/max77693_charger.ko] undefined!
ERROR: "devm_kmalloc" [drivers/power/supply/max77693_charger.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/power/supply/max77693_charger.ko] undefined!
ERROR: "_kstrtoul" [drivers/power/supply/max77693_charger.ko] undefined!
ERROR: "power_supply_get_drvdata" [drivers/power/supply/max77693_charger.ko] undefined!
ERROR: "scnprintf" [drivers/power/supply/max77693_charger.ko] undefined!
ERROR: "regmap_read" [drivers/power/supply/max77693_charger.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/power/supply/max77693_charger.ko] undefined!
ERROR: "power_supply_unregister" [drivers/power/supply/max77693_charger.ko] undefined!
ERROR: "device_remove_file" [drivers/power/supply/max77693_charger.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/power/supply/lt3651-charger.ko] undefined!
ERROR: "__platform_driver_register" [drivers/power/supply/lt3651-charger.ko] undefined!
ERROR: "_dev_err" [drivers/power/supply/lt3651-charger.ko] undefined!
ERROR: "_dev_warn" [drivers/power/supply/lt3651-charger.ko] undefined!
ERROR: "devm_request_any_context_irq" [drivers/power/supply/lt3651-charger.ko] undefined!
ERROR: "gpiod_to_irq" [drivers/power/supply/lt3651-charger.ko] undefined!
ERROR: "devm_power_supply_register" [drivers/power/supply/lt3651-charger.ko] undefined!
ERROR: "devm_gpiod_get_optional" [drivers/power/supply/lt3651-charger.ko] undefined!
ERROR: "devm_gpiod_get" [drivers/power/supply/lt3651-charger.ko] undefined!
ERROR: "devm_kmalloc" [drivers/power/supply/lt3651-charger.ko] undefined!
ERROR: "gpiod_get_value" [drivers/power/supply/lt3651-charger.ko] undefined!
ERROR: "power_supply_get_drvdata" [drivers/power/supply/lt3651-charger.ko] undefined!
ERROR: "power_supply_changed" [drivers/power/supply/lt3651-charger.ko] undefined!
ERROR: "param_ops_bool" [drivers/power/supply/twl4030_charger.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/power/supply/twl4030_charger.ko] undefined!
ERROR: "__platform_driver_register" [drivers/power/supply/twl4030_charger.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/power/supply/twl4030_charger.ko] undefined!
ERROR: "device_create_file" [drivers/power/supply/twl4030_charger.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/power/supply/twl4030_charger.ko] undefined!
ERROR: "devm_power_supply_register" [drivers/power/supply/twl4030_charger.ko] undefined!
ERROR: "of_node_put" [drivers/power/supply/twl4030_charger.ko] undefined!
ERROR: "devm_usb_get_phy_by_node" [drivers/power/supply/twl4030_charger.ko] undefined!
ERROR: "of_get_compatible_child" [drivers/power/supply/twl4030_charger.ko] undefined!
ERROR: "devm_iio_channel_get" [drivers/power/supply/twl4030_charger.ko] undefined!
ERROR: "init_timer_key" [drivers/power/supply/twl4030_charger.ko] undefined!
ERROR: "delayed_work_timer_fn" [drivers/power/supply/twl4030_charger.ko] undefined!
ERROR: "lockdep_init_map" [drivers/power/supply/twl4030_charger.ko] undefined!
ERROR: "platform_get_irq" [drivers/power/supply/twl4030_charger.ko] undefined!
ERROR: "devm_kmalloc" [drivers/power/supply/twl4030_charger.ko] undefined!
ERROR: "queue_work_on" [drivers/power/supply/twl4030_charger.ko] undefined!
ERROR: "_dev_warn" [drivers/power/supply/twl4030_charger.ko] undefined!
ERROR: "_dev_crit" [drivers/power/supply/twl4030_charger.ko] undefined!
ERROR: "power_supply_changed" [drivers/power/supply/twl4030_charger.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/power/supply/twl4030_charger.ko] undefined!
ERROR: "device_remove_file" [drivers/power/supply/twl4030_charger.ko] undefined!
ERROR: "__sysfs_match_string" [drivers/power/supply/twl4030_charger.ko] undefined!
ERROR: "_dev_err" [drivers/power/supply/twl4030_charger.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/power/supply/twl4030_charger.ko] undefined!
ERROR: "__pm_runtime_suspend" [drivers/power/supply/twl4030_charger.ko] undefined!
ERROR: "ktime_get_mono_fast_ns" [drivers/power/supply/twl4030_charger.ko] undefined!
ERROR: "queue_delayed_work_on" [drivers/power/supply/twl4030_charger.ko] undefined!
ERROR: "system_wq" [drivers/power/supply/twl4030_charger.ko] undefined!
ERROR: "iio_read_channel_processed" [drivers/power/supply/twl4030_charger.ko] undefined!
ERROR: "twl_i2c_write" [drivers/power/supply/twl4030_charger.ko] undefined!
ERROR: "twl_i2c_read" [drivers/power/supply/twl4030_charger.ko] undefined!
ERROR: "snprintf" [drivers/power/supply/twl4030_charger.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/power/supply/pcf50633-charger.ko] undefined!
ERROR: "__platform_driver_register" [drivers/power/supply/pcf50633-charger.ko] undefined!
ERROR: "power_supply_register" [drivers/power/supply/pcf50633-charger.ko] undefined!
ERROR: "pcf50633_register_irq" [drivers/power/supply/pcf50633-charger.ko] undefined!
ERROR: "devm_kmalloc" [drivers/power/supply/pcf50633-charger.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/power/supply/pcf50633-charger.ko] undefined!
ERROR: "_dev_err" [drivers/power/supply/pcf50633-charger.ko] undefined!
ERROR: "power_supply_changed" [drivers/power/supply/pcf50633-charger.ko] undefined!
ERROR: "pcf50633_reg_clear_bits" [drivers/power/supply/pcf50633-charger.ko] undefined!
ERROR: "_dev_info" [drivers/power/supply/pcf50633-charger.ko] undefined!
ERROR: "pcf50633_reg_set_bit_mask" [drivers/power/supply/pcf50633-charger.ko] undefined!
ERROR: "sprintf" [drivers/power/supply/pcf50633-charger.ko] undefined!
ERROR: "pcf50633_reg_write" [drivers/power/supply/pcf50633-charger.ko] undefined!
ERROR: "_kstrtoul" [drivers/power/supply/pcf50633-charger.ko] undefined!
ERROR: "pcf50633_reg_read" [drivers/power/supply/pcf50633-charger.ko] undefined!
ERROR: "power_supply_get_drvdata" [drivers/power/supply/pcf50633-charger.ko] undefined!
ERROR: "power_supply_unregister" [drivers/power/supply/pcf50633-charger.ko] undefined!
ERROR: "pcf50633_free_irq" [drivers/power/supply/pcf50633-charger.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/power/supply/88pm860x_charger.ko] undefined!
ERROR: "__platform_driver_register" [drivers/power/supply/88pm860x_charger.ko] undefined!
ERROR: "power_supply_changed" [drivers/power/supply/88pm860x_charger.ko] undefined!
ERROR: "power_supply_set_property" [drivers/power/supply/88pm860x_charger.ko] undefined!
ERROR: "__const_udelay" [drivers/power/supply/88pm860x_charger.ko] undefined!
ERROR: "_dev_err" [drivers/power/supply/88pm860x_charger.ko] undefined!
ERROR: "request_threaded_irq" [drivers/power/supply/88pm860x_charger.ko] undefined!
ERROR: "power_supply_register" [drivers/power/supply/88pm860x_charger.ko] undefined!
ERROR: "__mutex_init" [drivers/power/supply/88pm860x_charger.ko] undefined!
ERROR: "platform_get_irq" [drivers/power/supply/88pm860x_charger.ko] undefined!
ERROR: "devm_kmalloc" [drivers/power/supply/88pm860x_charger.ko] undefined!
ERROR: "pm860x_reg_read" [drivers/power/supply/88pm860x_charger.ko] undefined!
ERROR: "pm860x_bulk_read" [drivers/power/supply/88pm860x_charger.ko] undefined!
ERROR: "_dev_warn" [drivers/power/supply/88pm860x_charger.ko] undefined!
ERROR: "mutex_unlock" [drivers/power/supply/88pm860x_charger.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/power/supply/88pm860x_charger.ko] undefined!
ERROR: "power_supply_put" [drivers/power/supply/88pm860x_charger.ko] undefined!
ERROR: "power_supply_get_property" [drivers/power/supply/88pm860x_charger.ko] undefined!
ERROR: "power_supply_get_by_name" [drivers/power/supply/88pm860x_charger.ko] undefined!
ERROR: "power_supply_get_drvdata" [drivers/power/supply/88pm860x_charger.ko] undefined!
ERROR: "pm860x_set_bits" [drivers/power/supply/88pm860x_charger.ko] undefined!
ERROR: "pm860x_reg_write" [drivers/power/supply/88pm860x_charger.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/power/supply/88pm860x_charger.ko] undefined!
ERROR: "free_irq" [drivers/power/supply/88pm860x_charger.ko] undefined!
ERROR: "power_supply_unregister" [drivers/power/supply/88pm860x_charger.ko] undefined!
ERROR: "i2c_del_driver" [drivers/power/supply/rt5033_battery.ko] undefined!
ERROR: "i2c_register_driver" [drivers/power/supply/rt5033_battery.ko] undefined!
ERROR: "_dev_err" [drivers/power/supply/rt5033_battery.ko] undefined!
ERROR: "power_supply_register" [drivers/power/supply/rt5033_battery.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/power/supply/rt5033_battery.ko] undefined!
ERROR: "devm_kmalloc" [drivers/power/supply/rt5033_battery.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/power/supply/rt5033_battery.ko] undefined!
ERROR: "regmap_read" [drivers/power/supply/rt5033_battery.ko] undefined!
ERROR: "power_supply_get_drvdata" [drivers/power/supply/rt5033_battery.ko] undefined!
ERROR: "power_supply_unregister" [drivers/power/supply/rt5033_battery.ko] undefined!
ERROR: "i2c_del_driver" [drivers/power/supply/max17040_battery.ko] undefined!
ERROR: "i2c_register_driver" [drivers/power/supply/max17040_battery.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/power/supply/max17040_battery.ko] undefined!
ERROR: "of_device_is_compatible" [drivers/power/supply/max17040_battery.ko] undefined!
ERROR: "init_timer_key" [drivers/power/supply/max17040_battery.ko] undefined!
ERROR: "delayed_work_timer_fn" [drivers/power/supply/max17040_battery.ko] undefined!
ERROR: "lockdep_init_map" [drivers/power/supply/max17040_battery.ko] undefined!
ERROR: "_dev_info" [drivers/power/supply/max17040_battery.ko] undefined!
ERROR: "power_supply_register" [drivers/power/supply/max17040_battery.ko] undefined!
ERROR: "device_property_read_u32_array" [drivers/power/supply/max17040_battery.ko] undefined!
ERROR: "devm_kmalloc" [drivers/power/supply/max17040_battery.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/power/supply/max17040_battery.ko] undefined!
ERROR: "_dev_warn" [drivers/power/supply/max17040_battery.ko] undefined!
ERROR: "i2c_smbus_write_word_data" [drivers/power/supply/max17040_battery.ko] undefined!
ERROR: "power_supply_get_drvdata" [drivers/power/supply/max17040_battery.ko] undefined!
ERROR: "power_supply_changed" [drivers/power/supply/max17040_battery.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/power/supply/max17040_battery.ko] undefined!
ERROR: "__x86_indirect_thunk_eax" [drivers/power/supply/max17040_battery.ko] undefined!
ERROR: "_dev_err" [drivers/power/supply/max17040_battery.ko] undefined!
ERROR: "i2c_smbus_read_word_data" [drivers/power/supply/max17040_battery.ko] undefined!
ERROR: "power_supply_unregister" [drivers/power/supply/max17040_battery.ko] undefined!
ERROR: "cancel_delayed_work" [drivers/power/supply/max17040_battery.ko] undefined!
ERROR: "irq_set_irq_wake" [drivers/power/supply/max17040_battery.ko] undefined!
ERROR: "queue_delayed_work_on" [drivers/power/supply/max17040_battery.ko] undefined!
ERROR: "system_power_efficient_wq" [drivers/power/supply/max17040_battery.ko] undefined!
ERROR: "param_ops_int" [drivers/power/supply/bq27xxx_battery_hdq.ko] undefined!
ERROR: "w1_unregister_family" [drivers/power/supply/bq27xxx_battery_hdq.ko] undefined!
ERROR: "w1_register_family" [drivers/power/supply/bq27xxx_battery_hdq.ko] undefined!
ERROR: "bq27xxx_battery_setup" [drivers/power/supply/bq27xxx_battery_hdq.ko] undefined!
ERROR: "devm_kmalloc" [drivers/power/supply/bq27xxx_battery_hdq.ko] undefined!
ERROR: "mutex_unlock" [drivers/power/supply/bq27xxx_battery_hdq.ko] undefined!
ERROR: "w1_read_8" [drivers/power/supply/bq27xxx_battery_hdq.ko] undefined!
ERROR: "w1_write_8" [drivers/power/supply/bq27xxx_battery_hdq.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/power/supply/bq27xxx_battery_hdq.ko] undefined!
ERROR: "bq27xxx_battery_teardown" [drivers/power/supply/bq27xxx_battery_hdq.ko] undefined!
ERROR: "i2c_del_driver" [drivers/power/supply/bq27xxx_battery_i2c.ko] undefined!
ERROR: "i2c_register_driver" [drivers/power/supply/bq27xxx_battery_i2c.ko] undefined!
ERROR: "_dev_err" [drivers/power/supply/bq27xxx_battery_i2c.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/power/supply/bq27xxx_battery_i2c.ko] undefined!
ERROR: "queue_delayed_work_on" [drivers/power/supply/bq27xxx_battery_i2c.ko] undefined!
ERROR: "system_wq" [drivers/power/supply/bq27xxx_battery_i2c.ko] undefined!
ERROR: "bq27xxx_battery_setup" [drivers/power/supply/bq27xxx_battery_i2c.ko] undefined!
ERROR: "devm_kmalloc" [drivers/power/supply/bq27xxx_battery_i2c.ko] undefined!
ERROR: "devm_kasprintf" [drivers/power/supply/bq27xxx_battery_i2c.ko] undefined!
ERROR: "idr_alloc" [drivers/power/supply/bq27xxx_battery_i2c.ko] undefined!
ERROR: "i2c_smbus_read_i2c_block_data" [drivers/power/supply/bq27xxx_battery_i2c.ko] undefined!
ERROR: "i2c_transfer" [drivers/power/supply/bq27xxx_battery_i2c.ko] undefined!
ERROR: "bq27xxx_battery_update" [drivers/power/supply/bq27xxx_battery_i2c.ko] undefined!
ERROR: "mutex_unlock" [drivers/power/supply/bq27xxx_battery_i2c.ko] undefined!
ERROR: "idr_remove" [drivers/power/supply/bq27xxx_battery_i2c.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/power/supply/bq27xxx_battery_i2c.ko] undefined!
ERROR: "bq27xxx_battery_teardown" [drivers/power/supply/bq27xxx_battery_i2c.ko] undefined!
ERROR: "i2c_del_driver" [drivers/power/supply/sbs-charger.ko] undefined!
ERROR: "i2c_register_driver" [drivers/power/supply/sbs-charger.ko] undefined!
ERROR: "_dev_info" [drivers/power/supply/sbs-charger.ko] undefined!
ERROR: "_dev_err" [drivers/power/supply/sbs-charger.ko] undefined!
ERROR: "queue_delayed_work_on" [drivers/power/supply/sbs-charger.ko] undefined!
ERROR: "system_wq" [drivers/power/supply/sbs-charger.ko] undefined!
ERROR: "init_timer_key" [drivers/power/supply/sbs-charger.ko] undefined!
ERROR: "delayed_work_timer_fn" [drivers/power/supply/sbs-charger.ko] undefined!
ERROR: "lockdep_init_map" [drivers/power/supply/sbs-charger.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/power/supply/sbs-charger.ko] undefined!
ERROR: "devm_power_supply_register" [drivers/power/supply/sbs-charger.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/power/supply/sbs-charger.ko] undefined!
ERROR: "devm_kmalloc" [drivers/power/supply/sbs-charger.ko] undefined!
ERROR: "power_supply_get_drvdata" [drivers/power/supply/sbs-charger.ko] undefined!
ERROR: "power_supply_changed" [drivers/power/supply/sbs-charger.ko] undefined!
ERROR: "regmap_read" [drivers/power/supply/sbs-charger.ko] undefined!
ERROR: "cancel_delayed_work_sync" [drivers/power/supply/sbs-charger.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/power/supply/ingenic-battery.ko] undefined!
ERROR: "__platform_driver_register" [drivers/power/supply/ingenic-battery.ko] undefined!
ERROR: "_dev_err" [drivers/power/supply/ingenic-battery.ko] undefined!
ERROR: "iio_write_channel_attribute" [drivers/power/supply/ingenic-battery.ko] undefined!
ERROR: "iio_read_avail_channel_attribute" [drivers/power/supply/ingenic-battery.ko] undefined!
ERROR: "iio_read_max_channel_raw" [drivers/power/supply/ingenic-battery.ko] undefined!
ERROR: "power_supply_get_battery_info" [drivers/power/supply/ingenic-battery.ko] undefined!
ERROR: "devm_power_supply_register" [drivers/power/supply/ingenic-battery.ko] undefined!
ERROR: "devm_iio_channel_get" [drivers/power/supply/ingenic-battery.ko] undefined!
ERROR: "devm_kmalloc" [drivers/power/supply/ingenic-battery.ko] undefined!
ERROR: "iio_read_channel_processed" [drivers/power/supply/ingenic-battery.ko] undefined!
ERROR: "power_supply_get_drvdata" [drivers/power/supply/ingenic-battery.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/power/supply/lego_ev3_battery.ko] undefined!
ERROR: "__platform_driver_register" [drivers/power/supply/lego_ev3_battery.ko] undefined!
ERROR: "_dev_err" [drivers/power/supply/lego_ev3_battery.ko] undefined!
ERROR: "devm_power_supply_register" [drivers/power/supply/lego_ev3_battery.ko] undefined!
ERROR: "gpiod_get_value" [drivers/power/supply/lego_ev3_battery.ko] undefined!
ERROR: "devm_gpiod_get" [drivers/power/supply/lego_ev3_battery.ko] undefined!
ERROR: "devm_iio_channel_get" [drivers/power/supply/lego_ev3_battery.ko] undefined!
ERROR: "devm_kmalloc" [drivers/power/supply/lego_ev3_battery.ko] undefined!
ERROR: "iio_read_channel_processed" [drivers/power/supply/lego_ev3_battery.ko] undefined!
ERROR: "power_supply_get_drvdata" [drivers/power/supply/lego_ev3_battery.ko] undefined!
ERROR: "i2c_del_driver" [drivers/power/supply/ltc2941-battery-gauge.ko] undefined!
ERROR: "i2c_register_driver" [drivers/power/supply/ltc2941-battery-gauge.ko] undefined!
ERROR: "_dev_warn" [drivers/power/supply/ltc2941-battery-gauge.ko] undefined!
ERROR: "power_supply_register" [drivers/power/supply/ltc2941-battery-gauge.ko] undefined!
ERROR: "init_timer_key" [drivers/power/supply/ltc2941-battery-gauge.ko] undefined!
ERROR: "delayed_work_timer_fn" [drivers/power/supply/ltc2941-battery-gauge.ko] undefined!
ERROR: "lockdep_init_map" [drivers/power/supply/ltc2941-battery-gauge.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/power/supply/ltc2941-battery-gauge.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/power/supply/ltc2941-battery-gauge.ko] undefined!
ERROR: "of_node_get" [drivers/power/supply/ltc2941-battery-gauge.ko] undefined!
ERROR: "devm_kmalloc" [drivers/power/supply/ltc2941-battery-gauge.ko] undefined!
ERROR: "power_supply_changed" [drivers/power/supply/ltc2941-battery-gauge.ko] undefined!
ERROR: "power_supply_get_drvdata" [drivers/power/supply/ltc2941-battery-gauge.ko] undefined!
ERROR: "power_supply_unregister" [drivers/power/supply/ltc2941-battery-gauge.ko] undefined!
ERROR: "cancel_delayed_work_sync" [drivers/power/supply/ltc2941-battery-gauge.ko] undefined!
ERROR: "i2c_smbus_write_i2c_block_data" [drivers/power/supply/ltc2941-battery-gauge.ko] undefined!
ERROR: "_dev_err" [drivers/power/supply/ltc2941-battery-gauge.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/power/supply/ltc2941-battery-gauge.ko] undefined!
ERROR: "i2c_transfer" [drivers/power/supply/ltc2941-battery-gauge.ko] undefined!
ERROR: "cancel_delayed_work" [drivers/power/supply/ltc2941-battery-gauge.ko] undefined!
ERROR: "queue_delayed_work_on" [drivers/power/supply/ltc2941-battery-gauge.ko] undefined!
ERROR: "system_wq" [drivers/power/supply/ltc2941-battery-gauge.ko] undefined!
ERROR: "i2c_del_driver" [drivers/power/supply/ds2782_battery.ko] undefined!
ERROR: "i2c_register_driver" [drivers/power/supply/ds2782_battery.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/power/supply/ds2782_battery.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/power/supply/ds2782_battery.ko] undefined!
ERROR: "i2c_smbus_read_word_data" [drivers/power/supply/ds2782_battery.ko] undefined!
ERROR: "power_supply_get_drvdata" [drivers/power/supply/ds2782_battery.ko] undefined!
ERROR: "_dev_err" [drivers/power/supply/ds2782_battery.ko] undefined!
ERROR: "power_supply_register" [drivers/power/supply/ds2782_battery.ko] undefined!
ERROR: "init_timer_key" [drivers/power/supply/ds2782_battery.ko] undefined!
ERROR: "delayed_work_timer_fn" [drivers/power/supply/ds2782_battery.ko] undefined!
ERROR: "lockdep_init_map" [drivers/power/supply/ds2782_battery.ko] undefined!
ERROR: "kasprintf" [drivers/power/supply/ds2782_battery.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/power/supply/ds2782_battery.ko] undefined!
ERROR: "kmalloc_caches" [drivers/power/supply/ds2782_battery.ko] undefined!
ERROR: "idr_alloc" [drivers/power/supply/ds2782_battery.ko] undefined!
ERROR: "power_supply_changed" [drivers/power/supply/ds2782_battery.ko] undefined!
ERROR: "mutex_unlock" [drivers/power/supply/ds2782_battery.ko] undefined!
ERROR: "idr_remove" [drivers/power/supply/ds2782_battery.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/power/supply/ds2782_battery.ko] undefined!
ERROR: "kfree" [drivers/power/supply/ds2782_battery.ko] undefined!
ERROR: "cancel_delayed_work_sync" [drivers/power/supply/ds2782_battery.ko] undefined!
ERROR: "power_supply_unregister" [drivers/power/supply/ds2782_battery.ko] undefined!
ERROR: "cancel_delayed_work" [drivers/power/supply/ds2782_battery.ko] undefined!
ERROR: "queue_delayed_work_on" [drivers/power/supply/ds2782_battery.ko] undefined!
ERROR: "system_wq" [drivers/power/supply/ds2782_battery.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/power/supply/ds2782_battery.ko] undefined!
ERROR: "param_ops_bool" [drivers/power/supply/ds2760_battery.ko] undefined!
ERROR: "param_ops_uint" [drivers/power/supply/ds2760_battery.ko] undefined!
ERROR: "w1_unregister_family" [drivers/power/supply/ds2760_battery.ko] undefined!
ERROR: "w1_register_family" [drivers/power/supply/ds2760_battery.ko] undefined!
ERROR: "_dev_err" [drivers/power/supply/ds2760_battery.ko] undefined!
ERROR: "register_pm_notifier" [drivers/power/supply/ds2760_battery.ko] undefined!
ERROR: "alloc_workqueue" [drivers/power/supply/ds2760_battery.ko] undefined!
ERROR: "init_timer_key" [drivers/power/supply/ds2760_battery.ko] undefined!
ERROR: "delayed_work_timer_fn" [drivers/power/supply/ds2760_battery.ko] undefined!
ERROR: "lockdep_init_map" [drivers/power/supply/ds2760_battery.ko] undefined!
ERROR: "power_supply_register" [drivers/power/supply/ds2760_battery.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/power/supply/ds2760_battery.ko] undefined!
ERROR: "of_find_property" [drivers/power/supply/ds2760_battery.ko] undefined!
ERROR: "snprintf" [drivers/power/supply/ds2760_battery.ko] undefined!
ERROR: "devm_kmalloc" [drivers/power/supply/ds2760_battery.ko] undefined!
ERROR: "_dev_notice" [drivers/power/supply/ds2760_battery.ko] undefined!
ERROR: "queue_delayed_work_on" [drivers/power/supply/ds2760_battery.ko] undefined!
ERROR: "power_supply_am_i_supplied" [drivers/power/supply/ds2760_battery.ko] undefined!
ERROR: "_dev_warn" [drivers/power/supply/ds2760_battery.ko] undefined!
ERROR: "__msecs_to_jiffies" [drivers/power/supply/ds2760_battery.ko] undefined!
ERROR: "jiffies" [drivers/power/supply/ds2760_battery.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/power/supply/ds2760_battery.ko] undefined!
ERROR: "power_supply_get_drvdata" [drivers/power/supply/ds2760_battery.ko] undefined!
ERROR: "mod_delayed_work_on" [drivers/power/supply/ds2760_battery.ko] undefined!
ERROR: "power_supply_changed" [drivers/power/supply/ds2760_battery.ko] undefined!
ERROR: "power_supply_unregister" [drivers/power/supply/ds2760_battery.ko] undefined!
ERROR: "destroy_workqueue" [drivers/power/supply/ds2760_battery.ko] undefined!
ERROR: "cancel_delayed_work_sync" [drivers/power/supply/ds2760_battery.ko] undefined!
ERROR: "unregister_pm_notifier" [drivers/power/supply/ds2760_battery.ko] undefined!
ERROR: "w1_write_block" [drivers/power/supply/ds2760_battery.ko] undefined!
ERROR: "mutex_unlock" [drivers/power/supply/ds2760_battery.ko] undefined!
ERROR: "w1_read_block" [drivers/power/supply/ds2760_battery.ko] undefined!
ERROR: "w1_write_8" [drivers/power/supply/ds2760_battery.ko] undefined!
ERROR: "w1_reset_select_slave" [drivers/power/supply/ds2760_battery.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/power/supply/ds2760_battery.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/power/supply/axp20x_battery.ko] undefined!
ERROR: "__platform_driver_register" [drivers/power/supply/axp20x_battery.ko] undefined!
ERROR: "_dev_err" [drivers/power/supply/axp20x_battery.ko] undefined!
ERROR: "power_supply_get_battery_info" [drivers/power/supply/axp20x_battery.ko] undefined!
ERROR: "devm_power_supply_register" [drivers/power/supply/axp20x_battery.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/power/supply/axp20x_battery.ko] undefined!
ERROR: "dev_get_regmap" [drivers/power/supply/axp20x_battery.ko] undefined!
ERROR: "devm_iio_channel_get" [drivers/power/supply/axp20x_battery.ko] undefined!
ERROR: "devm_kmalloc" [drivers/power/supply/axp20x_battery.ko] undefined!
ERROR: "of_device_is_available" [drivers/power/supply/axp20x_battery.ko] undefined!
ERROR: "iio_read_channel_processed" [drivers/power/supply/axp20x_battery.ko] undefined!
ERROR: "_dev_warn" [drivers/power/supply/axp20x_battery.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/power/supply/axp20x_battery.ko] undefined!
ERROR: "power_supply_get_drvdata" [drivers/power/supply/axp20x_battery.ko] undefined!
ERROR: "regmap_read" [drivers/power/supply/axp20x_battery.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/power/supply/axp20x_battery.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/power/supply/act8945a_charger.ko] undefined!
ERROR: "__platform_driver_register" [drivers/power/supply/act8945a_charger.ko] undefined!
ERROR: "_dev_info" [drivers/power/supply/act8945a_charger.ko] undefined!
ERROR: "_dev_err" [drivers/power/supply/act8945a_charger.ko] undefined!
ERROR: "lockdep_init_map" [drivers/power/supply/act8945a_charger.ko] undefined!
ERROR: "devm_power_supply_register" [drivers/power/supply/act8945a_charger.ko] undefined!
ERROR: "of_irq_get" [drivers/power/supply/act8945a_charger.ko] undefined!
ERROR: "regmap_write" [drivers/power/supply/act8945a_charger.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/power/supply/act8945a_charger.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/power/supply/act8945a_charger.ko] undefined!
ERROR: "gpiod_to_irq" [drivers/power/supply/act8945a_charger.ko] undefined!
ERROR: "devm_gpiod_get_optional" [drivers/power/supply/act8945a_charger.ko] undefined!
ERROR: "dev_get_regmap" [drivers/power/supply/act8945a_charger.ko] undefined!
ERROR: "devm_kmalloc" [drivers/power/supply/act8945a_charger.ko] undefined!
ERROR: "gpiod_get_value" [drivers/power/supply/act8945a_charger.ko] undefined!
ERROR: "power_supply_get_drvdata" [drivers/power/supply/act8945a_charger.ko] undefined!
ERROR: "power_supply_changed" [drivers/power/supply/act8945a_charger.ko] undefined!
ERROR: "regmap_read" [drivers/power/supply/act8945a_charger.ko] undefined!
ERROR: "queue_work_on" [drivers/power/supply/act8945a_charger.ko] undefined!
ERROR: "system_wq" [drivers/power/supply/act8945a_charger.ko] undefined!
ERROR: "cancel_work_sync" [drivers/power/supply/act8945a_charger.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/power/supply/wm8350_power.ko] undefined!
ERROR: "__platform_driver_register" [drivers/power/supply/wm8350_power.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/power/supply/wm8350_power.ko] undefined!
ERROR: "power_supply_changed" [drivers/power/supply/wm8350_power.ko] undefined!
ERROR: "wm8350_set_bits" [drivers/power/supply/wm8350_power.ko] undefined!
ERROR: "request_threaded_irq" [drivers/power/supply/wm8350_power.ko] undefined!
ERROR: "device_create_file" [drivers/power/supply/wm8350_power.ko] undefined!
ERROR: "power_supply_register" [drivers/power/supply/wm8350_power.ko] undefined!
ERROR: "_dev_warn" [drivers/power/supply/wm8350_power.ko] undefined!
ERROR: "_dev_err" [drivers/power/supply/wm8350_power.ko] undefined!
ERROR: "wm8350_reg_lock" [drivers/power/supply/wm8350_power.ko] undefined!
ERROR: "wm8350_reg_write" [drivers/power/supply/wm8350_power.ko] undefined!
ERROR: "wm8350_reg_unlock" [drivers/power/supply/wm8350_power.ko] undefined!
ERROR: "wm8350_read_auxadc" [drivers/power/supply/wm8350_power.ko] undefined!
ERROR: "power_supply_unregister" [drivers/power/supply/wm8350_power.ko] undefined!
ERROR: "device_remove_file" [drivers/power/supply/wm8350_power.ko] undefined!
ERROR: "free_irq" [drivers/power/supply/wm8350_power.ko] undefined!
ERROR: "sprintf" [drivers/power/supply/wm8350_power.ko] undefined!
ERROR: "wm8350_reg_read" [drivers/power/supply/wm8350_power.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/power/supply/pda_power.ko] undefined!
ERROR: "__platform_driver_register" [drivers/power/supply/pda_power.ko] undefined!
ERROR: "_dev_err" [drivers/power/supply/pda_power.ko] undefined!
ERROR: "atomic_notifier_chain_register" [drivers/power/supply/pda_power.ko] undefined!
ERROR: "device_init_wakeup" [drivers/power/supply/pda_power.ko] undefined!
ERROR: "queue_delayed_work_on" [drivers/power/supply/pda_power.ko] undefined!
ERROR: "system_wq" [drivers/power/supply/pda_power.ko] undefined!
ERROR: "__msecs_to_jiffies" [drivers/power/supply/pda_power.ko] undefined!
ERROR: "cancel_delayed_work" [drivers/power/supply/pda_power.ko] undefined!
ERROR: "request_threaded_irq" [drivers/power/supply/pda_power.ko] undefined!
ERROR: "power_supply_register" [drivers/power/supply/pda_power.ko] undefined!
ERROR: "usb_get_phy" [drivers/power/supply/pda_power.ko] undefined!
ERROR: "platform_get_resource_byname" [drivers/power/supply/pda_power.ko] undefined!
ERROR: "init_timer_key" [drivers/power/supply/pda_power.ko] undefined!
ERROR: "delayed_work_timer_fn" [drivers/power/supply/pda_power.ko] undefined!
ERROR: "lockdep_init_map" [drivers/power/supply/pda_power.ko] undefined!
ERROR: "regulator_get" [drivers/power/supply/pda_power.ko] undefined!
ERROR: "regulator_enable" [drivers/power/supply/pda_power.ko] undefined!
ERROR: "regulator_set_current_limit" [drivers/power/supply/pda_power.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/power/supply/pda_power.ko] undefined!
ERROR: "regulator_disable" [drivers/power/supply/pda_power.ko] undefined!
ERROR: "power_supply_changed" [drivers/power/supply/pda_power.ko] undefined!
ERROR: "atomic_notifier_chain_unregister" [drivers/power/supply/pda_power.ko] undefined!
ERROR: "regulator_put" [drivers/power/supply/pda_power.ko] undefined!
ERROR: "usb_put_phy" [drivers/power/supply/pda_power.ko] undefined!
ERROR: "power_supply_unregister" [drivers/power/supply/pda_power.ko] undefined!
ERROR: "cancel_delayed_work_sync" [drivers/power/supply/pda_power.ko] undefined!
ERROR: "free_irq" [drivers/power/supply/pda_power.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/power/supply/pda_power.ko] undefined!
ERROR: "irq_set_irq_wake" [drivers/power/supply/pda_power.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/power/supply/pda_power.ko] undefined!
ERROR: "__x86_indirect_thunk_eax" [drivers/power/supply/pda_power.ko] undefined!
ERROR: "param_ops_int" [drivers/w1/slaves/w1_ds28e17.ko] undefined!
ERROR: "param_ops_byte" [drivers/w1/slaves/w1_ds28e17.ko] undefined!
ERROR: "w1_unregister_family" [drivers/w1/slaves/w1_ds28e17.ko] undefined!
ERROR: "w1_register_family" [drivers/w1/slaves/w1_ds28e17.ko] undefined!
ERROR: "i2c_add_adapter" [drivers/w1/slaves/w1_ds28e17.ko] undefined!
ERROR: "strcat" [drivers/w1/slaves/w1_ds28e17.ko] undefined!
ERROR: "strcpy" [drivers/w1/slaves/w1_ds28e17.ko] undefined!
ERROR: "devm_kmalloc" [drivers/w1/slaves/w1_ds28e17.ko] undefined!
ERROR: "w1_reset_resume_command" [drivers/w1/slaves/w1_ds28e17.ko] undefined!
ERROR: "w1_read_block" [drivers/w1/slaves/w1_ds28e17.ko] undefined!
ERROR: "crc16" [drivers/w1/slaves/w1_ds28e17.ko] undefined!
ERROR: "_dev_warn" [drivers/w1/slaves/w1_ds28e17.ko] undefined!
ERROR: "__udelay" [drivers/w1/slaves/w1_ds28e17.ko] undefined!
ERROR: "usleep_range" [drivers/w1/slaves/w1_ds28e17.ko] undefined!
ERROR: "w1_touch_bit" [drivers/w1/slaves/w1_ds28e17.ko] undefined!
ERROR: "devm_kfree" [drivers/w1/slaves/w1_ds28e17.ko] undefined!
ERROR: "i2c_del_adapter" [drivers/w1/slaves/w1_ds28e17.ko] undefined!
ERROR: "w1_read_8" [drivers/w1/slaves/w1_ds28e17.ko] undefined!
ERROR: "w1_write_8" [drivers/w1/slaves/w1_ds28e17.ko] undefined!
ERROR: "mutex_unlock" [drivers/w1/slaves/w1_ds28e17.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/w1/slaves/w1_ds28e17.ko] undefined!
ERROR: "_dev_info" [drivers/w1/slaves/w1_ds28e17.ko] undefined!
ERROR: "w1_write_block" [drivers/w1/slaves/w1_ds28e17.ko] undefined!
ERROR: "w1_reset_select_slave" [drivers/w1/slaves/w1_ds28e17.ko] undefined!
ERROR: "sprintf" [drivers/w1/slaves/w1_ds28e17.ko] undefined!
ERROR: "w1_unregister_family" [drivers/w1/slaves/w1_ds250x.ko] undefined!
ERROR: "w1_register_family" [drivers/w1/slaves/w1_ds250x.ko] undefined!
ERROR: "devm_nvmem_register" [drivers/w1/slaves/w1_ds250x.ko] undefined!
ERROR: "snprintf" [drivers/w1/slaves/w1_ds250x.ko] undefined!
ERROR: "devm_kmalloc" [drivers/w1/slaves/w1_ds250x.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/w1/slaves/w1_ds250x.ko] undefined!
ERROR: "w1_calc_crc8" [drivers/w1/slaves/w1_ds250x.ko] undefined!
ERROR: "w1_read_8" [drivers/w1/slaves/w1_ds250x.ko] undefined!
ERROR: "mutex_unlock" [drivers/w1/slaves/w1_ds250x.ko] undefined!
ERROR: "crc16" [drivers/w1/slaves/w1_ds250x.ko] undefined!
ERROR: "w1_read_block" [drivers/w1/slaves/w1_ds250x.ko] undefined!
ERROR: "w1_write_block" [drivers/w1/slaves/w1_ds250x.ko] undefined!
ERROR: "w1_reset_select_slave" [drivers/w1/slaves/w1_ds250x.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/w1/slaves/w1_ds250x.ko] undefined!
ERROR: "w1_unregister_family" [drivers/w1/slaves/w1_ds2433.ko] undefined!
ERROR: "w1_register_family" [drivers/w1/slaves/w1_ds2433.ko] undefined!
ERROR: "w1_reset_bus" [drivers/w1/slaves/w1_ds2433.ko] undefined!
ERROR: "msleep" [drivers/w1/slaves/w1_ds2433.ko] undefined!
ERROR: "memcmp" [drivers/w1/slaves/w1_ds2433.ko] undefined!
ERROR: "w1_write_8" [drivers/w1/slaves/w1_ds2433.ko] undefined!
ERROR: "w1_read_block" [drivers/w1/slaves/w1_ds2433.ko] undefined!
ERROR: "w1_write_block" [drivers/w1/slaves/w1_ds2433.ko] undefined!
ERROR: "mutex_unlock" [drivers/w1/slaves/w1_ds2433.ko] undefined!
ERROR: "w1_reset_select_slave" [drivers/w1/slaves/w1_ds2433.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/w1/slaves/w1_ds2433.ko] undefined!
ERROR: "w1_unregister_family" [drivers/w1/slaves/w1_ds2805.ko] undefined!
ERROR: "w1_register_family" [drivers/w1/slaves/w1_ds2805.ko] undefined!
ERROR: "printk" [drivers/w1/slaves/w1_ds2805.ko] undefined!
ERROR: "w1_read_8" [drivers/w1/slaves/w1_ds2805.ko] undefined!
ERROR: "msleep" [drivers/w1/slaves/w1_ds2805.ko] undefined!
ERROR: "w1_write_8" [drivers/w1/slaves/w1_ds2805.ko] undefined!
ERROR: "sysfs_create_bin_file" [drivers/w1/slaves/w1_ds2805.ko] undefined!
ERROR: "mutex_unlock" [drivers/w1/slaves/w1_ds2805.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/w1/slaves/w1_ds2805.ko] undefined!
ERROR: "_dev_err" [drivers/w1/slaves/w1_ds2805.ko] undefined!
ERROR: "memcmp" [drivers/w1/slaves/w1_ds2805.ko] undefined!
ERROR: "w1_reset_select_slave" [drivers/w1/slaves/w1_ds2805.ko] undefined!
ERROR: "w1_read_block" [drivers/w1/slaves/w1_ds2805.ko] undefined!
ERROR: "w1_write_block" [drivers/w1/slaves/w1_ds2805.ko] undefined!
ERROR: "sysfs_remove_bin_file" [drivers/w1/slaves/w1_ds2805.ko] undefined!
ERROR: "w1_unregister_family" [drivers/w1/slaves/w1_ds2430.ko] undefined!
ERROR: "w1_register_family" [drivers/w1/slaves/w1_ds2430.ko] undefined!
ERROR: "w1_reset_bus" [drivers/w1/slaves/w1_ds2430.ko] undefined!
ERROR: "msleep" [drivers/w1/slaves/w1_ds2430.ko] undefined!
ERROR: "w1_write_8" [drivers/w1/slaves/w1_ds2430.ko] undefined!
ERROR: "mutex_unlock" [drivers/w1/slaves/w1_ds2430.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/w1/slaves/w1_ds2430.ko] undefined!
ERROR: "_dev_err" [drivers/w1/slaves/w1_ds2430.ko] undefined!
ERROR: "memcmp" [drivers/w1/slaves/w1_ds2430.ko] undefined!
ERROR: "w1_reset_select_slave" [drivers/w1/slaves/w1_ds2430.ko] undefined!
ERROR: "w1_read_block" [drivers/w1/slaves/w1_ds2430.ko] undefined!
ERROR: "w1_write_block" [drivers/w1/slaves/w1_ds2430.ko] undefined!
ERROR: "w1_unregister_family" [drivers/w1/slaves/w1_ds2406.ko] undefined!
ERROR: "w1_register_family" [drivers/w1/slaves/w1_ds2406.ko] undefined!
ERROR: "sysfs_create_bin_file" [drivers/w1/slaves/w1_ds2406.ko] undefined!
ERROR: "w1_write_8" [drivers/w1/slaves/w1_ds2406.ko] undefined!
ERROR: "mutex_unlock" [drivers/w1/slaves/w1_ds2406.ko] undefined!
ERROR: "crc16_table" [drivers/w1/slaves/w1_ds2406.ko] undefined!
ERROR: "w1_read_block" [drivers/w1/slaves/w1_ds2406.ko] undefined!
ERROR: "w1_write_block" [drivers/w1/slaves/w1_ds2406.ko] undefined!
ERROR: "w1_reset_select_slave" [drivers/w1/slaves/w1_ds2406.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/w1/slaves/w1_ds2406.ko] undefined!
ERROR: "sysfs_remove_bin_file" [drivers/w1/slaves/w1_ds2406.ko] undefined!
ERROR: "w1_unregister_family" [drivers/w1/slaves/w1_smem.ko] undefined!
ERROR: "w1_register_family" [drivers/w1/slaves/w1_smem.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/w1/masters/w1-gpio.ko] undefined!
ERROR: "__platform_driver_register" [drivers/w1/masters/w1-gpio.ko] undefined!
ERROR: "_dev_err" [drivers/w1/masters/w1-gpio.ko] undefined!
ERROR: "w1_add_master_device" [drivers/w1/masters/w1-gpio.ko] undefined!
ERROR: "gpiod_direction_output" [drivers/w1/masters/w1-gpio.ko] undefined!
ERROR: "devm_gpiod_get_index_optional" [drivers/w1/masters/w1-gpio.ko] undefined!
ERROR: "devm_gpiod_get_index" [drivers/w1/masters/w1-gpio.ko] undefined!
ERROR: "of_get_property" [drivers/w1/masters/w1-gpio.ko] undefined!
ERROR: "devm_kmalloc" [drivers/w1/masters/w1-gpio.ko] undefined!
ERROR: "of_root" [drivers/w1/masters/w1-gpio.ko] undefined!
ERROR: "gpiod_get_value" [drivers/w1/masters/w1-gpio.ko] undefined!
ERROR: "msleep" [drivers/w1/masters/w1-gpio.ko] undefined!
ERROR: "gpiod_set_raw_value" [drivers/w1/masters/w1-gpio.ko] undefined!
ERROR: "w1_remove_master_device" [drivers/w1/masters/w1-gpio.ko] undefined!
ERROR: "gpiod_set_value" [drivers/w1/masters/w1-gpio.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/w1/masters/w1-gpio.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/w1/masters/matrox_w1.ko] undefined!
ERROR: "__pci_register_driver" [drivers/w1/masters/matrox_w1.ko] undefined!
ERROR: "_dev_err" [drivers/w1/masters/matrox_w1.ko] undefined!
ERROR: "_dev_info" [drivers/w1/masters/matrox_w1.ko] undefined!
ERROR: "w1_add_master_device" [drivers/w1/masters/matrox_w1.ko] undefined!
ERROR: "ioremap" [drivers/w1/masters/matrox_w1.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/w1/masters/matrox_w1.ko] undefined!
ERROR: "kmalloc_caches" [drivers/w1/masters/matrox_w1.ko] undefined!
ERROR: "iounmap" [drivers/w1/masters/matrox_w1.ko] undefined!
ERROR: "w1_remove_master_device" [drivers/w1/masters/matrox_w1.ko] undefined!
ERROR: "kfree" [drivers/w1/masters/matrox_w1.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/pps/clients/pps-gpio.ko] undefined!
ERROR: "__platform_driver_register" [drivers/pps/clients/pps-gpio.ko] undefined!
ERROR: "of_find_property" [drivers/pps/clients/pps-gpio.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/pps/clients/pps-gpio.ko] undefined!
ERROR: "devm_gpiod_get_optional" [drivers/pps/clients/pps-gpio.ko] undefined!
ERROR: "devm_gpiod_get" [drivers/pps/clients/pps-gpio.ko] undefined!
ERROR: "_dev_err" [drivers/pps/clients/pps-gpio.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/pps/clients/pps-gpio.ko] undefined!
ERROR: "pps_register_source" [drivers/pps/clients/pps-gpio.ko] undefined!
ERROR: "init_timer_key" [drivers/pps/clients/pps-gpio.ko] undefined!
ERROR: "__msecs_to_jiffies" [drivers/pps/clients/pps-gpio.ko] undefined!
ERROR: "snprintf" [drivers/pps/clients/pps-gpio.ko] undefined!
ERROR: "gpiod_to_irq" [drivers/pps/clients/pps-gpio.ko] undefined!
ERROR: "devm_kmalloc" [drivers/pps/clients/pps-gpio.ko] undefined!
ERROR: "add_timer" [drivers/pps/clients/pps-gpio.ko] undefined!
ERROR: "jiffies" [drivers/pps/clients/pps-gpio.ko] undefined!
ERROR: "pps_event" [drivers/pps/clients/pps-gpio.ko] undefined!
ERROR: "gpiod_get_value" [drivers/pps/clients/pps-gpio.ko] undefined!
ERROR: "ns_to_timespec64" [drivers/pps/clients/pps-gpio.ko] undefined!
ERROR: "ktime_get_snapshot" [drivers/pps/clients/pps-gpio.ko] undefined!
ERROR: "_dev_info" [drivers/pps/clients/pps-gpio.ko] undefined!
ERROR: "del_timer" [drivers/pps/clients/pps-gpio.ko] undefined!
ERROR: "pps_unregister_source" [drivers/pps/clients/pps-gpio.ko] undefined!
ERROR: "gpiod_set_value" [drivers/pps/clients/pps-gpio.ko] undefined!
ERROR: "param_ops_uint" [drivers/pps/clients/pps_parport.ko] undefined!
ERROR: "parport_unregister_driver" [drivers/pps/clients/pps_parport.ko] undefined!
ERROR: "__parport_register_driver" [drivers/pps/clients/pps_parport.ko] undefined!
ERROR: "_dev_err" [drivers/pps/clients/pps_parport.ko] undefined!
ERROR: "trace_hardirqs_on" [drivers/pps/clients/pps_parport.ko] undefined!
ERROR: "trace_hardirqs_off" [drivers/pps/clients/pps_parport.ko] undefined!
ERROR: "pps_event" [drivers/pps/clients/pps_parport.ko] undefined!
ERROR: "ns_to_timespec64" [drivers/pps/clients/pps_parport.ko] undefined!
ERROR: "ktime_get_snapshot" [drivers/pps/clients/pps_parport.ko] undefined!
ERROR: "pps_unregister_source" [drivers/pps/clients/pps_parport.ko] undefined!
ERROR: "strcmp" [drivers/pps/clients/pps_parport.ko] undefined!
ERROR: "kfree" [drivers/pps/clients/pps_parport.ko] undefined!
ERROR: "ida_free" [drivers/pps/clients/pps_parport.ko] undefined!
ERROR: "parport_unregister_device" [drivers/pps/clients/pps_parport.ko] undefined!
ERROR: "parport_release" [drivers/pps/clients/pps_parport.ko] undefined!
ERROR: "printk" [drivers/pps/clients/pps_parport.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/pps/clients/pps_parport.ko] undefined!
ERROR: "pps_register_source" [drivers/pps/clients/pps_parport.ko] undefined!
ERROR: "parport_claim_or_block" [drivers/pps/clients/pps_parport.ko] undefined!
ERROR: "parport_register_dev_model" [drivers/pps/clients/pps_parport.ko] undefined!
ERROR: "ida_alloc_range" [drivers/pps/clients/pps_parport.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/pps/clients/pps_parport.ko] undefined!
ERROR: "kmalloc_caches" [drivers/pps/clients/pps_parport.ko] undefined!
ERROR: "tty_unregister_ldisc" [drivers/pps/clients/pps-ldisc.ko] undefined!
ERROR: "tty_register_ldisc" [drivers/pps/clients/pps-ldisc.ko] undefined!
ERROR: "n_tty_inherit_ops" [drivers/pps/clients/pps-ldisc.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/pps/clients/pps-ldisc.ko] undefined!
ERROR: "jiffies" [drivers/pps/clients/pps-ldisc.ko] undefined!
ERROR: "pps_event" [drivers/pps/clients/pps-ldisc.ko] undefined!
ERROR: "ns_to_timespec64" [drivers/pps/clients/pps-ldisc.ko] undefined!
ERROR: "ktime_get_snapshot" [drivers/pps/clients/pps-ldisc.ko] undefined!
ERROR: "printk" [drivers/pps/clients/pps-ldisc.ko] undefined!
ERROR: "pps_register_source" [drivers/pps/clients/pps-ldisc.ko] undefined!
ERROR: "snprintf" [drivers/pps/clients/pps-ldisc.ko] undefined!
ERROR: "pps_unregister_source" [drivers/pps/clients/pps-ldisc.ko] undefined!
ERROR: "_dev_info" [drivers/pps/clients/pps-ldisc.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/pps/clients/pps-ldisc.ko] undefined!
ERROR: "pps_lookup_dev" [drivers/pps/clients/pps-ldisc.ko] undefined!
ERROR: "init_timer_key" [drivers/pps/clients/pps-ktimer.ko] undefined!
ERROR: "printk" [drivers/pps/clients/pps-ktimer.ko] undefined!
ERROR: "pps_register_source" [drivers/pps/clients/pps-ktimer.ko] undefined!
ERROR: "pps_unregister_source" [drivers/pps/clients/pps-ktimer.ko] undefined!
ERROR: "del_timer" [drivers/pps/clients/pps-ktimer.ko] undefined!
ERROR: "_dev_info" [drivers/pps/clients/pps-ktimer.ko] undefined!
ERROR: "mod_timer" [drivers/pps/clients/pps-ktimer.ko] undefined!
ERROR: "jiffies" [drivers/pps/clients/pps-ktimer.ko] undefined!
ERROR: "pps_event" [drivers/pps/clients/pps-ktimer.ko] undefined!
ERROR: "ns_to_timespec64" [drivers/pps/clients/pps-ktimer.ko] undefined!
ERROR: "ktime_get_snapshot" [drivers/pps/clients/pps-ktimer.ko] undefined!
ERROR: "system_wq" [drivers/media/usb/em28xx/em28xx-rc.ko] undefined!
ERROR: "em28xx_read_reg" [drivers/media/usb/em28xx/em28xx-rc.ko] undefined!
ERROR: "kmalloc_caches" [drivers/media/usb/em28xx/em28xx-rc.ko] undefined!
ERROR: "rc_unregister_device" [drivers/media/usb/em28xx/em28xx-rc.ko] undefined!
ERROR: "param_ops_int" [drivers/media/usb/em28xx/em28xx-rc.ko] undefined!
ERROR: "em28xx_free_device" [drivers/media/usb/em28xx/em28xx-rc.ko] undefined!
ERROR: "em28xx_write_regs" [drivers/media/usb/em28xx/em28xx-rc.ko] undefined!
ERROR: "dev_printk" [drivers/media/usb/em28xx/em28xx-rc.ko] undefined!
ERROR: "i2c_transfer" [drivers/media/usb/em28xx/em28xx-rc.ko] undefined!
ERROR: "delayed_work_timer_fn" [drivers/media/usb/em28xx/em28xx-rc.ko] undefined!
ERROR: "__warn_printk" [drivers/media/usb/em28xx/em28xx-rc.ko] undefined!
ERROR: "init_timer_key" [drivers/media/usb/em28xx/em28xx-rc.ko] undefined!
ERROR: "cancel_delayed_work_sync" [drivers/media/usb/em28xx/em28xx-rc.ko] undefined!
ERROR: "em28xx_register_extension" [drivers/media/usb/em28xx/em28xx-rc.ko] undefined!
ERROR: "rc_allocate_device" [drivers/media/usb/em28xx/em28xx-rc.ko] undefined!
ERROR: "input_event" [drivers/media/usb/em28xx/em28xx-rc.ko] undefined!
ERROR: "strlcat" [drivers/media/usb/em28xx/em28xx-rc.ko] undefined!
ERROR: "em28xx_find_led" [drivers/media/usb/em28xx/em28xx-rc.ko] undefined!
ERROR: "_dev_warn" [drivers/media/usb/em28xx/em28xx-rc.ko] undefined!
ERROR: "rc_free_device" [drivers/media/usb/em28xx/em28xx-rc.ko] undefined!
ERROR: "em28xx_toggle_reg_bits" [drivers/media/usb/em28xx/em28xx-rc.ko] undefined!
ERROR: "rc_keydown" [drivers/media/usb/em28xx/em28xx-rc.ko] undefined!
ERROR: "em28xx_unregister_extension" [drivers/media/usb/em28xx/em28xx-rc.ko] undefined!
ERROR: "rc_register_device" [drivers/media/usb/em28xx/em28xx-rc.ko] undefined!
ERROR: "em28xx_write_reg_bits" [drivers/media/usb/em28xx/em28xx-rc.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/media/usb/em28xx/em28xx-rc.ko] undefined!
ERROR: "_dev_err" [drivers/media/usb/em28xx/em28xx-rc.ko] undefined!
ERROR: "byte_rev_table" [drivers/media/usb/em28xx/em28xx-rc.ko] undefined!
ERROR: "_dev_info" [drivers/media/usb/em28xx/em28xx-rc.ko] undefined!
ERROR: "queue_delayed_work_on" [drivers/media/usb/em28xx/em28xx-rc.ko] undefined!
ERROR: "refcount_warn_saturate" [drivers/media/usb/em28xx/em28xx-rc.ko] undefined!
ERROR: "input_register_device" [drivers/media/usb/em28xx/em28xx-rc.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/media/usb/em28xx/em28xx-rc.ko] undefined!
ERROR: "input_free_device" [drivers/media/usb/em28xx/em28xx-rc.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/media/usb/em28xx/em28xx-rc.ko] undefined!
ERROR: "i2c_transfer_buffer_flags" [drivers/media/usb/em28xx/em28xx-rc.ko] undefined!
ERROR: "kfree" [drivers/media/usb/em28xx/em28xx-rc.ko] undefined!
ERROR: "input_unregister_device" [drivers/media/usb/em28xx/em28xx-rc.ko] undefined!
ERROR: "lockdep_init_map" [drivers/media/usb/em28xx/em28xx-rc.ko] undefined!
ERROR: "i2c_probe_func_quick_read" [drivers/media/usb/em28xx/em28xx-rc.ko] undefined!
ERROR: "snprintf" [drivers/media/usb/em28xx/em28xx-rc.ko] undefined!
ERROR: "em28xx_write_reg" [drivers/media/usb/em28xx/em28xx-rc.ko] undefined!
ERROR: "__msecs_to_jiffies" [drivers/media/usb/em28xx/em28xx-rc.ko] undefined!
ERROR: "em28xx_boards" [drivers/media/usb/em28xx/em28xx-rc.ko] undefined!
ERROR: "input_allocate_device" [drivers/media/usb/em28xx/em28xx-rc.ko] undefined!
ERROR: "vb2_ioctl_reqbufs" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "em28xx_read_reg" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "kmalloc_caches" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "v4l2_event_unsubscribe" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "video_device_release_empty" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "param_ops_int" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "v4l2_i2c_new_subdev" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "em28xx_free_device" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "v4l2_video_std_frame_period" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "em28xx_write_regs" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "v4l2_ctrl_notify" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "em28xx_setup_xc3028" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "dev_printk" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "v4l2_device_unregister" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "v4l2_ctrl_handler_free" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "em28xx_tuner_callback" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "v4l2_i2c_tuner_addrs" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "v4l2_ctrl_new_std" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "vb2_fop_poll" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "vb2_ioctl_streamon" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "ktime_get" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "vb2_ops_wait_prepare" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "em28xx_init_usb_xfer" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "__video_register_device" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "mutex_unlock" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "em28xx_register_extension" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "strscpy" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "v4l2_device_register" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "vb2_fop_read" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "v4l2_device_disconnect" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "vb2_vmalloc_memops" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "vb2_fop_mmap" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "vb2_ioctl_qbuf" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "__mutex_init" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "video_unregister_device" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "usb_set_interface" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "v4l2_ctrl_subscribe_event" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "vb2_plane_vaddr" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "vb2_buffer_done" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "em28xx_unregister_extension" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "vb2_ioctl_prepare_buf" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "em28xx_uninit_usb_xfer" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "vb2_ioctl_create_bufs" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "_dev_err" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "vb2_ioctl_dqbuf" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "__list_add_valid" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "v4l2_type_names" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "_dev_info" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "v4l2_ctrl_find" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "v4l_bound_align_image" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "usleep_range" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "vb2_fop_release" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "video_devdata" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "refcount_warn_saturate" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "em28xx_audio_setup" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "v4l2_ctrl_handler_setup" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "v4l2_i2c_subdev_addr" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "v4l2_fh_open" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "em28xx_set_mode" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "vb2_ioctl_querybuf" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "kfree" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "param_array_ops" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "v4l2_ctrl_handler_init_class" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "vb2_ops_wait_finish" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "mutex_lock_interruptible_nested" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "em28xx_stop_urbs" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "snprintf" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "em28xx_write_reg" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "em28xx_audio_analog_set" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "vb2_ioctl_streamoff" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "video_ioctl2" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "em28xx_boards" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "em28xx_init_camera" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "vb2_queue_init" [drivers/media/usb/em28xx/em28xx-v4l.ko] undefined!
ERROR: "flush_work" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "system_wq" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "__request_module" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "kmalloc_caches" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "__kmalloc" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "msleep" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "param_ops_int" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "v4l2_subdev_call_wrappers" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "tveeprom_hauppauge_analog" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "dev_printk" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "__rt_mutex_init" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "__warn_printk" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "usb_kill_urb" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "kmemdup" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "__const_udelay" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "mutex_unlock" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "strscpy" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "usb_unlink_urb" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "jiffies" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "i2c_add_adapter" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "i2c_smbus_read_word_data" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "_dev_warn" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "usb_deregister" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "__mutex_init" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "printk" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "usb_control_msg" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "rt_mutex_trylock" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "rt_mutex_unlock" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "_dev_err" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "__list_add_valid" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "find_first_zero_bit" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "print_hex_dump" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "i2c_del_adapter" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "_dev_info" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "usb_submit_urb" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "usb_get_dev" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "usleep_range" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "refcount_warn_saturate" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "usb_put_dev" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "usb_clear_halt" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "i2c_transfer_buffer_flags" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "kfree" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "param_array_ops" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "usb_register_driver" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "lockdep_init_map" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "v4l2_i2c_new_subdev_board" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "queue_work_on" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "snprintf" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "__msecs_to_jiffies" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "usb_free_urb" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "usb_alloc_urb" [drivers/media/usb/em28xx/em28xx.ko] undefined!
ERROR: "vb2_ioctl_reqbufs" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "flush_work" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "system_wq" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "__request_module" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "kmalloc_caches" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "v4l2_event_unsubscribe" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "__kmalloc" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "msleep" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "_vb2_fop_release" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "i2c_mux_add_adapter" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "video_device_release_empty" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "vmalloc" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "param_ops_int" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "v4l2_i2c_new_subdev" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "v4l2_ctrl_log_status" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "v4l2_subdev_call_wrappers" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "tveeprom_hauppauge_analog" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "i2c_mux_del_adapters" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "usb_reset_endpoint" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "v4l2_device_unregister" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "i2c_transfer" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "v4l2_ctrl_handler_free" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "cx2341x_handler_set_50hz" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "cx2341x_handler_init" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "vb2_fop_poll" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "vb2_ioctl_streamon" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "ktime_get" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "usb_kill_urb" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "vb2_ops_wait_prepare" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "__const_udelay" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "__video_register_device" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "mutex_unlock" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "vfree" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "__preempt_count" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "strscpy" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "usb_unlink_urb" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "rc_allocate_device" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "jiffies" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "i2c_add_adapter" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "v4l2_device_register" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "vb2_fop_read" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "_dev_warn" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "vb2_vmalloc_memops" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "i2c_mux_alloc" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "v4l2_s_ctrl" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "vb2_fop_mmap" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "vb2_ioctl_qbuf" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "usb_deregister" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "__mutex_init" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "printk" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "video_unregister_device" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "usb_set_interface" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "v4l2_ctrl_subscribe_event" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "vb2_plane_vaddr" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "vb2_buffer_done" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "usb_control_msg" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "usb_free_coherent" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "i2c_unregister_device" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "_dev_err" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "byte_rev_table" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "vb2_ioctl_dqbuf" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "__list_add_valid" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "find_first_zero_bit" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "i2c_del_adapter" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "_dev_info" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "usb_submit_urb" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "v4l_bound_align_image" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "usb_get_dev" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "cx2341x_handler_setup" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "vb2_fop_release" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "video_devdata" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "usb_bulk_msg" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "usb_put_dev" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "usb_clear_halt" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "v4l2_fh_open" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "__wake_up" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "i2c_transfer_buffer_flags" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "vb2_ioctl_querybuf" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "kfree" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "param_array_ops" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "v4l2_ctrl_handler_init_class" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "usb_register_driver" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "lockdep_init_map" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "vb2_ops_wait_finish" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "request_firmware" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "mutex_lock_interruptible_nested" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "v4l2_ctrl_add_handler" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "queue_work_on" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "snprintf" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "usb_alloc_coherent" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "v4l2_ctrl_radio_filter" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "vb2_ioctl_streamoff" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "devm_kmalloc" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "i2c_new_device" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "usb_free_urb" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "release_firmware" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "video_ioctl2" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "v4l2_ctrl_poll" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "usb_alloc_urb" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "vb2_queue_init" [drivers/media/usb/cx231xx/cx231xx.ko] undefined!
ERROR: "vb2_ioctl_reqbufs" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "kmalloc_caches" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "v4l2_event_unsubscribe" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "__kmalloc" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "video_device_release_empty" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "mutex_destroy" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "param_ops_int" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "v4l2_i2c_new_subdev" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "v4l2_ctrl_log_status" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "v4l2_device_unregister" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "v4l2_ctrl_handler_free" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "vb2_fop_poll" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "vb2_ioctl_streamon" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "ktime_get" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "usb_kill_urb" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "vb2_ops_wait_prepare" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "__video_register_device" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "param_ops_bool" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "mutex_unlock" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "strscpy" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "sprintf" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "jiffies" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "i2c_add_adapter" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "v4l2_device_register" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "vb2_fop_read" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "v4l2_device_disconnect" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "_dev_warn" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "vb2_vmalloc_memops" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "vb2_fop_mmap" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "vb2_ioctl_qbuf" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "usb_deregister" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "__mutex_init" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "printk" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "video_unregister_device" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "usb_set_interface" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "v4l2_ctrl_subscribe_event" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "vb2_plane_vaddr" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "vb2_buffer_done" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "usb_control_msg" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "usb_free_coherent" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "_dev_err" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "vb2_ioctl_dqbuf" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "__list_add_valid" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "i2c_del_adapter" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "_dev_info" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "usb_submit_urb" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "usleep_range" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "vb2_fop_release" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "video_devdata" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "___ratelimit" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "v4l2_fh_open" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "vb2_ioctl_querybuf" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "kfree" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "v4l2_ctrl_handler_init_class" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "usb_register_driver" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "vb2_ops_wait_finish" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "mutex_lock_interruptible_nested" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "snprintf" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "vb2_ioctl_expbuf" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "usb_alloc_coherent" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "vb2_ioctl_streamoff" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "v4l2_device_put" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "usb_free_urb" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "video_ioctl2" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "usb_alloc_urb" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "vb2_queue_init" [drivers/media/usb/stk1160/stk1160.ko] undefined!
ERROR: "device_remove_file" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "kmalloc_caches" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "v4l2_event_unsubscribe" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "__kmalloc" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "video_device_release_empty" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "param_ops_int" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "v4l2_i2c_new_subdev" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "v4l2_ctrl_log_status" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "v4l2_device_unregister" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "v4l2_ctrl_handler_free" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "v4l2_ctrl_g_ctrl" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "v4l2_i2c_tuner_addrs" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "ktime_get" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "usb_kill_urb" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "__const_udelay" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "__video_register_device" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "mutex_unlock" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "vfree" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "strscpy" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "sprintf" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "__might_sleep" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "i2c_add_adapter" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "v4l2_device_register" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "_copy_to_user" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "v4l2_device_disconnect" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "ns_to_timespec64" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "usb_deregister" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "__mutex_init" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "printk" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "video_unregister_device" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "usb_set_interface" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "v4l2_ctrl_subscribe_event" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "usb_control_msg" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "v4l2_fh_release" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "usb_free_coherent" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "_dev_err" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "__list_add_valid" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "init_wait_entry" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "vm_insert_page" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "device_create_file" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "i2c_del_adapter" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "usb_submit_urb" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "v4l2_ctrl_find" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "usb_get_dev" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "video_devdata" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "usb_put_dev" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "schedule_timeout" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "schedule" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "vmalloc_32" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "v4l2_i2c_subdev_addr" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "v4l2_fh_open" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "__wake_up" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "kfree" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "v4l2_ctrl_handler_init_class" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "usb_register_driver" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "finish_wait" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "mutex_lock_interruptible_nested" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "snprintf" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "vmalloc_to_page" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "usb_alloc_coherent" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "usb_free_urb" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "video_ioctl2" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "v4l2_ctrl_poll" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "usb_alloc_urb" [drivers/media/usb/usbvision/usbvision.ko] undefined!
ERROR: "flush_work" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "system_wq" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "kmalloc_caches" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "v4l2_event_unsubscribe" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "__kmalloc" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "msleep" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "v4l2_ctrl_cluster" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "param_ops_int" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "v4l2_ctrl_log_status" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "v4l2_device_unregister" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "v4l2_ctrl_handler_free" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "v4l2_ctrl_new_std" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "usb_kill_urb" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "__video_register_device" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "param_ops_bool" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "mutex_unlock" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "v4l2_ctrl_activate" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "strscpy" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "__might_sleep" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "i2c_add_adapter" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "v4l2_device_register" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "v4l2_match_dv_timings" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "_copy_to_user" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "v4l2_ctrl_new_std_menu" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "v4l2_device_disconnect" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "usb_deregister" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "__mutex_init" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "printk" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "video_unregister_device" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "v4l2_fh_init" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "v4l2_ctrl_subscribe_event" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "usb_control_msg" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "v4l2_fh_release" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "usb_free_coherent" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "_dev_err" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "__list_add_valid" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "init_wait_entry" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "i2c_del_adapter" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "usb_submit_urb" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "usb_get_dev" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "video_devdata" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "usb_bulk_msg" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "usb_put_dev" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "schedule" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "schedule_timeout" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "v4l2_ctrl_handler_setup" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "__wake_up" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "kfree" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "param_array_ops" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "v4l2_ctrl_handler_init_class" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "usb_register_driver" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "lockdep_init_map" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "finish_wait" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "v4l2_fh_add" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "queue_work_on" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "snprintf" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "usb_alloc_coherent" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "param_ops_uint" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "i2c_new_device" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "usb_free_urb" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "video_ioctl2" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "v4l2_ctrl_poll" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "usb_alloc_urb" [drivers/media/usb/hdpvr/hdpvr.ko] undefined!
ERROR: "vb2_ops_wait_finish" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "vb2_ops_wait_prepare" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "vb2_fop_release" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "v4l2_fh_open" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "vb2_fop_mmap" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "video_ioctl2" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "vb2_fop_poll" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "vb2_fop_read" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "vb2_ioctl_streamoff" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "vb2_ioctl_streamon" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "vb2_ioctl_create_bufs" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "vb2_ioctl_dqbuf" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "vb2_ioctl_expbuf" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "vb2_ioctl_qbuf" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "vb2_ioctl_querybuf" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "vb2_ioctl_reqbufs" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "__pci_register_driver" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "_dev_info" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "__video_register_device" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "request_threaded_irq" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "pci_set_master" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "pci_iomap" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "pci_request_region" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "pci_enable_device" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "vb2_queue_init" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "vb2_dma_contig_memops" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "__mutex_init" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "video_device_release_empty" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "v4l2_device_register" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "devm_kmalloc" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "dma_set_coherent_mask" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "dma_set_mask" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "sprintf" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "snprintf" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "strscpy" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "video_devdata" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "__const_udelay" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "msleep" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "_raw_spin_unlock_irq" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "__list_add_valid" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "_raw_spin_lock_irq" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "iowrite32" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "vb2_plane_cookie" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "vb2_buffer_done" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "ktime_get" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "ioread32" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "pci_disable_device" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "pci_release_region" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "pci_iounmap" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "v4l2_device_unregister" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "vb2_queue_release" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "free_irq" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "video_unregister_device" [drivers/media/pci/dt3155/dt3155.ko] undefined!
ERROR: "param_ops_int" [drivers/media/pci/saa7146/hexium_gemini.ko] undefined!
ERROR: "saa7146_unregister_extension" [drivers/media/pci/saa7146/hexium_gemini.ko] undefined!
ERROR: "saa7146_register_extension" [drivers/media/pci/saa7146/hexium_gemini.ko] undefined!
ERROR: "saa7146_register_device" [drivers/media/pci/saa7146/hexium_gemini.ko] undefined!
ERROR: "saa7146_vv_init" [drivers/media/pci/saa7146/hexium_gemini.ko] undefined!
ERROR: "saa7146_setgpio" [drivers/media/pci/saa7146/hexium_gemini.ko] undefined!
ERROR: "i2c_add_adapter" [drivers/media/pci/saa7146/hexium_gemini.ko] undefined!
ERROR: "saa7146_i2c_adapter_prepare" [drivers/media/pci/saa7146/hexium_gemini.ko] undefined!
ERROR: "strscpy" [drivers/media/pci/saa7146/hexium_gemini.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/media/pci/saa7146/hexium_gemini.ko] undefined!
ERROR: "kmalloc_caches" [drivers/media/pci/saa7146/hexium_gemini.ko] undefined!
ERROR: "printk" [drivers/media/pci/saa7146/hexium_gemini.ko] undefined!
ERROR: "i2c_smbus_xfer" [drivers/media/pci/saa7146/hexium_gemini.ko] undefined!
ERROR: "kfree" [drivers/media/pci/saa7146/hexium_gemini.ko] undefined!
ERROR: "i2c_del_adapter" [drivers/media/pci/saa7146/hexium_gemini.ko] undefined!
ERROR: "saa7146_vv_release" [drivers/media/pci/saa7146/hexium_gemini.ko] undefined!
ERROR: "saa7146_unregister_device" [drivers/media/pci/saa7146/hexium_gemini.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/media/pci/saa7146/hexium_gemini.ko] undefined!
ERROR: "param_ops_int" [drivers/media/pci/saa7146/hexium_orion.ko] undefined!
ERROR: "saa7146_unregister_extension" [drivers/media/pci/saa7146/hexium_orion.ko] undefined!
ERROR: "saa7146_register_extension" [drivers/media/pci/saa7146/hexium_orion.ko] undefined!
ERROR: "__const_udelay" [drivers/media/pci/saa7146/hexium_orion.ko] undefined!
ERROR: "saa7146_setgpio" [drivers/media/pci/saa7146/hexium_orion.ko] undefined!
ERROR: "i2c_add_adapter" [drivers/media/pci/saa7146/hexium_orion.ko] undefined!
ERROR: "saa7146_i2c_adapter_prepare" [drivers/media/pci/saa7146/hexium_orion.ko] undefined!
ERROR: "strscpy" [drivers/media/pci/saa7146/hexium_orion.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/media/pci/saa7146/hexium_orion.ko] undefined!
ERROR: "kmalloc_caches" [drivers/media/pci/saa7146/hexium_orion.ko] undefined!
ERROR: "printk" [drivers/media/pci/saa7146/hexium_orion.ko] undefined!
ERROR: "saa7146_register_device" [drivers/media/pci/saa7146/hexium_orion.ko] undefined!
ERROR: "saa7146_vv_init" [drivers/media/pci/saa7146/hexium_orion.ko] undefined!
ERROR: "i2c_smbus_xfer" [drivers/media/pci/saa7146/hexium_orion.ko] undefined!
ERROR: "kfree" [drivers/media/pci/saa7146/hexium_orion.ko] undefined!
ERROR: "i2c_del_adapter" [drivers/media/pci/saa7146/hexium_orion.ko] undefined!
ERROR: "saa7146_vv_release" [drivers/media/pci/saa7146/hexium_orion.ko] undefined!
ERROR: "saa7146_unregister_device" [drivers/media/pci/saa7146/hexium_orion.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/media/pci/saa7146/hexium_orion.ko] undefined!
ERROR: "_dev_err" [drivers/media/common/cypress_firmware.ko] undefined!
ERROR: "kfree" [drivers/media/common/cypress_firmware.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/media/common/cypress_firmware.ko] undefined!
ERROR: "kmalloc_caches" [drivers/media/common/cypress_firmware.ko] undefined!
ERROR: "usb_control_msg" [drivers/media/common/cypress_firmware.ko] undefined!
ERROR: "print_hex_dump" [drivers/media/common/tveeprom.ko] undefined!
ERROR: "i2c_transfer_buffer_flags" [drivers/media/common/tveeprom.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/media/common/tveeprom.ko] undefined!
ERROR: "printk" [drivers/media/common/tveeprom.ko] undefined!
ERROR: "param_ops_int" [drivers/media/common/cx2341x.ko] undefined!
ERROR: "mutex_unlock" [drivers/media/common/cx2341x.ko] undefined!
ERROR: "__v4l2_ctrl_grab" [drivers/media/common/cx2341x.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/media/common/cx2341x.ko] undefined!
ERROR: "v4l2_ctrl_handler_setup" [drivers/media/common/cx2341x.ko] undefined!
ERROR: "v4l2_ctrl_g_ctrl" [drivers/media/common/cx2341x.ko] undefined!
ERROR: "v4l2_ctrl_handler_free" [drivers/media/common/cx2341x.ko] undefined!
ERROR: "v4l2_ctrl_cluster" [drivers/media/common/cx2341x.ko] undefined!
ERROR: "v4l2_ctrl_new_std" [drivers/media/common/cx2341x.ko] undefined!
ERROR: "v4l2_ctrl_new_std_menu" [drivers/media/common/cx2341x.ko] undefined!
ERROR: "v4l2_ctrl_handler_init_class" [drivers/media/common/cx2341x.ko] undefined!
ERROR: "printk" [drivers/media/common/cx2341x.ko] undefined!
ERROR: "v4l2_ctrl_get_menu" [drivers/media/common/cx2341x.ko] undefined!
ERROR: "v4l2_ctrl_query_fill" [drivers/media/common/cx2341x.ko] undefined!
ERROR: "strscpy" [drivers/media/common/cx2341x.ko] undefined!
ERROR: "v4l2_ctrl_new_custom" [drivers/media/common/cx2341x.ko] undefined!
ERROR: "v4l2_ctrl_activate" [drivers/media/common/cx2341x.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/media/common/cx2341x.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/media/common/cx2341x.ko] undefined!
ERROR: "mutex_unlock" [drivers/media/common/videobuf2/videobuf2-dma-contig.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/media/common/videobuf2/videobuf2-dma-contig.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/media/common/videobuf2/videobuf2-dma-contig.ko] undefined!
ERROR: "set_page_dirty_lock" [drivers/media/common/videobuf2/videobuf2-dma-contig.ko] undefined!
ERROR: "dma_get_sgtable_attrs" [drivers/media/common/videobuf2/videobuf2-dma-contig.ko] undefined!
ERROR: "dma_buf_export" [drivers/media/common/videobuf2/videobuf2-dma-contig.ko] undefined!
ERROR: "refcount_warn_saturate" [drivers/media/common/videobuf2/videobuf2-dma-contig.ko] undefined!
ERROR: "put_device" [drivers/media/common/videobuf2/videobuf2-dma-contig.ko] undefined!
ERROR: "dma_free_attrs" [drivers/media/common/videobuf2/videobuf2-dma-contig.ko] undefined!
ERROR: "sg_free_table" [drivers/media/common/videobuf2/videobuf2-dma-contig.ko] undefined!
ERROR: "dma_direct_map_resource" [drivers/media/common/videobuf2/videobuf2-dma-contig.ko] undefined!
ERROR: "frame_vector_to_pfns" [drivers/media/common/videobuf2/videobuf2-dma-contig.ko] undefined!
ERROR: "dma_direct_map_sg" [drivers/media/common/videobuf2/videobuf2-dma-contig.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/media/common/videobuf2/videobuf2-dma-contig.ko] undefined!
ERROR: "sg_alloc_table_from_pages" [drivers/media/common/videobuf2/videobuf2-dma-contig.ko] undefined!
ERROR: "vb2_destroy_framevec" [drivers/media/common/videobuf2/videobuf2-dma-contig.ko] undefined!
ERROR: "mem_section" [drivers/media/common/videobuf2/videobuf2-dma-contig.ko] undefined!
ERROR: "frame_vector_to_pages" [drivers/media/common/videobuf2/videobuf2-dma-contig.ko] undefined!
ERROR: "vb2_create_framevec" [drivers/media/common/videobuf2/videobuf2-dma-contig.ko] undefined!
ERROR: "dma_buf_map_attachment" [drivers/media/common/videobuf2/videobuf2-dma-contig.ko] undefined!
ERROR: "_dev_err" [drivers/media/common/videobuf2/videobuf2-dma-contig.ko] undefined!
ERROR: "get_device" [drivers/media/common/videobuf2/videobuf2-dma-contig.ko] undefined!
ERROR: "dma_alloc_attrs" [drivers/media/common/videobuf2/videobuf2-dma-contig.ko] undefined!
ERROR: "sg_next" [drivers/media/common/videobuf2/videobuf2-dma-contig.ko] undefined!
ERROR: "sg_alloc_table" [drivers/media/common/videobuf2/videobuf2-dma-contig.ko] undefined!
ERROR: "dma_ops" [drivers/media/common/videobuf2/videobuf2-dma-contig.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/media/common/videobuf2/videobuf2-dma-contig.ko] undefined!
ERROR: "dma_buf_attach" [drivers/media/common/videobuf2/videobuf2-dma-contig.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/media/common/videobuf2/videobuf2-dma-contig.ko] undefined!
ERROR: "kmalloc_caches" [drivers/media/common/videobuf2/videobuf2-dma-contig.ko] undefined!
ERROR: "kfree" [drivers/media/common/videobuf2/videobuf2-dma-contig.ko] undefined!
ERROR: "dma_buf_detach" [drivers/media/common/videobuf2/videobuf2-dma-contig.ko] undefined!
ERROR: "dma_buf_unmap_attachment" [drivers/media/common/videobuf2/videobuf2-dma-contig.ko] undefined!
ERROR: "dma_buf_vunmap" [drivers/media/common/videobuf2/videobuf2-dma-contig.ko] undefined!
ERROR: "dma_buf_vmap" [drivers/media/common/videobuf2/videobuf2-dma-contig.ko] undefined!
ERROR: "printk" [drivers/media/common/videobuf2/videobuf2-dma-contig.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/media/common/videobuf2/videobuf2-dma-contig.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/media/common/videobuf2/videobuf2-dma-contig.ko] undefined!
ERROR: "vb2_common_vm_ops" [drivers/media/common/videobuf2/videobuf2-dma-contig.ko] undefined!
ERROR: "dma_mmap_attrs" [drivers/media/common/videobuf2/videobuf2-dma-contig.ko] undefined!
ERROR: "videobuf_to_dma" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "kmalloc_caches" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "v4l2_event_unsubscribe" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "video_device_release_empty" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "param_ops_int" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "del_timer" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "videobuf_mmap_mapper" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "v4l2_video_std_frame_period" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "remove_wait_queue" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "v4l2_device_unregister" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "v4l2_ctrl_handler_free" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "v4l2_ctrl_new_std" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "ktime_get" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "videobuf_queue_cancel" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "videobuf_streamon" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "__video_register_device" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "init_timer_key" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "videobuf_iolock" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "mutex_unlock" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "saa7146_pgtable_free" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "dma_free_attrs" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "__preempt_count" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "strscpy" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "sprintf" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "jiffies" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "v4l2_device_register" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "default_wake_function" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "saa7146_pgtable_alloc" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "videobuf_read_one" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "current_task" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "printk" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "videobuf_qbuf" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "video_unregister_device" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "v4l2_fh_init" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "v4l2_ctrl_subscribe_event" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "saa7146_pgtable_build_single" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "videobuf_querybuf" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "dma_alloc_attrs" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "mod_timer" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "videobuf_read_stream" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "videobuf_dma_unmap" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "videobuf_queue_sg_init" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "__list_add_valid" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "videobuf_stop" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "v4l2_field_names" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "capable" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "video_devdata" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "schedule" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "saa7146_debug" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "videobuf_dqbuf" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "__wake_up" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "add_wait_queue" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "videobuf_waiton" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "kfree" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "videobuf_reqbufs" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "v4l2_ctrl_handler_init_class" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "v4l2_fh_add" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "videobuf_dma_free" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "mutex_lock_interruptible_nested" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "v4l2_fh_del" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "_copy_from_user" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "video_ioctl2" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "videobuf_poll_stream" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "v4l2_ctrl_poll" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "v4l2_fh_exit" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "videobuf_streamoff" [drivers/media/common/saa7146/saa7146_vv.ko] undefined!
ERROR: "kmalloc_caches" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "__kmalloc" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "msleep" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "sg_init_table" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "pci_release_region" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "pci_disable_device" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "__const_udelay" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "mutex_unlock" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "vfree" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "dma_free_attrs" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "sprintf" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "jiffies" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "__might_sleep" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "pci_set_master" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "movable_zone" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "__mutex_init" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "printk" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "ioremap" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "dma_alloc_attrs" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "request_threaded_irq" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "init_wait_entry" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "schedule_timeout" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "vmalloc_32" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "jiffies_to_usecs" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "__wake_up" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "kfree" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "dma_direct_map_sg" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "iounmap" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "__pci_register_driver" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "finish_wait" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "mutex_lock_interruptible_nested" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "vmalloc_to_page" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "pci_enable_device" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "param_ops_uint" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "pci_request_region" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "dma_ops" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "free_irq" [drivers/media/common/saa7146/saa7146.ko] undefined!
ERROR: "param_ops_bool" [drivers/media/rc/rc-loopback.ko] undefined!
ERROR: "rc_unregister_device" [drivers/media/rc/rc-loopback.ko] undefined!
ERROR: "rc_free_device" [drivers/media/rc/rc-loopback.ko] undefined!
ERROR: "rc_register_device" [drivers/media/rc/rc-loopback.ko] undefined!
ERROR: "rc_allocate_device" [drivers/media/rc/rc-loopback.ko] undefined!
ERROR: "ir_raw_event_store" [drivers/media/rc/rc-loopback.ko] undefined!
ERROR: "kfree" [drivers/media/rc/rc-loopback.ko] undefined!
ERROR: "ir_raw_encode_scancode" [drivers/media/rc/rc-loopback.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/media/rc/rc-loopback.ko] undefined!
ERROR: "kmalloc_caches" [drivers/media/rc/rc-loopback.ko] undefined!
ERROR: "ir_raw_event_handle" [drivers/media/rc/rc-loopback.ko] undefined!
ERROR: "ir_raw_event_store_with_filter" [drivers/media/rc/rc-loopback.ko] undefined!
ERROR: "printk" [drivers/media/rc/rc-loopback.ko] undefined!
ERROR: "ir_raw_handler_unregister" [drivers/media/rc/ir-imon-decoder.ko] undefined!
ERROR: "printk" [drivers/media/rc/ir-imon-decoder.ko] undefined!
ERROR: "ir_raw_handler_register" [drivers/media/rc/ir-imon-decoder.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/media/rc/ir-imon-decoder.ko] undefined!
ERROR: "rc_keydown" [drivers/media/rc/ir-imon-decoder.ko] undefined!
ERROR: "input_event" [drivers/media/rc/ir-imon-decoder.ko] undefined!
ERROR: "ir_raw_handler_unregister" [drivers/media/rc/ir-sharp-decoder.ko] undefined!
ERROR: "printk" [drivers/media/rc/ir-sharp-decoder.ko] undefined!
ERROR: "ir_raw_handler_register" [drivers/media/rc/ir-sharp-decoder.ko] undefined!
ERROR: "rc_keydown" [drivers/media/rc/ir-sharp-decoder.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/media/rc/ir-sharp-decoder.ko] undefined!
ERROR: "ir_raw_gen_pd" [drivers/media/rc/ir-sharp-decoder.ko] undefined!
ERROR: "byte_rev_table" [drivers/media/rc/ir-sharp-decoder.ko] undefined!
ERROR: "__request_module" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "kmalloc_caches" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "__kmalloc" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "cdev_init" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "msleep" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "__kfifo_out" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "del_timer" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "__kfifo_alloc" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "led_trigger_event" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "__fdget" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "stream_open" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "nsecs_to_jiffies" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "no_llseek" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "__might_fault" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "ktime_get" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "__get_user_4" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "devres_free" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "init_timer_key" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "mutex_unlock" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "strsep" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "unregister_chrdev_region" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "sprintf" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "kstrdup" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "kthread_create_on_node" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "jiffies" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "__might_sleep" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "strcmp" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "kasprintf" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "cmpxchg8b_emu" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "input_event" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "_dev_warn" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "device_del" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "current_task" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "__kfifo_to_user" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "__mutex_init" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "printk" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "kthread_stop" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "class_unregister" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "ida_free" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "atomic64_read_cx8" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "strcasecmp" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "__devres_alloc_node" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "__usecs_to_jiffies" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "mod_timer" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "device_add" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "__class_register" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "_dev_err" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "fput" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "__list_add_valid" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "init_wait_entry" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "_dev_info" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "__put_user_4" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "put_device" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "input_register_device" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "schedule" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "schedule_timeout" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "cdev_device_add" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "_kstrtoul" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "input_free_device" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "wake_up_process" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "devres_add" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "__kfifo_free" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "get_device" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "__wake_up" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "led_trigger_unregister_simple" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "input_scancode_to_scalar" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "kthread_should_stop" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "kobject_get_path" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "kfree" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "input_unregister_device" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "device_initialize" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "bsearch" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "led_trigger_register_simple" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "class_destroy" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "finish_wait" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "mutex_lock_interruptible_nested" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "cdev_device_del" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "sysfs_streq" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "atomic64_read_386" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "memdup_user" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "memmove" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "dev_set_name" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "__msecs_to_jiffies" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "_copy_from_user" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "__class_create" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "alloc_chrdev_region" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "ida_alloc_range" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "add_uevent_var" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "input_allocate_device" [drivers/media/rc/rc-core.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-zx-irdec.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-zx-irdec.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-x96max.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-x96max.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-xbox-dvd.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-xbox-dvd.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-su3000.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-su3000.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-winfast-usbii-deluxe.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-winfast-usbii-deluxe.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-winfast.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-winfast.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-wetek-play2.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-wetek-play2.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-wetek-hub.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-wetek-hub.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-videomate-tv-pvr.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-videomate-tv-pvr.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-videomate-s350.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-videomate-s350.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-videomate-m1f.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-videomate-m1f.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-vega-s9x.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-vega-s9x.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-twinhan1027.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-twinhan1027.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-twinhan-dtv-cab-ci.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-twinhan-dtv-cab-ci.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-tt-1500.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-tt-1500.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-trekstor.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-trekstor.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-total-media-in-hand-02.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-total-media-in-hand-02.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-total-media-in-hand.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-total-media-in-hand.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-tivo.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-tivo.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-tevii-nec.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-tevii-nec.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-terratec-slim-2.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-terratec-slim-2.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-terratec-slim.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-terratec-slim.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-terratec-cinergy-xs.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-terratec-cinergy-xs.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-terratec-cinergy-s2-hd.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-terratec-cinergy-s2-hd.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-terratec-cinergy-c-pci.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-terratec-cinergy-c-pci.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-technisat-usb2.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-technisat-usb2.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-technisat-ts35.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-technisat-ts35.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-tbs-nec.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-tbs-nec.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-tanix-tx5max.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-tanix-tx5max.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-tanix-tx3mini.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-tanix-tx3mini.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-tango.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-tango.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-streamzap.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-streamzap.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-snapstream-firefly.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-snapstream-firefly.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-reddo.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-reddo.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-real-audio-220-32-keys.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-real-audio-220-32-keys.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-rc6-mce.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-rc6-mce.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-hauppauge.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-hauppauge.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-pv951.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-pv951.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-purpletv.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-purpletv.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-proteus-2309.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-proteus-2309.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-powercolor-real-angel.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-powercolor-real-angel.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-pixelview-new.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-pixelview-new.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-pixelview-002t.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-pixelview-002t.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-pixelview-mk12.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-pixelview-mk12.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-pixelview.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-pixelview.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-pinnacle-pctv-hd.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-pinnacle-pctv-hd.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-pinnacle-grey.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-pinnacle-grey.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-pinnacle-color.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-pinnacle-color.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-pctv-sedna.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-pctv-sedna.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-odroid.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-odroid.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-npgtech.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-npgtech.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-norwood.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-norwood.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-nec-terratec-cinergy-xs.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-nec-terratec-cinergy-xs.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-nebula.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-nebula.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-msi-tvanywhere-plus.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-msi-tvanywhere-plus.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-msi-tvanywhere.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-msi-tvanywhere.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-msi-digivox-iii.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-msi-digivox-iii.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-msi-digivox-ii.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-msi-digivox-ii.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-medion-x10-or2x.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-medion-x10-or2x.ko] undefined!
  HOSTCC  arch/x86/boot/tools/build
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-medion-x10-digitainer.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-medion-x10-digitainer.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-medion-x10.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-medion-x10.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-manli.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-manli.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-lme2510.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-lme2510.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-leadtek-y04g0051.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-leadtek-y04g0051.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-kworld-plus-tv-analog.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-kworld-plus-tv-analog.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-kworld-pc150u.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-kworld-pc150u.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-kworld-315u.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-kworld-315u.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-khadas.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-khadas.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-kaiomy.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-kaiomy.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-it913x-v2.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-it913x-v2.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-it913x-v1.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-it913x-v1.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-iodata-bctv7e.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-iodata-bctv7e.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-imon-rsc.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-imon-rsc.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-imon-pad.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-imon-pad.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-imon-mce.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-imon-mce.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-hisi-tv-demo.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-hisi-tv-demo.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-hisi-poplar.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-hisi-poplar.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-gotview7135.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-gotview7135.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-genius-tvgo-a11mce.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-genius-tvgo-a11mce.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-geekbox.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-geekbox.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-gadmei-rm008z.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-gadmei-rm008z.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-fusionhdtv-mce.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-fusionhdtv-mce.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-flyvideo.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-flyvideo.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-flydvb.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-flydvb.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-eztv.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-eztv.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-evga-indtube.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-evga-indtube.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-encore-enltv-fm53.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-encore-enltv-fm53.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-encore-enltv.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-encore-enltv.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-encore-enltv2.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-encore-enltv2.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-em-terratec.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-em-terratec.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-dvico-portable.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-dvico-portable.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-dvico-mce.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-dvico-mce.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-dvbsky.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-dvbsky.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-dtt200u.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-dtt200u.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-dntv-live-dvbt-pro.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-dntv-live-dvbt-pro.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-dntv-live-dvb-t.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-dntv-live-dvb-t.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-dm1105-nec.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-dm1105-nec.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-digittrade.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-digittrade.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-digitalnow-tinytwin.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-digitalnow-tinytwin.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-dib0700-rc5.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-dib0700-rc5.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-dib0700-nec.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-dib0700-nec.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-delock-61959.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-delock-61959.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-d680-dmb.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-d680-dmb.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-cinergy.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-cinergy.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-cinergy-1400.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-cinergy-1400.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-cec.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-cec.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-budget-ci-old.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-budget-ci-old.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-behold-columbus.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-behold-columbus.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-behold.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-behold.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-beelink-gs1.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-beelink-gs1.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-azurewave-ad-tu700.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-azurewave-ad-tu700.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-avertv-303.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-avertv-303.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-avermedia-rm-ks.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-avermedia-rm-ks.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-avermedia-m733a-rm-k6.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-avermedia-m733a-rm-k6.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-avermedia-m135a.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-avermedia-m135a.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-avermedia-dvbt.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-avermedia-dvbt.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-avermedia-cardbus.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-avermedia-cardbus.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-avermedia.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-avermedia.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-avermedia-a16d.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-avermedia-a16d.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-ati-x10.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-ati-x10.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-ati-tv-wonder-hd-600.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-ati-tv-wonder-hd-600.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-asus-ps3-100.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-asus-ps3-100.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-asus-pc39.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-asus-pc39.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-astrometa-t2hybrid.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-astrometa-t2hybrid.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-apac-viewcomp.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-apac-viewcomp.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-anysee.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-anysee.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-alink-dtu-m.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-alink-dtu-m.ko] undefined!
ERROR: "rc_map_unregister" [drivers/media/rc/keymaps/rc-adstech-dvb-t-pci.ko] undefined!
ERROR: "rc_map_register" [drivers/media/rc/keymaps/rc-adstech-dvb-t-pci.ko] undefined!
ERROR: "param_ops_int" [drivers/media/v4l2-core/videobuf-dma-sg.ko] undefined!
ERROR: "videobuf_queue_core_init" [drivers/media/v4l2-core/videobuf-dma-sg.ko] undefined!
ERROR: "videobuf_alloc_vb" [drivers/media/v4l2-core/videobuf-dma-sg.ko] undefined!
ERROR: "vunmap" [drivers/media/v4l2-core/videobuf-dma-sg.ko] undefined!
ERROR: "unpin_user_pages_dirty_lock" [drivers/media/v4l2-core/videobuf-dma-sg.ko] undefined!
ERROR: "dma_direct_map_sg" [drivers/media/v4l2-core/videobuf-dma-sg.ko] undefined!
ERROR: "vmap" [drivers/media/v4l2-core/videobuf-dma-sg.ko] undefined!
ERROR: "__default_kernel_pte_mask" [drivers/media/v4l2-core/videobuf-dma-sg.ko] undefined!
ERROR: "dma_free_attrs" [drivers/media/v4l2-core/videobuf-dma-sg.ko] undefined!
ERROR: "page_address" [drivers/media/v4l2-core/videobuf-dma-sg.ko] undefined!
ERROR: "dma_alloc_attrs" [drivers/media/v4l2-core/videobuf-dma-sg.ko] undefined!
ERROR: "mem_section" [drivers/media/v4l2-core/videobuf-dma-sg.ko] undefined!
ERROR: "__phys_addr" [drivers/media/v4l2-core/videobuf-dma-sg.ko] undefined!
ERROR: "movable_zone" [drivers/media/v4l2-core/videobuf-dma-sg.ko] undefined!
ERROR: "up_read" [drivers/media/v4l2-core/videobuf-dma-sg.ko] undefined!
ERROR: "down_read" [drivers/media/v4l2-core/videobuf-dma-sg.ko] undefined!
ERROR: "current_task" [drivers/media/v4l2-core/videobuf-dma-sg.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/media/v4l2-core/videobuf-dma-sg.ko] undefined!
ERROR: "vmalloc_to_page" [drivers/media/v4l2-core/videobuf-dma-sg.ko] undefined!
ERROR: "vzalloc" [drivers/media/v4l2-core/videobuf-dma-sg.ko] undefined!
ERROR: "vfree" [drivers/media/v4l2-core/videobuf-dma-sg.ko] undefined!
ERROR: "sg_init_table" [drivers/media/v4l2-core/videobuf-dma-sg.ko] undefined!
ERROR: "vmalloc" [drivers/media/v4l2-core/videobuf-dma-sg.ko] undefined!
ERROR: "pin_user_pages" [drivers/media/v4l2-core/videobuf-dma-sg.ko] undefined!
ERROR: "__kmalloc" [drivers/media/v4l2-core/videobuf-dma-sg.ko] undefined!
ERROR: "__kunmap_atomic" [drivers/media/v4l2-core/videobuf-dma-sg.ko] undefined!
ERROR: "kmap_atomic" [drivers/media/v4l2-core/videobuf-dma-sg.ko] undefined!
ERROR: "__alloc_pages_nodemask" [drivers/media/v4l2-core/videobuf-dma-sg.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/media/v4l2-core/videobuf-dma-sg.ko] undefined!
ERROR: "kmalloc_caches" [drivers/media/v4l2-core/videobuf-dma-sg.ko] undefined!
ERROR: "mutex_unlock" [drivers/media/v4l2-core/videobuf-dma-sg.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/media/v4l2-core/videobuf-dma-sg.ko] undefined!
ERROR: "kfree" [drivers/media/v4l2-core/videobuf-dma-sg.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/media/v4l2-core/videobuf-dma-sg.ko] undefined!
ERROR: "dma_ops" [drivers/media/v4l2-core/videobuf-dma-sg.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/media/v4l2-core/videobuf-dma-sg.ko] undefined!
ERROR: "printk" [drivers/media/v4l2-core/videobuf-dma-sg.ko] undefined!
ERROR: "param_ops_int" [drivers/media/v4l2-core/videobuf-core.ko] undefined!
ERROR: "down_read" [drivers/media/v4l2-core/videobuf-core.ko] undefined!
ERROR: "up_read" [drivers/media/v4l2-core/videobuf-core.ko] undefined!
ERROR: "current_task" [drivers/media/v4l2-core/videobuf-core.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/media/v4l2-core/videobuf-core.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/media/v4l2-core/videobuf-core.ko] undefined!
ERROR: "__list_add_valid" [drivers/media/v4l2-core/videobuf-core.ko] undefined!
ERROR: "__wake_up" [drivers/media/v4l2-core/videobuf-core.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/media/v4l2-core/videobuf-core.ko] undefined!
ERROR: "__wake_up_sync" [drivers/media/v4l2-core/videobuf-core.ko] undefined!
ERROR: "__mutex_init" [drivers/media/v4l2-core/videobuf-core.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/media/v4l2-core/videobuf-core.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/media/v4l2-core/videobuf-core.ko] undefined!
ERROR: "mutex_unlock" [drivers/media/v4l2-core/videobuf-core.ko] undefined!
ERROR: "finish_wait" [drivers/media/v4l2-core/videobuf-core.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/media/v4l2-core/videobuf-core.ko] undefined!
ERROR: "schedule" [drivers/media/v4l2-core/videobuf-core.ko] undefined!
ERROR: "init_wait_entry" [drivers/media/v4l2-core/videobuf-core.ko] undefined!
ERROR: "__might_sleep" [drivers/media/v4l2-core/videobuf-core.ko] undefined!
ERROR: "mutex_is_locked" [drivers/media/v4l2-core/videobuf-core.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/media/v4l2-core/videobuf-core.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/media/v4l2-core/videobuf-core.ko] undefined!
ERROR: "_copy_to_user" [drivers/media/v4l2-core/videobuf-core.ko] undefined!
ERROR: "ns_to_timespec64" [drivers/media/v4l2-core/videobuf-core.ko] undefined!
ERROR: "printk" [drivers/media/v4l2-core/videobuf-core.ko] undefined!
ERROR: "kfree" [drivers/media/v4l2-core/videobuf-core.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/media/v4l2-core/videobuf-core.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/media/v4l2-core/videobuf-core.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/media/v4l2-core/videobuf-core.ko] undefined!
ERROR: "param_ops_bool" [drivers/media/v4l2-core/v4l2-mem2mem.ko] undefined!
ERROR: "mutex_unlock" [drivers/media/v4l2-core/v4l2-mem2mem.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/media/v4l2-core/v4l2-mem2mem.ko] undefined!
ERROR: "vb2_request_object_is_buffer" [drivers/media/v4l2-core/v4l2-mem2mem.ko] undefined!
ERROR: "vb2_queue_release" [drivers/media/v4l2-core/v4l2-mem2mem.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/media/v4l2-core/v4l2-mem2mem.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/media/v4l2-core/v4l2-mem2mem.ko] undefined!
ERROR: "kfree" [drivers/media/v4l2-core/v4l2-mem2mem.ko] undefined!
ERROR: "lockdep_init_map" [drivers/media/v4l2-core/v4l2-mem2mem.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/media/v4l2-core/v4l2-mem2mem.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/media/v4l2-core/v4l2-mem2mem.ko] undefined!
ERROR: "kmalloc_caches" [drivers/media/v4l2-core/v4l2-mem2mem.ko] undefined!
ERROR: "vb2_mmap" [drivers/media/v4l2-core/v4l2-mem2mem.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/media/v4l2-core/v4l2-mem2mem.ko] undefined!
ERROR: "v4l2_event_pending" [drivers/media/v4l2-core/v4l2-mem2mem.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/media/v4l2-core/v4l2-mem2mem.ko] undefined!
ERROR: "vb2_streamoff" [drivers/media/v4l2-core/v4l2-mem2mem.ko] undefined!
ERROR: "vb2_streamon" [drivers/media/v4l2-core/v4l2-mem2mem.ko] undefined!
ERROR: "vb2_expbuf" [drivers/media/v4l2-core/v4l2-mem2mem.ko] undefined!
ERROR: "vb2_create_bufs" [drivers/media/v4l2-core/v4l2-mem2mem.ko] undefined!
ERROR: "vb2_prepare_buf" [drivers/media/v4l2-core/v4l2-mem2mem.ko] undefined!
ERROR: "vb2_dqbuf" [drivers/media/v4l2-core/v4l2-mem2mem.ko] undefined!
ERROR: "vb2_qbuf" [drivers/media/v4l2-core/v4l2-mem2mem.ko] undefined!
ERROR: "video_devdata" [drivers/media/v4l2-core/v4l2-mem2mem.ko] undefined!
ERROR: "vb2_querybuf" [drivers/media/v4l2-core/v4l2-mem2mem.ko] undefined!
ERROR: "vb2_reqbufs" [drivers/media/v4l2-core/v4l2-mem2mem.ko] undefined!
ERROR: "queue_work_on" [drivers/media/v4l2-core/v4l2-mem2mem.ko] undefined!
ERROR: "system_wq" [drivers/media/v4l2-core/v4l2-mem2mem.ko] undefined!
ERROR: "__list_add_valid" [drivers/media/v4l2-core/v4l2-mem2mem.ko] undefined!
ERROR: "vb2_buffer_done" [drivers/media/v4l2-core/v4l2-mem2mem.ko] undefined!
ERROR: "finish_wait" [drivers/media/v4l2-core/v4l2-mem2mem.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/media/v4l2-core/v4l2-mem2mem.ko] undefined!
ERROR: "schedule" [drivers/media/v4l2-core/v4l2-mem2mem.ko] undefined!
ERROR: "init_wait_entry" [drivers/media/v4l2-core/v4l2-mem2mem.ko] undefined!
ERROR: "__might_sleep" [drivers/media/v4l2-core/v4l2-mem2mem.ko] undefined!
ERROR: "__wake_up" [drivers/media/v4l2-core/v4l2-mem2mem.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/media/v4l2-core/v4l2-mem2mem.ko] undefined!
ERROR: "printk" [drivers/media/v4l2-core/v4l2-mem2mem.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/media/v4l2-core/v4l2-mem2mem.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/media/v4l2-core/v4l2-mem2mem.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/media/v4l2-core/v4l2-mem2mem.ko] undefined!
ERROR: "__request_module" [drivers/media/v4l2-core/tuner.ko] undefined!
ERROR: "kmalloc_caches" [drivers/media/v4l2-core/tuner.ko] undefined!
ERROR: "param_ops_int" [drivers/media/v4l2-core/tuner.ko] undefined!
ERROR: "i2c_del_driver" [drivers/media/v4l2-core/tuner.ko] undefined!
ERROR: "__const_udelay" [drivers/media/v4l2-core/tuner.ko] undefined!
ERROR: "strcmp" [drivers/media/v4l2-core/tuner.ko] undefined!
ERROR: "param_ops_string" [drivers/media/v4l2-core/tuner.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/media/v4l2-core/tuner.ko] undefined!
ERROR: "printk" [drivers/media/v4l2-core/tuner.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/media/v4l2-core/tuner.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/media/v4l2-core/tuner.ko] undefined!
ERROR: "__list_add_valid" [drivers/media/v4l2-core/tuner.ko] undefined!
ERROR: "__symbol_get" [drivers/media/v4l2-core/tuner.ko] undefined!
ERROR: "v4l2_device_unregister_subdev" [drivers/media/v4l2-core/tuner.ko] undefined!
ERROR: "i2c_register_driver" [drivers/media/v4l2-core/tuner.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/media/v4l2-core/tuner.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/media/v4l2-core/tuner.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/media/v4l2-core/tuner.ko] undefined!
ERROR: "i2c_transfer_buffer_flags" [drivers/media/v4l2-core/tuner.ko] undefined!
ERROR: "kfree" [drivers/media/v4l2-core/tuner.ko] undefined!
ERROR: "param_array_ops" [drivers/media/v4l2-core/tuner.ko] undefined!
ERROR: "v4l2_i2c_subdev_init" [drivers/media/v4l2-core/tuner.ko] undefined!
ERROR: "v4l2_async_notifier_cleanup" [drivers/media/v4l2-core/v4l2-fwnode.ko] undefined!
ERROR: "v4l2_async_notifier_unregister" [drivers/media/v4l2-core/v4l2-fwnode.ko] undefined!
ERROR: "v4l2_async_register_subdev" [drivers/media/v4l2-core/v4l2-fwnode.ko] undefined!
ERROR: "v4l2_async_subdev_notifier_register" [drivers/media/v4l2-core/v4l2-fwnode.ko] undefined!
ERROR: "v4l2_async_notifier_init" [drivers/media/v4l2-core/v4l2-fwnode.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/media/v4l2-core/v4l2-fwnode.ko] undefined!
ERROR: "kmalloc_caches" [drivers/media/v4l2-core/v4l2-fwnode.ko] undefined!
ERROR: "v4l2_async_notifier_add_fwnode_subdev" [drivers/media/v4l2-core/v4l2-fwnode.ko] undefined!
ERROR: "is_acpi_data_node" [drivers/media/v4l2-core/v4l2-fwnode.ko] undefined!
ERROR: "is_acpi_device_node" [drivers/media/v4l2-core/v4l2-fwnode.ko] undefined!
ERROR: "of_node_name_eq" [drivers/media/v4l2-core/v4l2-fwnode.ko] undefined!
ERROR: "fwnode_graph_get_remote_endpoint" [drivers/media/v4l2-core/v4l2-fwnode.ko] undefined!
ERROR: "fwnode_get_next_parent" [drivers/media/v4l2-core/v4l2-fwnode.ko] undefined!
ERROR: "fwnode_get_parent" [drivers/media/v4l2-core/v4l2-fwnode.ko] undefined!
ERROR: "of_fwnode_ops" [drivers/media/v4l2-core/v4l2-fwnode.ko] undefined!
ERROR: "_dev_warn" [drivers/media/v4l2-core/v4l2-fwnode.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/media/v4l2-core/v4l2-fwnode.ko] undefined!
ERROR: "v4l2_async_notifier_add_subdev" [drivers/media/v4l2-core/v4l2-fwnode.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/media/v4l2-core/v4l2-fwnode.ko] undefined!
ERROR: "fwnode_graph_get_remote_port_parent" [drivers/media/v4l2-core/v4l2-fwnode.ko] undefined!
ERROR: "fwnode_device_is_available" [drivers/media/v4l2-core/v4l2-fwnode.ko] undefined!
ERROR: "fwnode_graph_get_port_parent" [drivers/media/v4l2-core/v4l2-fwnode.ko] undefined!
ERROR: "fwnode_graph_get_next_endpoint" [drivers/media/v4l2-core/v4l2-fwnode.ko] undefined!
ERROR: "dev_fwnode" [drivers/media/v4l2-core/v4l2-fwnode.ko] undefined!
ERROR: "__kmalloc" [drivers/media/v4l2-core/v4l2-fwnode.ko] undefined!
ERROR: "fwnode_property_read_u64_array" [drivers/media/v4l2-core/v4l2-fwnode.ko] undefined!
ERROR: "kfree" [drivers/media/v4l2-core/v4l2-fwnode.ko] undefined!
ERROR: "fwnode_handle_put" [drivers/media/v4l2-core/v4l2-fwnode.ko] undefined!
ERROR: "fwnode_get_next_child_node" [drivers/media/v4l2-core/v4l2-fwnode.ko] undefined!
ERROR: "fwnode_property_get_reference_args" [drivers/media/v4l2-core/v4l2-fwnode.ko] undefined!
ERROR: "fwnode_graph_parse_endpoint" [drivers/media/v4l2-core/v4l2-fwnode.ko] undefined!
ERROR: "printk" [drivers/media/v4l2-core/v4l2-fwnode.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/media/v4l2-core/v4l2-fwnode.ko] undefined!
ERROR: "fwnode_property_present" [drivers/media/v4l2-core/v4l2-fwnode.ko] undefined!
ERROR: "fwnode_property_read_u32_array" [drivers/media/v4l2-core/v4l2-fwnode.ko] undefined!
ERROR: "i2c_del_driver" [drivers/media/tuners/qm1d1b0004.ko] undefined!
ERROR: "i2c_register_driver" [drivers/media/tuners/qm1d1b0004.ko] undefined!
ERROR: "_dev_info" [drivers/media/tuners/qm1d1b0004.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/media/tuners/qm1d1b0004.ko] undefined!
ERROR: "kmalloc_caches" [drivers/media/tuners/qm1d1b0004.ko] undefined!
ERROR: "msleep" [drivers/media/tuners/qm1d1b0004.ko] undefined!
ERROR: "i2c_transfer_buffer_flags" [drivers/media/tuners/qm1d1b0004.ko] undefined!
ERROR: "kfree" [drivers/media/tuners/qm1d1b0004.ko] undefined!
ERROR: "i2c_del_driver" [drivers/media/tuners/qm1d1c0042.ko] undefined!
ERROR: "i2c_register_driver" [drivers/media/tuners/qm1d1c0042.ko] undefined!
ERROR: "i2c_transfer" [drivers/media/tuners/qm1d1c0042.ko] undefined!
ERROR: "_dev_info" [drivers/media/tuners/qm1d1c0042.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/media/tuners/qm1d1c0042.ko] undefined!
ERROR: "kmalloc_caches" [drivers/media/tuners/qm1d1c0042.ko] undefined!
ERROR: "_dev_warn" [drivers/media/tuners/qm1d1c0042.ko] undefined!
ERROR: "msleep" [drivers/media/tuners/qm1d1c0042.ko] undefined!
ERROR: "usleep_range" [drivers/media/tuners/qm1d1c0042.ko] undefined!
ERROR: "div64_s64" [drivers/media/tuners/qm1d1c0042.ko] undefined!
ERROR: "i2c_transfer_buffer_flags" [drivers/media/tuners/qm1d1c0042.ko] undefined!
ERROR: "kfree" [drivers/media/tuners/qm1d1c0042.ko] undefined!
ERROR: "param_ops_int" [drivers/media/tuners/r820t.ko] undefined!
ERROR: "__mutex_init" [drivers/media/tuners/r820t.ko] undefined!
ERROR: "__list_add_valid" [drivers/media/tuners/r820t.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/media/tuners/r820t.ko] undefined!
ERROR: "kmalloc_caches" [drivers/media/tuners/r820t.ko] undefined!
ERROR: "msleep" [drivers/media/tuners/r820t.ko] undefined!
ERROR: "usleep_range" [drivers/media/tuners/r820t.ko] undefined!
ERROR: "byte_rev_table" [drivers/media/tuners/r820t.ko] undefined!
ERROR: "kfree" [drivers/media/tuners/r820t.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/media/tuners/r820t.ko] undefined!
ERROR: "mutex_unlock" [drivers/media/tuners/r820t.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/media/tuners/r820t.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/media/tuners/r820t.ko] undefined!
ERROR: "i2c_transfer" [drivers/media/tuners/r820t.ko] undefined!
ERROR: "printk" [drivers/media/tuners/r820t.ko] undefined!
ERROR: "_dev_info" [drivers/media/tuners/tda18218.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/media/tuners/tda18218.ko] undefined!
ERROR: "kmalloc_caches" [drivers/media/tuners/tda18218.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/media/tuners/tda18218.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/media/tuners/tda18218.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/media/tuners/tda18218.ko] undefined!
ERROR: "_dev_warn" [drivers/media/tuners/tda18218.ko] undefined!
ERROR: "i2c_transfer" [drivers/media/tuners/tda18218.ko] undefined!
ERROR: "kfree" [drivers/media/tuners/tda18218.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/media/tuners/tda18218.ko] undefined!
ERROR: "param_ops_int" [drivers/media/tuners/max2165.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/media/tuners/max2165.ko] undefined!
ERROR: "kmalloc_caches" [drivers/media/tuners/max2165.ko] undefined!
ERROR: "kfree" [drivers/media/tuners/max2165.ko] undefined!
ERROR: "__const_udelay" [drivers/media/tuners/max2165.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/media/tuners/max2165.ko] undefined!
ERROR: "i2c_transfer" [drivers/media/tuners/max2165.ko] undefined!
ERROR: "printk" [drivers/media/tuners/max2165.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/media/tuners/mc44s803.ko] undefined!
ERROR: "kmalloc_caches" [drivers/media/tuners/mc44s803.ko] undefined!
ERROR: "msleep" [drivers/media/tuners/mc44s803.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/media/tuners/mc44s803.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/media/tuners/mc44s803.ko] undefined!
ERROR: "printk" [drivers/media/tuners/mc44s803.ko] undefined!
ERROR: "i2c_transfer" [drivers/media/tuners/mc44s803.ko] undefined!
ERROR: "kfree" [drivers/media/tuners/mc44s803.ko] undefined!
ERROR: "param_ops_int" [drivers/media/tuners/mxl5007t.ko] undefined!
ERROR: "__mutex_init" [drivers/media/tuners/mxl5007t.ko] undefined!
ERROR: "__list_add_valid" [drivers/media/tuners/mxl5007t.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/media/tuners/mxl5007t.ko] undefined!
ERROR: "kmalloc_caches" [drivers/media/tuners/mxl5007t.ko] undefined!
ERROR: "kfree" [drivers/media/tuners/mxl5007t.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/media/tuners/mxl5007t.ko] undefined!
ERROR: "mutex_unlock" [drivers/media/tuners/mxl5007t.ko] undefined!
ERROR: "msleep" [drivers/media/tuners/mxl5007t.ko] undefined!
ERROR: "__const_udelay" [drivers/media/tuners/mxl5007t.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/media/tuners/mxl5007t.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/media/tuners/mxl5007t.ko] undefined!
ERROR: "printk" [drivers/media/tuners/mxl5007t.ko] undefined!
ERROR: "i2c_transfer" [drivers/media/tuners/mxl5007t.ko] undefined!
ERROR: "kmalloc_order_trace" [drivers/media/tuners/mxl5005s.ko] undefined!
ERROR: "msleep" [drivers/media/tuners/mxl5005s.ko] undefined!
ERROR: "kfree" [drivers/media/tuners/mxl5005s.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/media/tuners/mxl5005s.ko] undefined!
ERROR: "printk" [drivers/media/tuners/mxl5005s.ko] undefined!
ERROR: "i2c_transfer" [drivers/media/tuners/mxl5005s.ko] undefined!
ERROR: "param_ops_int" [drivers/media/tuners/mt2131.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/media/tuners/mt2131.ko] undefined!
ERROR: "kmalloc_caches" [drivers/media/tuners/mt2131.ko] undefined!
ERROR: "msleep" [drivers/media/tuners/mt2131.ko] undefined!
ERROR: "i2c_transfer" [drivers/media/tuners/mt2131.ko] undefined!
ERROR: "kfree" [drivers/media/tuners/mt2131.ko] undefined!
ERROR: "printk" [drivers/media/tuners/mt2131.ko] undefined!
ERROR: "param_ops_int" [drivers/media/tuners/mt2266.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/media/tuners/mt2266.ko] undefined!
ERROR: "kmalloc_caches" [drivers/media/tuners/mt2266.ko] undefined!
ERROR: "msleep" [drivers/media/tuners/mt2266.ko] undefined!
ERROR: "printk" [drivers/media/tuners/mt2266.ko] undefined!
ERROR: "i2c_transfer" [drivers/media/tuners/mt2266.ko] undefined!
ERROR: "kfree" [drivers/media/tuners/mt2266.ko] undefined!
ERROR: "kmalloc_caches" [drivers/media/tuners/tda18271.ko] undefined!
ERROR: "msleep" [drivers/media/tuners/tda18271.ko] undefined!
ERROR: "param_ops_int" [drivers/media/tuners/tda18271.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/media/tuners/tda18271.ko] undefined!
ERROR: "i2c_transfer" [drivers/media/tuners/tda18271.ko] undefined!
ERROR: "__const_udelay" [drivers/media/tuners/tda18271.ko] undefined!
ERROR: "mutex_unlock" [drivers/media/tuners/tda18271.ko] undefined!
ERROR: "__mutex_init" [drivers/media/tuners/tda18271.ko] undefined!
ERROR: "printk" [drivers/media/tuners/tda18271.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/media/tuners/tda18271.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/media/tuners/tda18271.ko] undefined!
ERROR: "__list_add_valid" [drivers/media/tuners/tda18271.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/media/tuners/tda18271.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/media/tuners/tda18271.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/media/tuners/tda18271.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/media/tuners/tda18271.ko] undefined!
ERROR: "kfree" [drivers/media/tuners/tda18271.ko] undefined!
ERROR: "__i2c_transfer" [drivers/media/tuners/tda18271.ko] undefined!
ERROR: "param_ops_int" [drivers/media/tuners/tea5761.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/media/tuners/tea5761.ko] undefined!
ERROR: "kmalloc_caches" [drivers/media/tuners/tea5761.ko] undefined!
ERROR: "kfree" [drivers/media/tuners/tea5761.ko] undefined!
ERROR: "printk" [drivers/media/tuners/tea5761.ko] undefined!
ERROR: "i2c_transfer" [drivers/media/tuners/tea5761.ko] undefined!
ERROR: "i2c_del_driver" [drivers/media/i2c/ml86v7667.ko] undefined!
ERROR: "i2c_register_driver" [drivers/media/i2c/ml86v7667.ko] undefined!
ERROR: "printk" [drivers/media/i2c/ml86v7667.ko] undefined!
ERROR: "v4l2_ctrl_handler_setup" [drivers/media/i2c/ml86v7667.ko] undefined!
ERROR: "v4l2_ctrl_new_std" [drivers/media/i2c/ml86v7667.ko] undefined!
ERROR: "v4l2_ctrl_handler_init_class" [drivers/media/i2c/ml86v7667.ko] undefined!
ERROR: "v4l2_i2c_subdev_init" [drivers/media/i2c/ml86v7667.ko] undefined!
ERROR: "devm_kmalloc" [drivers/media/i2c/ml86v7667.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/media/i2c/ml86v7667.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/media/i2c/ml86v7667.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/media/i2c/ml86v7667.ko] undefined!
ERROR: "v4l2_device_unregister_subdev" [drivers/media/i2c/ml86v7667.ko] undefined!
ERROR: "v4l2_ctrl_handler_free" [drivers/media/i2c/ml86v7667.ko] undefined!
ERROR: "vb2_fop_release" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "v4l2_fh_open" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "vb2_fop_mmap" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "video_ioctl2" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "vb2_fop_poll" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "vb2_fop_read" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "vb2_ops_wait_finish" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "vb2_ops_wait_prepare" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "vb2_ioctl_streamoff" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "vb2_ioctl_streamon" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "vb2_ioctl_prepare_buf" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "vb2_ioctl_create_bufs" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "vb2_ioctl_dqbuf" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "vb2_ioctl_qbuf" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "vb2_ioctl_querybuf" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "vb2_ioctl_reqbufs" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "i2c_del_driver" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "i2c_register_driver" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "_dev_warn" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "__video_register_device" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "devm_nvmem_register" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "__pm_runtime_use_autosuspend" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "pm_runtime_set_autosuspend_delay" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "snprintf" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "vb2_queue_init" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "vb2_vmalloc_memops" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "__mutex_init" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "v4l2_device_register" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "__regmap_init_i2c" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "device_get_match_data" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "dev_fwnode" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "kmalloc_caches" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "__refrigerator" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "freezing_slow_path" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "debug_check_no_locks_held" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "system_freezing_cnt" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "__might_sleep" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "current_task" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "kthread_should_stop" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "schedule_timeout_interruptible" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "jiffies" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "ktime_get" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "vb2_plane_vaddr" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "set_freezable" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "wake_up_process" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "kthread_create_on_node" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "kthread_stop" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "vb2_buffer_done" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "__list_add_valid" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "sprintf" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "video_devdata" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "kfree" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "regmap_exit" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "mutex_destroy" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "v4l2_device_unregister" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "strscpy" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "video_unregister_device" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "__pm_runtime_set_status" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "usleep_range" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "msleep" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "regmap_write" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "__pm_runtime_suspend" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "ktime_get_mono_fast_ns" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "devm_hwmon_device_register_with_info" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "regmap_get_device" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "regmap_bulk_read" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/media/i2c/video-i2c.ko] undefined!
ERROR: "param_ops_bool" [drivers/media/i2c/ir-kbd-i2c.ko] undefined!
ERROR: "i2c_del_driver" [drivers/media/i2c/ir-kbd-i2c.ko] undefined!
ERROR: "i2c_register_driver" [drivers/media/i2c/ir-kbd-i2c.ko] undefined!
ERROR: "schedule_timeout" [drivers/media/i2c/ir-kbd-i2c.ko] undefined!
ERROR: "current_task" [drivers/media/i2c/ir-kbd-i2c.ko] undefined!
ERROR: "mutex_lock_interruptible_nested" [drivers/media/i2c/ir-kbd-i2c.ko] undefined!
ERROR: "memcmp" [drivers/media/i2c/ir-kbd-i2c.ko] undefined!
ERROR: "_dev_info" [drivers/media/i2c/ir-kbd-i2c.ko] undefined!
ERROR: "rc_free_device" [drivers/media/i2c/ir-kbd-i2c.ko] undefined!
ERROR: "rc_allocate_device" [drivers/media/i2c/ir-kbd-i2c.ko] undefined!
ERROR: "rc_register_device" [drivers/media/i2c/ir-kbd-i2c.ko] undefined!
ERROR: "i2c_new_dummy_device" [drivers/media/i2c/ir-kbd-i2c.ko] undefined!
ERROR: "init_timer_key" [drivers/media/i2c/ir-kbd-i2c.ko] undefined!
ERROR: "delayed_work_timer_fn" [drivers/media/i2c/ir-kbd-i2c.ko] undefined!
ERROR: "lockdep_init_map" [drivers/media/i2c/ir-kbd-i2c.ko] undefined!
ERROR: "__mutex_init" [drivers/media/i2c/ir-kbd-i2c.ko] undefined!
ERROR: "snprintf" [drivers/media/i2c/ir-kbd-i2c.ko] undefined!
ERROR: "devm_kmalloc" [drivers/media/i2c/ir-kbd-i2c.ko] undefined!
ERROR: "i2c_transfer" [drivers/media/i2c/ir-kbd-i2c.ko] undefined!
ERROR: "_dev_warn" [drivers/media/i2c/ir-kbd-i2c.ko] undefined!
ERROR: "mutex_unlock" [drivers/media/i2c/ir-kbd-i2c.ko] undefined!
ERROR: "rc_keydown" [drivers/media/i2c/ir-kbd-i2c.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/media/i2c/ir-kbd-i2c.ko] undefined!
ERROR: "queue_delayed_work_on" [drivers/media/i2c/ir-kbd-i2c.ko] undefined!
ERROR: "system_wq" [drivers/media/i2c/ir-kbd-i2c.ko] undefined!
ERROR: "__msecs_to_jiffies" [drivers/media/i2c/ir-kbd-i2c.ko] undefined!
ERROR: "mutex_trylock" [drivers/media/i2c/ir-kbd-i2c.ko] undefined!
ERROR: "_dev_err" [drivers/media/i2c/ir-kbd-i2c.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/media/i2c/ir-kbd-i2c.ko] undefined!
ERROR: "usleep_range" [drivers/media/i2c/ir-kbd-i2c.ko] undefined!
ERROR: "i2c_transfer_buffer_flags" [drivers/media/i2c/ir-kbd-i2c.ko] undefined!
ERROR: "rc_unregister_device" [drivers/media/i2c/ir-kbd-i2c.ko] undefined!
ERROR: "i2c_unregister_device" [drivers/media/i2c/ir-kbd-i2c.ko] undefined!
ERROR: "cancel_delayed_work_sync" [drivers/media/i2c/ir-kbd-i2c.ko] undefined!
ERROR: "param_ops_int" [drivers/media/i2c/upd64031a.ko] undefined!
ERROR: "i2c_del_driver" [drivers/media/i2c/upd64031a.ko] undefined!
ERROR: "i2c_register_driver" [drivers/media/i2c/upd64031a.ko] undefined!
ERROR: "v4l2_i2c_subdev_init" [drivers/media/i2c/upd64031a.ko] undefined!
ERROR: "devm_kmalloc" [drivers/media/i2c/upd64031a.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/media/i2c/upd64031a.ko] undefined!
ERROR: "printk" [drivers/media/i2c/upd64031a.ko] undefined!
ERROR: "i2c_transfer_buffer_flags" [drivers/media/i2c/upd64031a.ko] undefined!
ERROR: "v4l2_device_unregister_subdev" [drivers/media/i2c/upd64031a.ko] undefined!
ERROR: "i2c_del_driver" [drivers/media/i2c/vp27smpx.ko] undefined!
ERROR: "i2c_register_driver" [drivers/media/i2c/vp27smpx.ko] undefined!
ERROR: "v4l2_i2c_subdev_init" [drivers/media/i2c/vp27smpx.ko] undefined!
ERROR: "devm_kmalloc" [drivers/media/i2c/vp27smpx.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/media/i2c/vp27smpx.ko] undefined!
ERROR: "i2c_transfer_buffer_flags" [drivers/media/i2c/vp27smpx.ko] undefined!
ERROR: "printk" [drivers/media/i2c/vp27smpx.ko] undefined!
ERROR: "v4l2_device_unregister_subdev" [drivers/media/i2c/vp27smpx.ko] undefined!
ERROR: "i2c_del_driver" [drivers/media/i2c/wm8775.ko] undefined!
ERROR: "i2c_register_driver" [drivers/media/i2c/wm8775.ko] undefined!
ERROR: "v4l2_ctrl_new_std" [drivers/media/i2c/wm8775.ko] undefined!
ERROR: "v4l2_ctrl_handler_init_class" [drivers/media/i2c/wm8775.ko] undefined!
ERROR: "v4l2_i2c_subdev_init" [drivers/media/i2c/wm8775.ko] undefined!
ERROR: "devm_kmalloc" [drivers/media/i2c/wm8775.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/media/i2c/wm8775.ko] undefined!
ERROR: "v4l2_ctrl_g_ctrl" [drivers/media/i2c/wm8775.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/media/i2c/wm8775.ko] undefined!
ERROR: "v4l2_ctrl_handler_log_status" [drivers/media/i2c/wm8775.ko] undefined!
ERROR: "printk" [drivers/media/i2c/wm8775.ko] undefined!
ERROR: "v4l2_ctrl_handler_free" [drivers/media/i2c/wm8775.ko] undefined!
ERROR: "v4l2_device_unregister_subdev" [drivers/media/i2c/wm8775.ko] undefined!
ERROR: "i2c_del_driver" [drivers/media/i2c/uda1342.ko] undefined!
ERROR: "i2c_register_driver" [drivers/media/i2c/uda1342.ko] undefined!
ERROR: "printk" [drivers/media/i2c/uda1342.ko] undefined!
ERROR: "i2c_smbus_write_word_data" [drivers/media/i2c/uda1342.ko] undefined!
ERROR: "v4l2_i2c_subdev_init" [drivers/media/i2c/uda1342.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/media/i2c/uda1342.ko] undefined!
ERROR: "devm_kmalloc" [drivers/media/i2c/uda1342.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/media/i2c/uda1342.ko] undefined!
ERROR: "v4l2_device_unregister_subdev" [drivers/media/i2c/uda1342.ko] undefined!
ERROR: "i2c_del_driver" [drivers/media/i2c/cs3308.ko] undefined!
ERROR: "i2c_register_driver" [drivers/media/i2c/cs3308.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/media/i2c/cs3308.ko] undefined!
ERROR: "v4l2_i2c_subdev_init" [drivers/media/i2c/cs3308.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/media/i2c/cs3308.ko] undefined!
ERROR: "kmalloc_caches" [drivers/media/i2c/cs3308.ko] undefined!
ERROR: "printk" [drivers/media/i2c/cs3308.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/media/i2c/cs3308.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/media/i2c/cs3308.ko] undefined!
ERROR: "kfree" [drivers/media/i2c/cs3308.ko] undefined!
ERROR: "v4l2_device_unregister_subdev" [drivers/media/i2c/cs3308.ko] undefined!
ERROR: "i2c_del_driver" [drivers/media/i2c/tw9910.ko] undefined!
ERROR: "i2c_register_driver" [drivers/media/i2c/tw9910.ko] undefined!
ERROR: "v4l2_async_register_subdev" [drivers/media/i2c/tw9910.ko] undefined!
ERROR: "clk_get" [drivers/media/i2c/tw9910.ko] undefined!
ERROR: "v4l2_i2c_subdev_init" [drivers/media/i2c/tw9910.ko] undefined!
ERROR: "devm_kmalloc" [drivers/media/i2c/tw9910.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/media/i2c/tw9910.ko] undefined!
ERROR: "clk_disable" [drivers/media/i2c/tw9910.ko] undefined!
ERROR: "_dev_info" [drivers/media/i2c/tw9910.ko] undefined!
ERROR: "clk_unprepare" [drivers/media/i2c/tw9910.ko] undefined!
ERROR: "gpiod_get_optional" [drivers/media/i2c/tw9910.ko] undefined!
ERROR: "clk_enable" [drivers/media/i2c/tw9910.ko] undefined!
ERROR: "clk_prepare" [drivers/media/i2c/tw9910.ko] undefined!
ERROR: "gpiod_set_value" [drivers/media/i2c/tw9910.ko] undefined!
ERROR: "_dev_err" [drivers/media/i2c/tw9910.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/media/i2c/tw9910.ko] undefined!
ERROR: "usleep_range" [drivers/media/i2c/tw9910.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/media/i2c/tw9910.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/media/i2c/tw9910.ko] undefined!
ERROR: "v4l2_async_unregister_subdev" [drivers/media/i2c/tw9910.ko] undefined!
ERROR: "clk_put" [drivers/media/i2c/tw9910.ko] undefined!
ERROR: "gpiod_put" [drivers/media/i2c/tw9910.ko] undefined!
ERROR: "i2c_del_driver" [drivers/media/i2c/tw2804.ko] undefined!
ERROR: "i2c_register_driver" [drivers/media/i2c/tw2804.ko] undefined!
ERROR: "v4l2_ctrl_new_std" [drivers/media/i2c/tw2804.ko] undefined!
ERROR: "v4l2_ctrl_handler_init_class" [drivers/media/i2c/tw2804.ko] undefined!
ERROR: "v4l2_i2c_subdev_init" [drivers/media/i2c/tw2804.ko] undefined!
ERROR: "devm_kmalloc" [drivers/media/i2c/tw2804.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/media/i2c/tw2804.ko] undefined!
ERROR: "v4l2_ctrl_subdev_log_status" [drivers/media/i2c/tw2804.ko] undefined!
ERROR: "printk" [drivers/media/i2c/tw2804.ko] undefined!
ERROR: "_dev_err" [drivers/media/i2c/tw2804.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/media/i2c/tw2804.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/media/i2c/tw2804.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/media/i2c/tw2804.ko] undefined!
ERROR: "v4l2_ctrl_handler_free" [drivers/media/i2c/tw2804.ko] undefined!
ERROR: "v4l2_device_unregister_subdev" [drivers/media/i2c/tw2804.ko] undefined!
ERROR: "param_ops_int" [drivers/media/i2c/tvp5150.ko] undefined!
ERROR: "i2c_del_driver" [drivers/media/i2c/tvp5150.ko] undefined!
ERROR: "i2c_register_driver" [drivers/media/i2c/tvp5150.ko] undefined!
ERROR: "v4l2_async_register_subdev" [drivers/media/i2c/tvp5150.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/media/i2c/tvp5150.ko] undefined!
ERROR: "v4l2_ctrl_new_std_menu_items" [drivers/media/i2c/tvp5150.ko] undefined!
ERROR: "v4l2_ctrl_new_std" [drivers/media/i2c/tvp5150.ko] undefined!
ERROR: "v4l2_ctrl_handler_init_class" [drivers/media/i2c/tvp5150.ko] undefined!
ERROR: "_dev_info" [drivers/media/i2c/tvp5150.ko] undefined!
ERROR: "regmap_bulk_read" [drivers/media/i2c/tvp5150.ko] undefined!
ERROR: "v4l2_i2c_subdev_init" [drivers/media/i2c/tvp5150.ko] undefined!
ERROR: "of_node_put" [drivers/media/i2c/tvp5150.ko] undefined!
ERROR: "v4l2_fwnode_endpoint_parse" [drivers/media/i2c/tvp5150.ko] undefined!
ERROR: "of_graph_get_next_endpoint" [drivers/media/i2c/tvp5150.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/media/i2c/tvp5150.ko] undefined!
ERROR: "devm_kmalloc" [drivers/media/i2c/tvp5150.ko] undefined!
ERROR: "usleep_range" [drivers/media/i2c/tvp5150.ko] undefined!
ERROR: "__const_udelay" [drivers/media/i2c/tvp5150.ko] undefined!
ERROR: "msleep" [drivers/media/i2c/tvp5150.ko] undefined!
ERROR: "gpiod_set_value_cansleep" [drivers/media/i2c/tvp5150.ko] undefined!
ERROR: "devm_gpiod_get_optional" [drivers/media/i2c/tvp5150.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/media/i2c/tvp5150.ko] undefined!
ERROR: "v4l2_ctrl_handler_free" [drivers/media/i2c/tvp5150.ko] undefined!
ERROR: "v4l2_async_unregister_subdev" [drivers/media/i2c/tvp5150.ko] undefined!
ERROR: "v4l2_ctrl_handler_setup" [drivers/media/i2c/tvp5150.ko] undefined!
ERROR: "_dev_err" [drivers/media/i2c/tvp5150.ko] undefined!
ERROR: "v4l_bound_align_image" [drivers/media/i2c/tvp5150.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/media/i2c/tvp5150.ko] undefined!
ERROR: "v4l2_subdev_notify_event" [drivers/media/i2c/tvp5150.ko] undefined!
ERROR: "dev_printk" [drivers/media/i2c/tvp5150.ko] undefined!
ERROR: "regmap_write" [drivers/media/i2c/tvp5150.ko] undefined!
ERROR: "regmap_read" [drivers/media/i2c/tvp5150.ko] undefined!
ERROR: "param_ops_int" [drivers/media/i2c/ths8200.ko] undefined!
ERROR: "i2c_del_driver" [drivers/media/i2c/ths8200.ko] undefined!
ERROR: "i2c_register_driver" [drivers/media/i2c/ths8200.ko] undefined!
ERROR: "v4l2_find_dv_timings_cap" [drivers/media/i2c/ths8200.ko] undefined!
ERROR: "v4l2_valid_dv_timings" [drivers/media/i2c/ths8200.ko] undefined!
ERROR: "v4l2_async_unregister_subdev" [drivers/media/i2c/ths8200.ko] undefined!
ERROR: "v4l2_print_dv_timings" [drivers/media/i2c/ths8200.ko] undefined!
ERROR: "v4l2_async_register_subdev" [drivers/media/i2c/ths8200.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/media/i2c/ths8200.ko] undefined!
ERROR: "v4l2_i2c_subdev_init" [drivers/media/i2c/ths8200.ko] undefined!
ERROR: "devm_kmalloc" [drivers/media/i2c/ths8200.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/media/i2c/ths8200.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/media/i2c/ths8200.ko] undefined!
ERROR: "v4l2_enum_dv_timings_cap" [drivers/media/i2c/ths8200.ko] undefined!
ERROR: "printk" [drivers/media/i2c/ths8200.ko] undefined!
ERROR: "param_ops_int" [drivers/media/i2c/ks0127.ko] undefined!
ERROR: "i2c_del_driver" [drivers/media/i2c/ks0127.ko] undefined!
ERROR: "i2c_register_driver" [drivers/media/i2c/ks0127.ko] undefined!
ERROR: "msleep" [drivers/media/i2c/ks0127.ko] undefined!
ERROR: "__const_udelay" [drivers/media/i2c/ks0127.ko] undefined!
ERROR: "v4l2_i2c_subdev_init" [drivers/media/i2c/ks0127.ko] undefined!
ERROR: "devm_kmalloc" [drivers/media/i2c/ks0127.ko] undefined!
ERROR: "schedule_timeout_interruptible" [drivers/media/i2c/ks0127.ko] undefined!
ERROR: "i2c_transfer" [drivers/media/i2c/ks0127.ko] undefined!
ERROR: "v4l2_device_unregister_subdev" [drivers/media/i2c/ks0127.ko] undefined!
ERROR: "printk" [drivers/media/i2c/ks0127.ko] undefined!
ERROR: "i2c_transfer_buffer_flags" [drivers/media/i2c/ks0127.ko] undefined!
ERROR: "param_ops_int" [drivers/media/i2c/bt856.ko] undefined!
ERROR: "i2c_del_driver" [drivers/media/i2c/bt856.ko] undefined!
ERROR: "i2c_register_driver" [drivers/media/i2c/bt856.ko] undefined!
ERROR: "v4l2_i2c_subdev_init" [drivers/media/i2c/bt856.ko] undefined!
ERROR: "devm_kmalloc" [drivers/media/i2c/bt856.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/media/i2c/bt856.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/media/i2c/bt856.ko] undefined!
ERROR: "printk" [drivers/media/i2c/bt856.ko] undefined!
ERROR: "v4l2_device_unregister_subdev" [drivers/media/i2c/bt856.ko] undefined!
ERROR: "param_ops_int" [drivers/media/i2c/adv7343.ko] undefined!
ERROR: "i2c_del_driver" [drivers/media/i2c/adv7343.ko] undefined!
ERROR: "i2c_register_driver" [drivers/media/i2c/adv7343.ko] undefined!
ERROR: "v4l2_async_unregister_subdev" [drivers/media/i2c/adv7343.ko] undefined!
ERROR: "v4l2_async_register_subdev" [drivers/media/i2c/adv7343.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/media/i2c/adv7343.ko] undefined!
ERROR: "of_find_property" [drivers/media/i2c/adv7343.ko] undefined!
ERROR: "of_node_put" [drivers/media/i2c/adv7343.ko] undefined!
ERROR: "of_graph_get_next_endpoint" [drivers/media/i2c/adv7343.ko] undefined!
ERROR: "v4l2_ctrl_handler_free" [drivers/media/i2c/adv7343.ko] undefined!
ERROR: "v4l2_ctrl_handler_setup" [drivers/media/i2c/adv7343.ko] undefined!
ERROR: "v4l2_ctrl_new_std" [drivers/media/i2c/adv7343.ko] undefined!
ERROR: "v4l2_ctrl_handler_init_class" [drivers/media/i2c/adv7343.ko] undefined!
ERROR: "v4l2_i2c_subdev_init" [drivers/media/i2c/adv7343.ko] undefined!
ERROR: "devm_kmalloc" [drivers/media/i2c/adv7343.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/media/i2c/adv7343.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/media/i2c/adv7343.ko] undefined!
ERROR: "printk" [drivers/media/i2c/adv7343.ko] undefined!
ERROR: "param_ops_int" [drivers/media/i2c/adv7175.ko] undefined!
ERROR: "i2c_del_driver" [drivers/media/i2c/adv7175.ko] undefined!
ERROR: "i2c_register_driver" [drivers/media/i2c/adv7175.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/media/i2c/adv7175.ko] undefined!
ERROR: "v4l2_i2c_subdev_init" [drivers/media/i2c/adv7175.ko] undefined!
ERROR: "devm_kmalloc" [drivers/media/i2c/adv7175.ko] undefined!
ERROR: "i2c_transfer_buffer_flags" [drivers/media/i2c/adv7175.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/media/i2c/adv7175.ko] undefined!
ERROR: "printk" [drivers/media/i2c/adv7175.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/media/i2c/adv7175.ko] undefined!
ERROR: "v4l2_device_unregister_subdev" [drivers/media/i2c/adv7175.ko] undefined!
ERROR: "param_ops_int" [drivers/media/i2c/saa7127.ko] undefined!
ERROR: "i2c_del_driver" [drivers/media/i2c/saa7127.ko] undefined!
ERROR: "i2c_register_driver" [drivers/media/i2c/saa7127.ko] undefined!
ERROR: "strscpy" [drivers/media/i2c/saa7127.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/media/i2c/saa7127.ko] undefined!
ERROR: "v4l2_i2c_subdev_init" [drivers/media/i2c/saa7127.ko] undefined!
ERROR: "devm_kmalloc" [drivers/media/i2c/saa7127.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/media/i2c/saa7127.ko] undefined!
ERROR: "v4l2_device_unregister_subdev" [drivers/media/i2c/saa7127.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/media/i2c/saa7127.ko] undefined!
ERROR: "printk" [drivers/media/i2c/saa7127.ko] undefined!
ERROR: "param_ops_int" [drivers/media/i2c/saa717x.ko] undefined!
ERROR: "i2c_del_driver" [drivers/media/i2c/saa717x.ko] undefined!
ERROR: "i2c_register_driver" [drivers/media/i2c/saa717x.ko] undefined!
ERROR: "schedule_timeout" [drivers/media/i2c/saa717x.ko] undefined!
ERROR: "current_task" [drivers/media/i2c/saa717x.ko] undefined!
ERROR: "v4l2_ctrl_handler_setup" [drivers/media/i2c/saa717x.ko] undefined!
ERROR: "v4l2_ctrl_new_std" [drivers/media/i2c/saa717x.ko] undefined!
ERROR: "v4l2_ctrl_handler_init_class" [drivers/media/i2c/saa717x.ko] undefined!
ERROR: "v4l2_i2c_subdev_init" [drivers/media/i2c/saa717x.ko] undefined!
ERROR: "devm_kmalloc" [drivers/media/i2c/saa717x.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/media/i2c/saa717x.ko] undefined!
ERROR: "i2c_transfer" [drivers/media/i2c/saa717x.ko] undefined!
ERROR: "v4l2_ctrl_handler_log_status" [drivers/media/i2c/saa717x.ko] undefined!
ERROR: "printk" [drivers/media/i2c/saa717x.ko] undefined!
ERROR: "v4l2_ctrl_handler_free" [drivers/media/i2c/saa717x.ko] undefined!
ERROR: "v4l2_device_unregister_subdev" [drivers/media/i2c/saa717x.ko] undefined!
ERROR: "__kfifo_out" [drivers/media/i2c/cx25840/cx25840.ko] undefined!
ERROR: "v4l2_ctrl_cluster" [drivers/media/i2c/cx25840/cx25840.ko] undefined!
ERROR: "param_ops_int" [drivers/media/i2c/cx25840/cx25840.ko] undefined!
ERROR: "__kfifo_alloc" [drivers/media/i2c/cx25840/cx25840.ko] undefined!
ERROR: "i2c_del_driver" [drivers/media/i2c/cx25840/cx25840.ko] undefined!
ERROR: "v4l2_subdev_call_wrappers" [drivers/media/i2c/cx25840/cx25840.ko] undefined!
ERROR: "autoremove_wake_function" [drivers/media/i2c/cx25840/cx25840.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/media/i2c/cx25840/cx25840.ko] undefined!
ERROR: "i2c_transfer" [drivers/media/i2c/cx25840/cx25840.ko] undefined!
ERROR: "v4l2_ctrl_handler_free" [drivers/media/i2c/cx25840/cx25840.ko] undefined!
ERROR: "v4l2_ctrl_new_std" [drivers/media/i2c/cx25840/cx25840.ko] undefined!
ERROR: "__const_udelay" [drivers/media/i2c/cx25840/cx25840.ko] undefined!
ERROR: "mutex_unlock" [drivers/media/i2c/cx25840/cx25840.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/media/i2c/cx25840/cx25840.ko] undefined!
ERROR: "param_ops_charp" [drivers/media/i2c/cx25840/cx25840.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/media/i2c/cx25840/cx25840.ko] undefined!
ERROR: "current_task" [drivers/media/i2c/cx25840/cx25840.ko] undefined!
ERROR: "__mutex_init" [drivers/media/i2c/cx25840/cx25840.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/media/i2c/cx25840/cx25840.ko] undefined!
ERROR: "printk" [drivers/media/i2c/cx25840/cx25840.ko] undefined!
ERROR: "destroy_workqueue" [drivers/media/i2c/cx25840/cx25840.ko] undefined!
ERROR: "v4l2_device_unregister_subdev" [drivers/media/i2c/cx25840/cx25840.ko] undefined!
ERROR: "i2c_register_driver" [drivers/media/i2c/cx25840/cx25840.ko] undefined!
ERROR: "schedule" [drivers/media/i2c/cx25840/cx25840.ko] undefined!
ERROR: "v4l2_ctrl_handler_setup" [drivers/media/i2c/cx25840/cx25840.ko] undefined!
ERROR: "v4l2_ctrl_handler_log_status" [drivers/media/i2c/cx25840/cx25840.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/media/i2c/cx25840/cx25840.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/media/i2c/cx25840/cx25840.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/media/i2c/cx25840/cx25840.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/media/i2c/cx25840/cx25840.ko] undefined!
ERROR: "__kfifo_free" [drivers/media/i2c/cx25840/cx25840.ko] undefined!
ERROR: "__wake_up" [drivers/media/i2c/cx25840/cx25840.ko] undefined!
ERROR: "i2c_transfer_buffer_flags" [drivers/media/i2c/cx25840/cx25840.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/media/i2c/cx25840/cx25840.ko] undefined!
ERROR: "prepare_to_wait" [drivers/media/i2c/cx25840/cx25840.ko] undefined!
ERROR: "v4l2_ctrl_handler_init_class" [drivers/media/i2c/cx25840/cx25840.ko] undefined!
ERROR: "lockdep_init_map" [drivers/media/i2c/cx25840/cx25840.ko] undefined!
ERROR: "request_firmware" [drivers/media/i2c/cx25840/cx25840.ko] undefined!
ERROR: "finish_wait" [drivers/media/i2c/cx25840/cx25840.ko] undefined!
ERROR: "__kfifo_in" [drivers/media/i2c/cx25840/cx25840.ko] undefined!
ERROR: "queue_work_on" [drivers/media/i2c/cx25840/cx25840.ko] undefined!
ERROR: "devm_kmalloc" [drivers/media/i2c/cx25840/cx25840.ko] undefined!
ERROR: "alloc_workqueue" [drivers/media/i2c/cx25840/cx25840.ko] undefined!
ERROR: "release_firmware" [drivers/media/i2c/cx25840/cx25840.ko] undefined!
ERROR: "v4l2_i2c_subdev_init" [drivers/media/i2c/cx25840/cx25840.ko] undefined!
ERROR: "param_ops_ushort" [drivers/i2c/i2c-stub.ko] undefined!
ERROR: "param_ops_ulong" [drivers/i2c/i2c-stub.ko] undefined!
ERROR: "param_ops_byte" [drivers/i2c/i2c-stub.ko] undefined!
ERROR: "param_array_ops" [drivers/i2c/i2c-stub.ko] undefined!
ERROR: "i2c_del_adapter" [drivers/i2c/i2c-stub.ko] undefined!
ERROR: "i2c_add_adapter" [drivers/i2c/i2c-stub.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/i2c/i2c-stub.ko] undefined!
ERROR: "printk" [drivers/i2c/i2c-stub.ko] undefined!
ERROR: "__kmalloc" [drivers/i2c/i2c-stub.ko] undefined!
ERROR: "kfree" [drivers/i2c/i2c-stub.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/i2c/i2c-stub.ko] undefined!
ERROR: "__list_add_valid" [drivers/i2c/i2c-stub.ko] undefined!
ERROR: "devm_kmalloc" [drivers/i2c/i2c-stub.ko] undefined!
ERROR: "no_llseek" [drivers/i2c/i2c-dev.ko] undefined!
ERROR: "bus_unregister_notifier" [drivers/i2c/i2c-dev.ko] undefined!
ERROR: "unregister_chrdev_region" [drivers/i2c/i2c-dev.ko] undefined!
ERROR: "i2c_for_each_dev" [drivers/i2c/i2c-dev.ko] undefined!
ERROR: "class_destroy" [drivers/i2c/i2c-dev.ko] undefined!
ERROR: "bus_register_notifier" [drivers/i2c/i2c-dev.ko] undefined!
ERROR: "i2c_bus_type" [drivers/i2c/i2c-dev.ko] undefined!
ERROR: "__class_create" [drivers/i2c/i2c-dev.ko] undefined!
ERROR: "register_chrdev_region" [drivers/i2c/i2c-dev.ko] undefined!
ERROR: "__msecs_to_jiffies" [drivers/i2c/i2c-dev.ko] undefined!
ERROR: "__put_user_4" [drivers/i2c/i2c-dev.ko] undefined!
ERROR: "__might_fault" [drivers/i2c/i2c-dev.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/i2c/i2c-dev.ko] undefined!
ERROR: "i2c_transfer" [drivers/i2c/i2c-dev.ko] undefined!
ERROR: "__kmalloc" [drivers/i2c/i2c-dev.ko] undefined!
ERROR: "snprintf" [drivers/i2c/i2c-dev.ko] undefined!
ERROR: "i2c_get_adapter" [drivers/i2c/i2c-dev.ko] undefined!
ERROR: "sprintf" [drivers/i2c/i2c-dev.ko] undefined!
ERROR: "device_destroy" [drivers/i2c/i2c-dev.ko] undefined!
ERROR: "printk" [drivers/i2c/i2c-dev.ko] undefined!
ERROR: "cdev_del" [drivers/i2c/i2c-dev.ko] undefined!
ERROR: "device_create" [drivers/i2c/i2c-dev.ko] undefined!
ERROR: "cdev_add" [drivers/i2c/i2c-dev.ko] undefined!
ERROR: "cdev_init" [drivers/i2c/i2c-dev.ko] undefined!
ERROR: "__list_add_valid" [drivers/i2c/i2c-dev.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/i2c/i2c-dev.ko] undefined!
ERROR: "kmalloc_caches" [drivers/i2c/i2c-dev.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/i2c/i2c-dev.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/i2c/i2c-dev.ko] undefined!
ERROR: "i2c_transfer_buffer_flags" [drivers/i2c/i2c-dev.ko] undefined!
ERROR: "memdup_user" [drivers/i2c/i2c-dev.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/i2c/i2c-dev.ko] undefined!
ERROR: "_copy_to_user" [drivers/i2c/i2c-dev.ko] undefined!
ERROR: "_copy_from_user" [drivers/i2c/i2c-dev.ko] undefined!
ERROR: "i2c_smbus_xfer" [drivers/i2c/i2c-dev.ko] undefined!
ERROR: "i2c_verify_client" [drivers/i2c/i2c-dev.ko] undefined!
ERROR: "device_for_each_child" [drivers/i2c/i2c-dev.ko] undefined!
ERROR: "i2c_adapter_type" [drivers/i2c/i2c-dev.ko] undefined!
ERROR: "kfree" [drivers/i2c/i2c-dev.ko] undefined!
ERROR: "i2c_put_adapter" [drivers/i2c/i2c-dev.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/i2c/i2c-dev.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/i2c/i2c-dev.ko] undefined!
ERROR: "i2c_del_driver" [drivers/i2c/muxes/i2c-mux-pca954x.ko] undefined!
ERROR: "i2c_register_driver" [drivers/i2c/muxes/i2c-mux-pca954x.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/i2c/muxes/i2c-mux-pca954x.ko] undefined!
ERROR: "kstrtoint" [drivers/i2c/muxes/i2c-mux-pca954x.ko] undefined!
ERROR: "__i2c_smbus_xfer" [drivers/i2c/muxes/i2c-mux-pca954x.ko] undefined!
ERROR: "_dev_warn" [drivers/i2c/muxes/i2c-mux-pca954x.ko] undefined!
ERROR: "_dev_info" [drivers/i2c/muxes/i2c-mux-pca954x.ko] undefined!
ERROR: "_dev_err" [drivers/i2c/muxes/i2c-mux-pca954x.ko] undefined!
ERROR: "device_create_file" [drivers/i2c/muxes/i2c-mux-pca954x.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/i2c/muxes/i2c-mux-pca954x.ko] undefined!
ERROR: "i2c_mux_add_adapter" [drivers/i2c/muxes/i2c-mux-pca954x.ko] undefined!
ERROR: "irq_set_chip_and_handler_name" [drivers/i2c/muxes/i2c-mux-pca954x.ko] undefined!
ERROR: "handle_simple_irq" [drivers/i2c/muxes/i2c-mux-pca954x.ko] undefined!
ERROR: "irq_set_chip_data" [drivers/i2c/muxes/i2c-mux-pca954x.ko] undefined!
ERROR: "irq_create_mapping" [drivers/i2c/muxes/i2c-mux-pca954x.ko] undefined!
ERROR: "__irq_domain_add" [drivers/i2c/muxes/i2c-mux-pca954x.ko] undefined!
ERROR: "irq_domain_simple_ops" [drivers/i2c/muxes/i2c-mux-pca954x.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/i2c/muxes/i2c-mux-pca954x.ko] undefined!
ERROR: "of_find_property" [drivers/i2c/muxes/i2c-mux-pca954x.ko] undefined!
ERROR: "i2c_get_device_id" [drivers/i2c/muxes/i2c-mux-pca954x.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/i2c/muxes/i2c-mux-pca954x.ko] undefined!
ERROR: "gpiod_set_value_cansleep" [drivers/i2c/muxes/i2c-mux-pca954x.ko] undefined!
ERROR: "__const_udelay" [drivers/i2c/muxes/i2c-mux-pca954x.ko] undefined!
ERROR: "devm_gpiod_get_optional" [drivers/i2c/muxes/i2c-mux-pca954x.ko] undefined!
ERROR: "i2c_mux_alloc" [drivers/i2c/muxes/i2c-mux-pca954x.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/i2c/muxes/i2c-mux-pca954x.ko] undefined!
ERROR: "handle_nested_irq" [drivers/i2c/muxes/i2c-mux-pca954x.ko] undefined!
ERROR: "i2c_smbus_read_byte" [drivers/i2c/muxes/i2c-mux-pca954x.ko] undefined!
ERROR: "sprintf" [drivers/i2c/muxes/i2c-mux-pca954x.ko] undefined!
ERROR: "i2c_mux_del_adapters" [drivers/i2c/muxes/i2c-mux-pca954x.ko] undefined!
ERROR: "irq_domain_remove" [drivers/i2c/muxes/i2c-mux-pca954x.ko] undefined!
ERROR: "irq_dispose_mapping" [drivers/i2c/muxes/i2c-mux-pca954x.ko] undefined!
ERROR: "irq_find_mapping" [drivers/i2c/muxes/i2c-mux-pca954x.ko] undefined!
ERROR: "device_remove_file" [drivers/i2c/muxes/i2c-mux-pca954x.ko] undefined!
ERROR: "i2c_smbus_write_byte" [drivers/i2c/muxes/i2c-mux-pca954x.ko] undefined!
ERROR: "i2c_del_driver" [drivers/i2c/muxes/i2c-mux-mlxcpld.ko] undefined!
ERROR: "i2c_register_driver" [drivers/i2c/muxes/i2c-mux-mlxcpld.ko] undefined!
ERROR: "__i2c_smbus_xfer" [drivers/i2c/muxes/i2c-mux-mlxcpld.ko] undefined!
ERROR: "i2c_mux_add_adapter" [drivers/i2c/muxes/i2c-mux-mlxcpld.ko] undefined!
ERROR: "i2c_mux_alloc" [drivers/i2c/muxes/i2c-mux-mlxcpld.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/i2c/muxes/i2c-mux-mlxcpld.ko] undefined!
ERROR: "i2c_mux_del_adapters" [drivers/i2c/muxes/i2c-mux-mlxcpld.ko] undefined!
ERROR: "i2c_del_driver" [drivers/i2c/muxes/i2c-mux-ltc4306.ko] undefined!
ERROR: "i2c_register_driver" [drivers/i2c/muxes/i2c-mux-ltc4306.ko] undefined!
ERROR: "regmap_read" [drivers/i2c/muxes/i2c-mux-ltc4306.ko] undefined!
ERROR: "gpiochip_get_data" [drivers/i2c/muxes/i2c-mux-ltc4306.ko] undefined!
ERROR: "_dev_info" [drivers/i2c/muxes/i2c-mux-ltc4306.ko] undefined!
ERROR: "_dev_warn" [drivers/i2c/muxes/i2c-mux-ltc4306.ko] undefined!
ERROR: "_dev_err" [drivers/i2c/muxes/i2c-mux-ltc4306.ko] undefined!
ERROR: "i2c_match_id" [drivers/i2c/muxes/i2c-mux-ltc4306.ko] undefined!
ERROR: "i2c_mux_add_adapter" [drivers/i2c/muxes/i2c-mux-ltc4306.ko] undefined!
ERROR: "devm_gpiochip_add_data" [drivers/i2c/muxes/i2c-mux-ltc4306.ko] undefined!
ERROR: "regmap_get_device" [drivers/i2c/muxes/i2c-mux-ltc4306.ko] undefined!
ERROR: "regmap_write" [drivers/i2c/muxes/i2c-mux-ltc4306.ko] undefined!
ERROR: "gpiod_set_value" [drivers/i2c/muxes/i2c-mux-ltc4306.ko] undefined!
ERROR: "__const_udelay" [drivers/i2c/muxes/i2c-mux-ltc4306.ko] undefined!
ERROR: "devm_gpiod_get_optional" [drivers/i2c/muxes/i2c-mux-ltc4306.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/i2c/muxes/i2c-mux-ltc4306.ko] undefined!
ERROR: "i2c_mux_alloc" [drivers/i2c/muxes/i2c-mux-ltc4306.ko] undefined!
ERROR: "device_property_present" [drivers/i2c/muxes/i2c-mux-ltc4306.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/i2c/muxes/i2c-mux-ltc4306.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/i2c/muxes/i2c-mux-ltc4306.ko] undefined!
ERROR: "i2c_mux_del_adapters" [drivers/i2c/muxes/i2c-mux-ltc4306.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/i2c/muxes/i2c-demux-pinctrl.ko] undefined!
ERROR: "__platform_driver_register" [drivers/i2c/muxes/i2c-demux-pinctrl.ko] undefined!
ERROR: "device_create_file" [drivers/i2c/muxes/i2c-demux-pinctrl.ko] undefined!
ERROR: "pm_runtime_no_callbacks" [drivers/i2c/muxes/i2c-demux-pinctrl.ko] undefined!
ERROR: "of_changeset_action" [drivers/i2c/muxes/i2c-demux-pinctrl.ko] undefined!
ERROR: "of_changeset_init" [drivers/i2c/muxes/i2c-demux-pinctrl.ko] undefined!
ERROR: "devm_kstrdup" [drivers/i2c/muxes/i2c-demux-pinctrl.ko] undefined!
ERROR: "of_parse_phandle" [drivers/i2c/muxes/i2c-demux-pinctrl.ko] undefined!
ERROR: "of_property_read_string" [drivers/i2c/muxes/i2c-demux-pinctrl.ko] undefined!
ERROR: "devm_kmalloc" [drivers/i2c/muxes/i2c-demux-pinctrl.ko] undefined!
ERROR: "of_count_phandle_with_args" [drivers/i2c/muxes/i2c-demux-pinctrl.ko] undefined!
ERROR: "kstrtouint" [drivers/i2c/muxes/i2c-demux-pinctrl.ko] undefined!
ERROR: "of_changeset_destroy" [drivers/i2c/muxes/i2c-demux-pinctrl.ko] undefined!
ERROR: "of_node_put" [drivers/i2c/muxes/i2c-demux-pinctrl.ko] undefined!
ERROR: "device_remove_file" [drivers/i2c/muxes/i2c-demux-pinctrl.ko] undefined!
ERROR: "i2c_del_adapter" [drivers/i2c/muxes/i2c-demux-pinctrl.ko] undefined!
ERROR: "sprintf" [drivers/i2c/muxes/i2c-demux-pinctrl.ko] undefined!
ERROR: "__i2c_transfer" [drivers/i2c/muxes/i2c-demux-pinctrl.ko] undefined!
ERROR: "_dev_err" [drivers/i2c/muxes/i2c-demux-pinctrl.ko] undefined!
ERROR: "of_changeset_revert" [drivers/i2c/muxes/i2c-demux-pinctrl.ko] undefined!
ERROR: "i2c_put_adapter" [drivers/i2c/muxes/i2c-demux-pinctrl.ko] undefined!
ERROR: "pinctrl_select_state" [drivers/i2c/muxes/i2c-demux-pinctrl.ko] undefined!
ERROR: "pinctrl_lookup_state" [drivers/i2c/muxes/i2c-demux-pinctrl.ko] undefined!
ERROR: "i2c_add_adapter" [drivers/i2c/muxes/i2c-demux-pinctrl.ko] undefined!
ERROR: "snprintf" [drivers/i2c/muxes/i2c-demux-pinctrl.ko] undefined!
ERROR: "devm_pinctrl_get" [drivers/i2c/muxes/i2c-demux-pinctrl.ko] undefined!
ERROR: "of_find_i2c_adapter_by_node" [drivers/i2c/muxes/i2c-demux-pinctrl.ko] undefined!
ERROR: "of_changeset_apply" [drivers/i2c/muxes/i2c-demux-pinctrl.ko] undefined!
ERROR: "scnprintf" [drivers/i2c/muxes/i2c-demux-pinctrl.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/i2c/muxes/i2c-demux-pinctrl.ko] undefined!
ERROR: "param_ops_int" [drivers/i2c/busses/i2c-viperboard.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/i2c/busses/i2c-viperboard.ko] undefined!
ERROR: "__platform_driver_register" [drivers/i2c/busses/i2c-viperboard.ko] undefined!
ERROR: "printk" [drivers/i2c/busses/i2c-viperboard.ko] undefined!
ERROR: "mutex_unlock" [drivers/i2c/busses/i2c-viperboard.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/i2c/busses/i2c-viperboard.ko] undefined!
ERROR: "i2c_add_adapter" [drivers/i2c/busses/i2c-viperboard.ko] undefined!
ERROR: "snprintf" [drivers/i2c/busses/i2c-viperboard.ko] undefined!
ERROR: "devm_kmalloc" [drivers/i2c/busses/i2c-viperboard.ko] undefined!
ERROR: "usb_bulk_msg" [drivers/i2c/busses/i2c-viperboard.ko] undefined!
ERROR: "_dev_err" [drivers/i2c/busses/i2c-viperboard.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/i2c/busses/i2c-viperboard.ko] undefined!
ERROR: "usb_control_msg" [drivers/i2c/busses/i2c-viperboard.ko] undefined!
ERROR: "i2c_del_adapter" [drivers/i2c/busses/i2c-viperboard.ko] undefined!
ERROR: "serio_unregister_driver" [drivers/i2c/busses/i2c-taos-evm.ko] undefined!
ERROR: "__serio_register_driver" [drivers/i2c/busses/i2c-taos-evm.ko] undefined!
ERROR: "i2c_new_device" [drivers/i2c/busses/i2c-taos-evm.ko] undefined!
ERROR: "strncmp" [drivers/i2c/busses/i2c-taos-evm.ko] undefined!
ERROR: "i2c_add_adapter" [drivers/i2c/busses/i2c-taos-evm.ko] undefined!
ERROR: "strlcpy" [drivers/i2c/busses/i2c-taos-evm.ko] undefined!
ERROR: "strchr" [drivers/i2c/busses/i2c-taos-evm.ko] undefined!
ERROR: "strstr" [drivers/i2c/busses/i2c-taos-evm.ko] undefined!
ERROR: "serio_open" [drivers/i2c/busses/i2c-taos-evm.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/i2c/busses/i2c-taos-evm.ko] undefined!
ERROR: "kmalloc_caches" [drivers/i2c/busses/i2c-taos-evm.ko] undefined!
ERROR: "__wake_up" [drivers/i2c/busses/i2c-taos-evm.ko] undefined!
ERROR: "_dev_warn" [drivers/i2c/busses/i2c-taos-evm.ko] undefined!
ERROR: "_dev_err" [drivers/i2c/busses/i2c-taos-evm.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/i2c/busses/i2c-taos-evm.ko] undefined!
ERROR: "kstrtou8" [drivers/i2c/busses/i2c-taos-evm.ko] undefined!
ERROR: "strcmp" [drivers/i2c/busses/i2c-taos-evm.ko] undefined!
ERROR: "finish_wait" [drivers/i2c/busses/i2c-taos-evm.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/i2c/busses/i2c-taos-evm.ko] undefined!
ERROR: "schedule_timeout" [drivers/i2c/busses/i2c-taos-evm.ko] undefined!
ERROR: "init_wait_entry" [drivers/i2c/busses/i2c-taos-evm.ko] undefined!
ERROR: "__might_sleep" [drivers/i2c/busses/i2c-taos-evm.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/i2c/busses/i2c-taos-evm.ko] undefined!
ERROR: "sprintf" [drivers/i2c/busses/i2c-taos-evm.ko] undefined!
ERROR: "_dev_info" [drivers/i2c/busses/i2c-taos-evm.ko] undefined!
ERROR: "kfree" [drivers/i2c/busses/i2c-taos-evm.ko] undefined!
ERROR: "serio_close" [drivers/i2c/busses/i2c-taos-evm.ko] undefined!
ERROR: "i2c_del_adapter" [drivers/i2c/busses/i2c-taos-evm.ko] undefined!
ERROR: "i2c_unregister_device" [drivers/i2c/busses/i2c-taos-evm.ko] undefined!
ERROR: "i2c_generic_scl_recovery" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "__platform_driver_register" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "__wake_up" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "__warn_printk" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "dev_driver_string" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "dma_direct_map_page" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "mem_section" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "__phys_addr" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "is_vmalloc_addr" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "schedule_timeout" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "finish_wait" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "init_wait_entry" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "reset_control_reset" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "i2c_recover_bus" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "__might_sleep" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "dma_request_chan" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "__const_udelay" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "dma_ops" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "_dev_info" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "_dev_err" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "reset_control_status" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "__devm_reset_control_get" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "i2c_add_numbered_adapter" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "platform_get_irq" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "of_find_property" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "clk_get_rate" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "sg_init_table" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "i2c_parse_fw_timings" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "strlcpy" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "platform_get_resource" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "devm_clk_get" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "devm_kmalloc" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "synchronize_irq" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "__pm_runtime_idle" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "dma_release_channel" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "i2c_del_adapter" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/i2c/busses/i2c-rcar.ko] undefined!
ERROR: "i2c_generic_scl_recovery" [drivers/i2c/busses/i2c-uniphier.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/i2c/busses/i2c-uniphier.ko] undefined!
ERROR: "__platform_driver_register" [drivers/i2c/busses/i2c-uniphier.ko] undefined!
ERROR: "i2c_add_adapter" [drivers/i2c/busses/i2c-uniphier.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/i2c/busses/i2c-uniphier.ko] undefined!
ERROR: "strlcpy" [drivers/i2c/busses/i2c-uniphier.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/i2c/busses/i2c-uniphier.ko] undefined!
ERROR: "clk_get_rate" [drivers/i2c/busses/i2c-uniphier.ko] undefined!
ERROR: "clk_enable" [drivers/i2c/busses/i2c-uniphier.ko] undefined!
ERROR: "clk_prepare" [drivers/i2c/busses/i2c-uniphier.ko] undefined!
ERROR: "devm_clk_get" [drivers/i2c/busses/i2c-uniphier.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/i2c/busses/i2c-uniphier.ko] undefined!
ERROR: "platform_get_irq" [drivers/i2c/busses/i2c-uniphier.ko] undefined!
ERROR: "devm_platform_ioremap_resource" [drivers/i2c/busses/i2c-uniphier.ko] undefined!
ERROR: "devm_kmalloc" [drivers/i2c/busses/i2c-uniphier.ko] undefined!
ERROR: "i2c_recover_bus" [drivers/i2c/busses/i2c-uniphier.ko] undefined!
ERROR: "_dev_err" [drivers/i2c/busses/i2c-uniphier.ko] undefined!
ERROR: "wait_for_completion_timeout" [drivers/i2c/busses/i2c-uniphier.ko] undefined!
ERROR: "complete" [drivers/i2c/busses/i2c-uniphier.ko] undefined!
ERROR: "i2c_del_adapter" [drivers/i2c/busses/i2c-uniphier.ko] undefined!
ERROR: "clk_unprepare" [drivers/i2c/busses/i2c-uniphier.ko] undefined!
ERROR: "clk_disable" [drivers/i2c/busses/i2c-uniphier.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/i2c/busses/i2c-sun6i-p2wi.ko] undefined!
ERROR: "__platform_driver_register" [drivers/i2c/busses/i2c-sun6i-p2wi.ko] undefined!
ERROR: "_dev_warn" [drivers/i2c/busses/i2c-sun6i-p2wi.ko] undefined!
ERROR: "i2c_add_adapter" [drivers/i2c/busses/i2c-sun6i-p2wi.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/i2c/busses/i2c-sun6i-p2wi.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/i2c/busses/i2c-sun6i-p2wi.ko] undefined!
ERROR: "reset_control_deassert" [drivers/i2c/busses/i2c-sun6i-p2wi.ko] undefined!
ERROR: "__devm_reset_control_get" [drivers/i2c/busses/i2c-sun6i-p2wi.ko] undefined!
ERROR: "clk_get_rate" [drivers/i2c/busses/i2c-sun6i-p2wi.ko] undefined!
ERROR: "clk_enable" [drivers/i2c/busses/i2c-sun6i-p2wi.ko] undefined!
ERROR: "clk_prepare" [drivers/i2c/busses/i2c-sun6i-p2wi.ko] undefined!
ERROR: "devm_clk_get" [drivers/i2c/busses/i2c-sun6i-p2wi.ko] undefined!
ERROR: "platform_get_irq" [drivers/i2c/busses/i2c-sun6i-p2wi.ko] undefined!
ERROR: "strlcpy" [drivers/i2c/busses/i2c-sun6i-p2wi.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/i2c/busses/i2c-sun6i-p2wi.ko] undefined!
ERROR: "platform_get_resource" [drivers/i2c/busses/i2c-sun6i-p2wi.ko] undefined!
ERROR: "of_get_next_available_child" [drivers/i2c/busses/i2c-sun6i-p2wi.ko] undefined!
ERROR: "devm_kmalloc" [drivers/i2c/busses/i2c-sun6i-p2wi.ko] undefined!
ERROR: "of_get_next_child" [drivers/i2c/busses/i2c-sun6i-p2wi.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/i2c/busses/i2c-sun6i-p2wi.ko] undefined!
ERROR: "_dev_err" [drivers/i2c/busses/i2c-sun6i-p2wi.ko] undefined!
ERROR: "wait_for_completion" [drivers/i2c/busses/i2c-sun6i-p2wi.ko] undefined!
ERROR: "complete" [drivers/i2c/busses/i2c-sun6i-p2wi.ko] undefined!
ERROR: "i2c_del_adapter" [drivers/i2c/busses/i2c-sun6i-p2wi.ko] undefined!
ERROR: "clk_unprepare" [drivers/i2c/busses/i2c-sun6i-p2wi.ko] undefined!
ERROR: "clk_disable" [drivers/i2c/busses/i2c-sun6i-p2wi.ko] undefined!
ERROR: "reset_control_assert" [drivers/i2c/busses/i2c-sun6i-p2wi.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/i2c/busses/i2c-stm32f4.ko] undefined!
ERROR: "__platform_driver_register" [drivers/i2c/busses/i2c-stm32f4.ko] undefined!
ERROR: "_dev_info" [drivers/i2c/busses/i2c-stm32f4.ko] undefined!
ERROR: "i2c_add_adapter" [drivers/i2c/busses/i2c-stm32f4.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/i2c/busses/i2c-stm32f4.ko] undefined!
ERROR: "snprintf" [drivers/i2c/busses/i2c-stm32f4.ko] undefined!
ERROR: "clk_get_rate" [drivers/i2c/busses/i2c-stm32f4.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/i2c/busses/i2c-stm32f4.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/i2c/busses/i2c-stm32f4.ko] undefined!
ERROR: "reset_control_deassert" [drivers/i2c/busses/i2c-stm32f4.ko] undefined!
ERROR: "__const_udelay" [drivers/i2c/busses/i2c-stm32f4.ko] undefined!
ERROR: "reset_control_assert" [drivers/i2c/busses/i2c-stm32f4.ko] undefined!
ERROR: "__devm_reset_control_get" [drivers/i2c/busses/i2c-stm32f4.ko] undefined!
ERROR: "clk_prepare" [drivers/i2c/busses/i2c-stm32f4.ko] undefined!
ERROR: "devm_clk_get" [drivers/i2c/busses/i2c-stm32f4.ko] undefined!
ERROR: "irq_of_parse_and_map" [drivers/i2c/busses/i2c-stm32f4.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/i2c/busses/i2c-stm32f4.ko] undefined!
ERROR: "platform_get_resource" [drivers/i2c/busses/i2c-stm32f4.ko] undefined!
ERROR: "devm_kmalloc" [drivers/i2c/busses/i2c-stm32f4.ko] undefined!
ERROR: "complete" [drivers/i2c/busses/i2c-stm32f4.ko] undefined!
ERROR: "_dev_err" [drivers/i2c/busses/i2c-stm32f4.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/i2c/busses/i2c-stm32f4.ko] undefined!
ERROR: "clk_disable" [drivers/i2c/busses/i2c-stm32f4.ko] undefined!
ERROR: "wait_for_completion_timeout" [drivers/i2c/busses/i2c-stm32f4.ko] undefined!
ERROR: "usleep_range" [drivers/i2c/busses/i2c-stm32f4.ko] undefined!
ERROR: "__might_sleep" [drivers/i2c/busses/i2c-stm32f4.ko] undefined!
ERROR: "ktime_get" [drivers/i2c/busses/i2c-stm32f4.ko] undefined!
ERROR: "clk_enable" [drivers/i2c/busses/i2c-stm32f4.ko] undefined!
ERROR: "clk_unprepare" [drivers/i2c/busses/i2c-stm32f4.ko] undefined!
ERROR: "i2c_del_adapter" [drivers/i2c/busses/i2c-stm32f4.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "__platform_driver_register" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "__warn_printk" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "dev_driver_string" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "schedule_timeout" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "dma_direct_map_page" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "finish_wait" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "init_wait_entry" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "i2c_put_dma_safe_msg_buf" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "__might_sleep" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "mem_section" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "__phys_addr" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "is_vmalloc_addr" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "i2c_get_dma_safe_msg_buf" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "dma_ops" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "_dev_info" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "i2c_add_numbered_adapter" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "strlcpy" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "sg_init_table" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "__pm_runtime_idle" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "platform_get_resource" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "devm_clk_get" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "devm_kmalloc" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "__wake_up" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "dma_request_chan" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "i2c_del_adapter" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "dma_release_channel" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "__const_udelay" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "iowrite8" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "ioread8" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "clk_get_rate" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "_dev_err" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/i2c/busses/i2c-sh_mobile.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/i2c/busses/i2c-pxa.ko] undefined!
ERROR: "__platform_driver_register" [drivers/i2c/busses/i2c-pxa.ko] undefined!
ERROR: "schedule_timeout" [drivers/i2c/busses/i2c-pxa.ko] undefined!
ERROR: "finish_wait" [drivers/i2c/busses/i2c-pxa.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/i2c/busses/i2c-pxa.ko] undefined!
ERROR: "init_wait_entry" [drivers/i2c/busses/i2c-pxa.ko] undefined!
ERROR: "__might_sleep" [drivers/i2c/busses/i2c-pxa.ko] undefined!
ERROR: "_raw_spin_unlock_irq" [drivers/i2c/busses/i2c-pxa.ko] undefined!
ERROR: "_raw_spin_lock_irq" [drivers/i2c/busses/i2c-pxa.ko] undefined!
ERROR: "jiffies" [drivers/i2c/busses/i2c-pxa.ko] undefined!
ERROR: "msleep" [drivers/i2c/busses/i2c-pxa.ko] undefined!
ERROR: "_dev_err" [drivers/i2c/busses/i2c-pxa.ko] undefined!
ERROR: "_dev_info" [drivers/i2c/busses/i2c-pxa.ko] undefined!
ERROR: "i2c_add_numbered_adapter" [drivers/i2c/busses/i2c-pxa.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/i2c/busses/i2c-pxa.ko] undefined!
ERROR: "clk_prepare" [drivers/i2c/busses/i2c-pxa.ko] undefined!
ERROR: "printk" [drivers/i2c/busses/i2c-pxa.ko] undefined!
ERROR: "clk_get_rate" [drivers/i2c/busses/i2c-pxa.ko] undefined!
ERROR: "clk_set_rate" [drivers/i2c/busses/i2c-pxa.ko] undefined!
ERROR: "devm_clk_get" [drivers/i2c/busses/i2c-pxa.ko] undefined!
ERROR: "strlcpy" [drivers/i2c/busses/i2c-pxa.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/i2c/busses/i2c-pxa.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/i2c/busses/i2c-pxa.ko] undefined!
ERROR: "of_get_property" [drivers/i2c/busses/i2c-pxa.ko] undefined!
ERROR: "of_match_device" [drivers/i2c/busses/i2c-pxa.ko] undefined!
ERROR: "platform_get_irq" [drivers/i2c/busses/i2c-pxa.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/i2c/busses/i2c-pxa.ko] undefined!
ERROR: "platform_get_resource" [drivers/i2c/busses/i2c-pxa.ko] undefined!
ERROR: "devm_kmalloc" [drivers/i2c/busses/i2c-pxa.ko] undefined!
ERROR: "__wake_up" [drivers/i2c/busses/i2c-pxa.ko] undefined!
ERROR: "clk_unprepare" [drivers/i2c/busses/i2c-pxa.ko] undefined!
ERROR: "i2c_del_adapter" [drivers/i2c/busses/i2c-pxa.ko] undefined!
ERROR: "clk_disable" [drivers/i2c/busses/i2c-pxa.ko] undefined!
ERROR: "clk_enable" [drivers/i2c/busses/i2c-pxa.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/i2c/busses/i2c-pxa.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/i2c/busses/i2c-pxa.ko] undefined!
ERROR: "__const_udelay" [drivers/i2c/busses/i2c-pxa.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/i2c/busses/i2c-pca-platform.ko] undefined!
ERROR: "__platform_driver_register" [drivers/i2c/busses/i2c-pca-platform.ko] undefined!
ERROR: "_dev_info" [drivers/i2c/busses/i2c-pca-platform.ko] undefined!
ERROR: "i2c_pca_add_numbered_bus" [drivers/i2c/busses/i2c-pca-platform.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/i2c/busses/i2c-pca-platform.ko] undefined!
ERROR: "device_property_read_u32_array" [drivers/i2c/busses/i2c-pca-platform.ko] undefined!
ERROR: "devm_gpiod_get_optional" [drivers/i2c/busses/i2c-pca-platform.ko] undefined!
ERROR: "snprintf" [drivers/i2c/busses/i2c-pca-platform.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/i2c/busses/i2c-pca-platform.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/i2c/busses/i2c-pca-platform.ko] undefined!
ERROR: "platform_get_resource" [drivers/i2c/busses/i2c-pca-platform.ko] undefined!
ERROR: "devm_kmalloc" [drivers/i2c/busses/i2c-pca-platform.ko] undefined!
ERROR: "platform_get_irq" [drivers/i2c/busses/i2c-pca-platform.ko] undefined!
ERROR: "schedule_timeout" [drivers/i2c/busses/i2c-pca-platform.ko] undefined!
ERROR: "finish_wait" [drivers/i2c/busses/i2c-pca-platform.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/i2c/busses/i2c-pca-platform.ko] undefined!
ERROR: "init_wait_entry" [drivers/i2c/busses/i2c-pca-platform.ko] undefined!
ERROR: "jiffies" [drivers/i2c/busses/i2c-pca-platform.ko] undefined!
ERROR: "__might_sleep" [drivers/i2c/busses/i2c-pca-platform.ko] undefined!
ERROR: "__const_udelay" [drivers/i2c/busses/i2c-pca-platform.ko] undefined!
ERROR: "gpiod_set_value" [drivers/i2c/busses/i2c-pca-platform.ko] undefined!
ERROR: "_dev_warn" [drivers/i2c/busses/i2c-pca-platform.ko] undefined!
ERROR: "iowrite8" [drivers/i2c/busses/i2c-pca-platform.ko] undefined!
ERROR: "ioread8" [drivers/i2c/busses/i2c-pca-platform.ko] undefined!
ERROR: "__wake_up" [drivers/i2c/busses/i2c-pca-platform.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/i2c/busses/i2c-pca-platform.ko] undefined!
ERROR: "i2c_del_adapter" [drivers/i2c/busses/i2c-pca-platform.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "__platform_driver_register" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "clk_get_rate" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "clk_enable" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "clk_prepare" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "of_device_is_big_endian" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "of_match_node" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "devm_clk_get" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "__devm_request_region" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "ioport_resource" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "i2c_new_device" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "i2c_add_adapter" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "devm_request_any_context_irq" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "platform_get_irq" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "platform_get_resource" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "devm_kmalloc" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "iowrite8" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "ioread8" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "iowrite16be" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "iowrite16" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "ioread16be" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "ioread16" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "iowrite32be" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "iowrite32" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "ioread32be" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "ioread32" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "_dev_warn" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "schedule_timeout" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "finish_wait" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "init_wait_entry" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "__might_sleep" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "jiffies" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "__udelay" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "__wake_up" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "i2c_del_adapter" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "clk_unprepare" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "clk_disable" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "_dev_err" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/i2c/busses/i2c-ocores.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/i2c/busses/i2c-mt65xx.ko] undefined!
ERROR: "__platform_driver_register" [drivers/i2c/busses/i2c-mt65xx.ko] undefined!
ERROR: "__warn_printk" [drivers/i2c/busses/i2c-mt65xx.ko] undefined!
ERROR: "dev_driver_string" [drivers/i2c/busses/i2c-mt65xx.ko] undefined!
ERROR: "dma_direct_map_page" [drivers/i2c/busses/i2c-mt65xx.ko] undefined!
ERROR: "dma_ops" [drivers/i2c/busses/i2c-mt65xx.ko] undefined!
ERROR: "i2c_put_dma_safe_msg_buf" [drivers/i2c/busses/i2c-mt65xx.ko] undefined!
ERROR: "wait_for_completion_timeout" [drivers/i2c/busses/i2c-mt65xx.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/i2c/busses/i2c-mt65xx.ko] undefined!
ERROR: "mem_section" [drivers/i2c/busses/i2c-mt65xx.ko] undefined!
ERROR: "__phys_addr" [drivers/i2c/busses/i2c-mt65xx.ko] undefined!
ERROR: "is_vmalloc_addr" [drivers/i2c/busses/i2c-mt65xx.ko] undefined!
ERROR: "i2c_get_dma_safe_msg_buf" [drivers/i2c/busses/i2c-mt65xx.ko] undefined!
ERROR: "i2c_add_adapter" [drivers/i2c/busses/i2c-mt65xx.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/i2c/busses/i2c-mt65xx.ko] undefined!
ERROR: "dma_set_mask" [drivers/i2c/busses/i2c-mt65xx.ko] undefined!
ERROR: "clk_get_rate" [drivers/i2c/busses/i2c-mt65xx.ko] undefined!
ERROR: "strlcpy" [drivers/i2c/busses/i2c-mt65xx.ko] undefined!
ERROR: "devm_clk_get" [drivers/i2c/busses/i2c-mt65xx.ko] undefined!
ERROR: "of_find_property" [drivers/i2c/busses/i2c-mt65xx.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/i2c/busses/i2c-mt65xx.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/i2c/busses/i2c-mt65xx.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/i2c/busses/i2c-mt65xx.ko] undefined!
ERROR: "platform_get_irq" [drivers/i2c/busses/i2c-mt65xx.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/i2c/busses/i2c-mt65xx.ko] undefined!
ERROR: "platform_get_resource" [drivers/i2c/busses/i2c-mt65xx.ko] undefined!
ERROR: "devm_kmalloc" [drivers/i2c/busses/i2c-mt65xx.ko] undefined!
ERROR: "_dev_err" [drivers/i2c/busses/i2c-mt65xx.ko] undefined!
ERROR: "clk_enable" [drivers/i2c/busses/i2c-mt65xx.ko] undefined!
ERROR: "clk_prepare" [drivers/i2c/busses/i2c-mt65xx.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/i2c/busses/i2c-mt65xx.ko] undefined!
ERROR: "complete" [drivers/i2c/busses/i2c-mt65xx.ko] undefined!
ERROR: "i2c_del_adapter" [drivers/i2c/busses/i2c-mt65xx.ko] undefined!
ERROR: "__const_udelay" [drivers/i2c/busses/i2c-mt65xx.ko] undefined!
ERROR: "clk_unprepare" [drivers/i2c/busses/i2c-mt65xx.ko] undefined!
ERROR: "clk_disable" [drivers/i2c/busses/i2c-mt65xx.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/i2c/busses/i2c-meson.ko] undefined!
ERROR: "__platform_driver_register" [drivers/i2c/busses/i2c-meson.ko] undefined!
ERROR: "clk_disable" [drivers/i2c/busses/i2c-meson.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/i2c/busses/i2c-meson.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/i2c/busses/i2c-meson.ko] undefined!
ERROR: "wait_for_completion_timeout" [drivers/i2c/busses/i2c-meson.ko] undefined!
ERROR: "clk_enable" [drivers/i2c/busses/i2c-meson.ko] undefined!
ERROR: "_dev_err" [drivers/i2c/busses/i2c-meson.ko] undefined!
ERROR: "clk_get_rate" [drivers/i2c/busses/i2c-meson.ko] undefined!
ERROR: "i2c_add_adapter" [drivers/i2c/busses/i2c-meson.ko] undefined!
ERROR: "strlcpy" [drivers/i2c/busses/i2c-meson.ko] undefined!
ERROR: "clk_prepare" [drivers/i2c/busses/i2c-meson.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/i2c/busses/i2c-meson.ko] undefined!
ERROR: "platform_get_irq" [drivers/i2c/busses/i2c-meson.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/i2c/busses/i2c-meson.ko] undefined!
ERROR: "platform_get_resource" [drivers/i2c/busses/i2c-meson.ko] undefined!
ERROR: "devm_clk_get" [drivers/i2c/busses/i2c-meson.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/i2c/busses/i2c-meson.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/i2c/busses/i2c-meson.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/i2c/busses/i2c-meson.ko] undefined!
ERROR: "i2c_parse_fw_timings" [drivers/i2c/busses/i2c-meson.ko] undefined!
ERROR: "devm_kmalloc" [drivers/i2c/busses/i2c-meson.ko] undefined!
ERROR: "complete" [drivers/i2c/busses/i2c-meson.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/i2c/busses/i2c-meson.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/i2c/busses/i2c-meson.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/i2c/busses/i2c-meson.ko] undefined!
ERROR: "clk_unprepare" [drivers/i2c/busses/i2c-meson.ko] undefined!
ERROR: "i2c_del_adapter" [drivers/i2c/busses/i2c-meson.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/i2c/busses/i2c-gpio.ko] undefined!
ERROR: "printk" [drivers/i2c/busses/i2c-gpio.ko] undefined!
ERROR: "__platform_driver_register" [drivers/i2c/busses/i2c-gpio.ko] undefined!
ERROR: "_dev_warn" [drivers/i2c/busses/i2c-gpio.ko] undefined!
ERROR: "snprintf" [drivers/i2c/busses/i2c-gpio.ko] undefined!
ERROR: "_dev_info" [drivers/i2c/busses/i2c-gpio.ko] undefined!
ERROR: "desc_to_gpio" [drivers/i2c/busses/i2c-gpio.ko] undefined!
ERROR: "i2c_bit_add_numbered_bus" [drivers/i2c/busses/i2c-gpio.ko] undefined!
ERROR: "strlcpy" [drivers/i2c/busses/i2c-gpio.ko] undefined!
ERROR: "gpiod_cansleep" [drivers/i2c/busses/i2c-gpio.ko] undefined!
ERROR: "of_find_property" [drivers/i2c/busses/i2c-gpio.ko] undefined!
ERROR: "__msecs_to_jiffies" [drivers/i2c/busses/i2c-gpio.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/i2c/busses/i2c-gpio.ko] undefined!
ERROR: "devm_kmalloc" [drivers/i2c/busses/i2c-gpio.ko] undefined!
ERROR: "_dev_err" [drivers/i2c/busses/i2c-gpio.ko] undefined!
ERROR: "devm_gpiod_get_index" [drivers/i2c/busses/i2c-gpio.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/i2c/busses/i2c-gpio.ko] undefined!
ERROR: "devm_gpiod_get" [drivers/i2c/busses/i2c-gpio.ko] undefined!
ERROR: "gpiod_set_value_cansleep" [drivers/i2c/busses/i2c-gpio.ko] undefined!
ERROR: "gpiod_get_value_cansleep" [drivers/i2c/busses/i2c-gpio.ko] undefined!
ERROR: "i2c_del_adapter" [drivers/i2c/busses/i2c-gpio.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/i2c/busses/i2c-emev2.ko] undefined!
ERROR: "__platform_driver_register" [drivers/i2c/busses/i2c-emev2.ko] undefined!
ERROR: "_dev_info" [drivers/i2c/busses/i2c-emev2.ko] undefined!
ERROR: "i2c_add_adapter" [drivers/i2c/busses/i2c-emev2.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/i2c/busses/i2c-emev2.ko] undefined!
ERROR: "platform_get_irq" [drivers/i2c/busses/i2c-emev2.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/i2c/busses/i2c-emev2.ko] undefined!
ERROR: "clk_enable" [drivers/i2c/busses/i2c-emev2.ko] undefined!
ERROR: "clk_prepare" [drivers/i2c/busses/i2c-emev2.ko] undefined!
ERROR: "devm_clk_get" [drivers/i2c/busses/i2c-emev2.ko] undefined!
ERROR: "strlcpy" [drivers/i2c/busses/i2c-emev2.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/i2c/busses/i2c-emev2.ko] undefined!
ERROR: "platform_get_resource" [drivers/i2c/busses/i2c-emev2.ko] undefined!
ERROR: "devm_kmalloc" [drivers/i2c/busses/i2c-emev2.ko] undefined!
ERROR: "wait_for_completion_timeout" [drivers/i2c/busses/i2c-emev2.ko] undefined!
ERROR: "synchronize_irq" [drivers/i2c/busses/i2c-emev2.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/i2c/busses/i2c-emev2.ko] undefined!
ERROR: "complete" [drivers/i2c/busses/i2c-emev2.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/i2c/busses/i2c-emev2.ko] undefined!
ERROR: "clk_unprepare" [drivers/i2c/busses/i2c-emev2.ko] undefined!
ERROR: "clk_disable" [drivers/i2c/busses/i2c-emev2.ko] undefined!
ERROR: "i2c_del_adapter" [drivers/i2c/busses/i2c-emev2.ko] undefined!
ERROR: "param_ops_int" [drivers/i2c/busses/i2c-eg20t.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/i2c/busses/i2c-eg20t.ko] undefined!
ERROR: "__pci_register_driver" [drivers/i2c/busses/i2c-eg20t.ko] undefined!
ERROR: "i2c_add_numbered_adapter" [drivers/i2c/busses/i2c-eg20t.ko] undefined!
ERROR: "request_threaded_irq" [drivers/i2c/busses/i2c-eg20t.ko] undefined!
ERROR: "strlcpy" [drivers/i2c/busses/i2c-eg20t.ko] undefined!
ERROR: "pci_iomap" [drivers/i2c/busses/i2c-eg20t.ko] undefined!
ERROR: "pci_request_regions" [drivers/i2c/busses/i2c-eg20t.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/i2c/busses/i2c-eg20t.ko] undefined!
ERROR: "kmalloc_caches" [drivers/i2c/busses/i2c-eg20t.ko] undefined!
ERROR: "__wake_up" [drivers/i2c/busses/i2c-eg20t.ko] undefined!
ERROR: "mutex_unlock" [drivers/i2c/busses/i2c-eg20t.ko] undefined!
ERROR: "mutex_lock_interruptible_nested" [drivers/i2c/busses/i2c-eg20t.ko] undefined!
ERROR: "usleep_range" [drivers/i2c/busses/i2c-eg20t.ko] undefined!
ERROR: "__const_udelay" [drivers/i2c/busses/i2c-eg20t.ko] undefined!
ERROR: "jiffies" [drivers/i2c/busses/i2c-eg20t.ko] undefined!
ERROR: "schedule_timeout" [drivers/i2c/busses/i2c-eg20t.ko] undefined!
ERROR: "finish_wait" [drivers/i2c/busses/i2c-eg20t.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/i2c/busses/i2c-eg20t.ko] undefined!
ERROR: "init_wait_entry" [drivers/i2c/busses/i2c-eg20t.ko] undefined!
ERROR: "__might_sleep" [drivers/i2c/busses/i2c-eg20t.ko] undefined!
ERROR: "kfree" [drivers/i2c/busses/i2c-eg20t.ko] undefined!
ERROR: "pci_release_regions" [drivers/i2c/busses/i2c-eg20t.ko] undefined!
ERROR: "pci_iounmap" [drivers/i2c/busses/i2c-eg20t.ko] undefined!
ERROR: "i2c_del_adapter" [drivers/i2c/busses/i2c-eg20t.ko] undefined!
ERROR: "free_irq" [drivers/i2c/busses/i2c-eg20t.ko] undefined!
ERROR: "pci_choose_state" [drivers/i2c/busses/i2c-eg20t.ko] undefined!
ERROR: "pci_disable_device" [drivers/i2c/busses/i2c-eg20t.ko] undefined!
ERROR: "pci_save_state" [drivers/i2c/busses/i2c-eg20t.ko] undefined!
ERROR: "_dev_err" [drivers/i2c/busses/i2c-eg20t.ko] undefined!
ERROR: "pci_enable_wake" [drivers/i2c/busses/i2c-eg20t.ko] undefined!
ERROR: "pci_enable_device" [drivers/i2c/busses/i2c-eg20t.ko] undefined!
ERROR: "pci_restore_state" [drivers/i2c/busses/i2c-eg20t.ko] undefined!
ERROR: "pci_set_power_state" [drivers/i2c/busses/i2c-eg20t.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/i2c/busses/i2c-eg20t.ko] undefined!
ERROR: "msleep" [drivers/i2c/busses/i2c-eg20t.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/i2c/busses/i2c-eg20t.ko] undefined!
ERROR: "iowrite32" [drivers/i2c/busses/i2c-eg20t.ko] undefined!
ERROR: "ioread32" [drivers/i2c/busses/i2c-eg20t.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/i2c/busses/i2c-efm32.ko] undefined!
ERROR: "__platform_driver_register" [drivers/i2c/busses/i2c-efm32.ko] undefined!
ERROR: "_dev_err" [drivers/i2c/busses/i2c-efm32.ko] undefined!
ERROR: "_dev_info" [drivers/i2c/busses/i2c-efm32.ko] undefined!
ERROR: "i2c_add_adapter" [drivers/i2c/busses/i2c-efm32.ko] undefined!
ERROR: "request_threaded_irq" [drivers/i2c/busses/i2c-efm32.ko] undefined!
ERROR: "clk_get_rate" [drivers/i2c/busses/i2c-efm32.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/i2c/busses/i2c-efm32.ko] undefined!
ERROR: "clk_enable" [drivers/i2c/busses/i2c-efm32.ko] undefined!
ERROR: "clk_prepare" [drivers/i2c/busses/i2c-efm32.ko] undefined!
ERROR: "platform_get_irq" [drivers/i2c/busses/i2c-efm32.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/i2c/busses/i2c-efm32.ko] undefined!
ERROR: "platform_get_resource" [drivers/i2c/busses/i2c-efm32.ko] undefined!
ERROR: "devm_clk_get" [drivers/i2c/busses/i2c-efm32.ko] undefined!
ERROR: "strlcpy" [drivers/i2c/busses/i2c-efm32.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/i2c/busses/i2c-efm32.ko] undefined!
ERROR: "devm_kmalloc" [drivers/i2c/busses/i2c-efm32.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/i2c/busses/i2c-efm32.ko] undefined!
ERROR: "wait_for_completion" [drivers/i2c/busses/i2c-efm32.ko] undefined!
ERROR: "complete" [drivers/i2c/busses/i2c-efm32.ko] undefined!
ERROR: "clk_unprepare" [drivers/i2c/busses/i2c-efm32.ko] undefined!
ERROR: "clk_disable" [drivers/i2c/busses/i2c-efm32.ko] undefined!
ERROR: "free_irq" [drivers/i2c/busses/i2c-efm32.ko] undefined!
ERROR: "i2c_del_adapter" [drivers/i2c/busses/i2c-efm32.ko] undefined!
ERROR: "__pm_runtime_idle" [drivers/i2c/busses/i2c-designware-platform.ko] undefined!
ERROR: "i2c_acpi_find_bus_speed" [drivers/i2c/busses/i2c-designware-platform.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/i2c/busses/i2c-designware-platform.ko] undefined!
ERROR: "i2c_dw_probe" [drivers/i2c/busses/i2c-designware-platform.ko] undefined!
ERROR: "__pm_runtime_use_autosuspend" [drivers/i2c/busses/i2c-designware-platform.ko] undefined!
ERROR: "acpi_evaluate_integer" [drivers/i2c/busses/i2c-designware-platform.ko] undefined!
ERROR: "set_primary_fwnode" [drivers/i2c/busses/i2c-designware-platform.ko] undefined!
ERROR: "i2c_detect_slave_mode" [drivers/i2c/busses/i2c-designware-platform.ko] undefined!
ERROR: "i2c_dw_read_comp_param" [drivers/i2c/busses/i2c-designware-platform.ko] undefined!
ERROR: "iosf_mbi_available" [drivers/i2c/busses/i2c-designware-platform.ko] undefined!
ERROR: "acpi_evaluate_object" [drivers/i2c/busses/i2c-designware-platform.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/i2c/busses/i2c-designware-platform.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/i2c/busses/i2c-designware-platform.ko] undefined!
ERROR: "clk_get_rate" [drivers/i2c/busses/i2c-designware-platform.ko] undefined!
ERROR: "devm_clk_get_optional" [drivers/i2c/busses/i2c-designware-platform.ko] undefined!
ERROR: "__devm_reset_control_get" [drivers/i2c/busses/i2c-designware-platform.ko] undefined!
ERROR: "pm_suspend_global_flags" [drivers/i2c/busses/i2c-designware-platform.ko] undefined!
ERROR: "__platform_driver_register" [drivers/i2c/busses/i2c-designware-platform.ko] undefined!
ERROR: "device_get_match_data" [drivers/i2c/busses/i2c-designware-platform.ko] undefined!
ERROR: "i2c_parse_fw_timings" [drivers/i2c/busses/i2c-designware-platform.ko] undefined!
ERROR: "reset_control_deassert" [drivers/i2c/busses/i2c-designware-platform.ko] undefined!
ERROR: "platform_get_resource" [drivers/i2c/busses/i2c-designware-platform.ko] undefined!
ERROR: "i2c_dw_prepare_clk" [drivers/i2c/busses/i2c-designware-platform.ko] undefined!
ERROR: "_dev_err" [drivers/i2c/busses/i2c-designware-platform.ko] undefined!
ERROR: "i2c_del_adapter" [drivers/i2c/busses/i2c-designware-platform.ko] undefined!
ERROR: "_dev_info" [drivers/i2c/busses/i2c-designware-platform.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/i2c/busses/i2c-designware-platform.ko] undefined!
ERROR: "__pm_runtime_set_status" [drivers/i2c/busses/i2c-designware-platform.ko] undefined!
ERROR: "iosf_mbi_block_punit_i2c_access" [drivers/i2c/busses/i2c-designware-platform.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/i2c/busses/i2c-designware-platform.ko] undefined!
ERROR: "devm_clk_get" [drivers/i2c/busses/i2c-designware-platform.ko] undefined!
ERROR: "iosf_mbi_unblock_punit_i2c_access" [drivers/i2c/busses/i2c-designware-platform.ko] undefined!
ERROR: "kfree" [drivers/i2c/busses/i2c-designware-platform.ko] undefined!
ERROR: "reset_control_assert" [drivers/i2c/busses/i2c-designware-platform.ko] undefined!
ERROR: "pm_runtime_set_autosuspend_delay" [drivers/i2c/busses/i2c-designware-platform.ko] undefined!
ERROR: "platform_get_irq" [drivers/i2c/busses/i2c-designware-platform.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/i2c/busses/i2c-designware-platform.ko] undefined!
ERROR: "devm_kmalloc" [drivers/i2c/busses/i2c-designware-platform.ko] undefined!
ERROR: "is_acpi_device_node" [drivers/i2c/busses/i2c-designware-platform.ko] undefined!
ERROR: "i2c_generic_scl_recovery" [drivers/i2c/busses/i2c-axxia.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/i2c/busses/i2c-axxia.ko] undefined!
ERROR: "__platform_driver_register" [drivers/i2c/busses/i2c-axxia.ko] undefined!
ERROR: "i2c_add_adapter" [drivers/i2c/busses/i2c-axxia.ko] undefined!
ERROR: "strlcpy" [drivers/i2c/busses/i2c-axxia.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/i2c/busses/i2c-axxia.ko] undefined!
ERROR: "clk_enable" [drivers/i2c/busses/i2c-axxia.ko] undefined!
ERROR: "_dev_err" [drivers/i2c/busses/i2c-axxia.ko] undefined!
ERROR: "clk_prepare" [drivers/i2c/busses/i2c-axxia.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/i2c/busses/i2c-axxia.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/i2c/busses/i2c-axxia.ko] undefined!
ERROR: "devm_clk_get" [drivers/i2c/busses/i2c-axxia.ko] undefined!
ERROR: "platform_get_irq" [drivers/i2c/busses/i2c-axxia.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/i2c/busses/i2c-axxia.ko] undefined!
ERROR: "platform_get_resource" [drivers/i2c/busses/i2c-axxia.ko] undefined!
ERROR: "devm_kmalloc" [drivers/i2c/busses/i2c-axxia.ko] undefined!
ERROR: "usleep_range" [drivers/i2c/busses/i2c-axxia.ko] undefined!
ERROR: "i2c_recover_bus" [drivers/i2c/busses/i2c-axxia.ko] undefined!
ERROR: "wait_for_completion_timeout" [drivers/i2c/busses/i2c-axxia.ko] undefined!
ERROR: "jiffies" [drivers/i2c/busses/i2c-axxia.ko] undefined!
ERROR: "clk_get_rate" [drivers/i2c/busses/i2c-axxia.ko] undefined!
ERROR: "_dev_warn" [drivers/i2c/busses/i2c-axxia.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/i2c/busses/i2c-axxia.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/i2c/busses/i2c-axxia.ko] undefined!
ERROR: "complete" [drivers/i2c/busses/i2c-axxia.ko] undefined!
ERROR: "synchronize_irq" [drivers/i2c/busses/i2c-axxia.ko] undefined!
ERROR: "i2c_del_adapter" [drivers/i2c/busses/i2c-axxia.ko] undefined!
ERROR: "clk_unprepare" [drivers/i2c/busses/i2c-axxia.ko] undefined!
ERROR: "clk_disable" [drivers/i2c/busses/i2c-axxia.ko] undefined!
ERROR: "param_ops_bool" [drivers/i2c/busses/i2c-viapro.ko] undefined!
ERROR: "param_ops_ushort" [drivers/i2c/busses/i2c-viapro.ko] undefined!
ERROR: "i2c_del_adapter" [drivers/i2c/busses/i2c-viapro.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/i2c/busses/i2c-viapro.ko] undefined!
ERROR: "__pci_register_driver" [drivers/i2c/busses/i2c-viapro.ko] undefined!
ERROR: "msleep" [drivers/i2c/busses/i2c-viapro.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/i2c/busses/i2c-viapro.ko] undefined!
ERROR: "__x86_indirect_thunk_eax" [drivers/i2c/busses/i2c-viapro.ko] undefined!
ERROR: "pv_ops" [drivers/i2c/busses/i2c-viapro.ko] undefined!
ERROR: "_dev_err" [drivers/i2c/busses/i2c-viapro.ko] undefined!
ERROR: "_dev_warn" [drivers/i2c/busses/i2c-viapro.ko] undefined!
ERROR: "pci_write_config_word" [drivers/i2c/busses/i2c-viapro.ko] undefined!
ERROR: "pci_read_config_word" [drivers/i2c/busses/i2c-viapro.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/i2c/busses/i2c-viapro.ko] undefined!
ERROR: "__release_region" [drivers/i2c/busses/i2c-viapro.ko] undefined!
ERROR: "pci_dev_put" [drivers/i2c/busses/i2c-viapro.ko] undefined!
ERROR: "i2c_add_adapter" [drivers/i2c/busses/i2c-viapro.ko] undefined!
ERROR: "pci_dev_get" [drivers/i2c/busses/i2c-viapro.ko] undefined!
ERROR: "snprintf" [drivers/i2c/busses/i2c-viapro.ko] undefined!
ERROR: "_dev_info" [drivers/i2c/busses/i2c-viapro.ko] undefined!
ERROR: "pci_write_config_byte" [drivers/i2c/busses/i2c-viapro.ko] undefined!
ERROR: "pci_read_config_byte" [drivers/i2c/busses/i2c-viapro.ko] undefined!
ERROR: "__request_region" [drivers/i2c/busses/i2c-viapro.ko] undefined!
ERROR: "ioport_resource" [drivers/i2c/busses/i2c-viapro.ko] undefined!
ERROR: "acpi_check_region" [drivers/i2c/busses/i2c-viapro.ko] undefined!
ERROR: "param_ops_bool" [drivers/i2c/busses/i2c-sis630.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/i2c/busses/i2c-sis630.ko] undefined!
ERROR: "__pci_register_driver" [drivers/i2c/busses/i2c-sis630.ko] undefined!
ERROR: "i2c_add_adapter" [drivers/i2c/busses/i2c-sis630.ko] undefined!
ERROR: "snprintf" [drivers/i2c/busses/i2c-sis630.ko] undefined!
ERROR: "__request_region" [drivers/i2c/busses/i2c-sis630.ko] undefined!
ERROR: "acpi_check_region" [drivers/i2c/busses/i2c-sis630.ko] undefined!
ERROR: "pci_read_config_word" [drivers/i2c/busses/i2c-sis630.ko] undefined!
ERROR: "pci_write_config_byte" [drivers/i2c/busses/i2c-sis630.ko] undefined!
ERROR: "pci_read_config_byte" [drivers/i2c/busses/i2c-sis630.ko] undefined!
ERROR: "pci_dev_put" [drivers/i2c/busses/i2c-sis630.ko] undefined!
ERROR: "pci_get_device" [drivers/i2c/busses/i2c-sis630.ko] undefined!
ERROR: "_dev_warn" [drivers/i2c/busses/i2c-sis630.ko] undefined!
ERROR: "_dev_err" [drivers/i2c/busses/i2c-sis630.ko] undefined!
ERROR: "msleep" [drivers/i2c/busses/i2c-sis630.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/i2c/busses/i2c-sis630.ko] undefined!
ERROR: "__release_region" [drivers/i2c/busses/i2c-sis630.ko] undefined!
ERROR: "ioport_resource" [drivers/i2c/busses/i2c-sis630.ko] undefined!
ERROR: "i2c_del_adapter" [drivers/i2c/busses/i2c-sis630.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/i2c/busses/i2c-nvidia-gpu.ko] undefined!
ERROR: "__pci_register_driver" [drivers/i2c/busses/i2c-nvidia-gpu.ko] undefined!
ERROR: "_dev_err" [drivers/i2c/busses/i2c-nvidia-gpu.ko] undefined!
ERROR: "pcim_iomap" [drivers/i2c/busses/i2c-nvidia-gpu.ko] undefined!
ERROR: "pci_set_master" [drivers/i2c/busses/i2c-nvidia-gpu.ko] undefined!
ERROR: "pcim_enable_device" [drivers/i2c/busses/i2c-nvidia-gpu.ko] undefined!
ERROR: "devm_kmalloc" [drivers/i2c/busses/i2c-nvidia-gpu.ko] undefined!
ERROR: "i2c_del_adapter" [drivers/i2c/busses/i2c-nvidia-gpu.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/i2c/busses/i2c-nvidia-gpu.ko] undefined!
ERROR: "param_ops_uint" [drivers/i2c/busses/i2c-ismt.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/i2c/busses/i2c-ismt.ko] undefined!
ERROR: "__pci_register_driver" [drivers/i2c/busses/i2c-ismt.ko] undefined!
ERROR: "__warn_printk" [drivers/i2c/busses/i2c-ismt.ko] undefined!
ERROR: "dev_driver_string" [drivers/i2c/busses/i2c-ismt.ko] undefined!
ERROR: "dma_direct_map_page" [drivers/i2c/busses/i2c-ismt.ko] undefined!
ERROR: "dma_ops" [drivers/i2c/busses/i2c-ismt.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/i2c/busses/i2c-ismt.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/i2c/busses/i2c-ismt.ko] undefined!
ERROR: "mem_section" [drivers/i2c/busses/i2c-ismt.ko] undefined!
ERROR: "__phys_addr" [drivers/i2c/busses/i2c-ismt.ko] undefined!
ERROR: "is_vmalloc_addr" [drivers/i2c/busses/i2c-ismt.ko] undefined!
ERROR: "wait_for_completion_timeout" [drivers/i2c/busses/i2c-ismt.ko] undefined!
ERROR: "i2c_add_adapter" [drivers/i2c/busses/i2c-ismt.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/i2c/busses/i2c-ismt.ko] undefined!
ERROR: "_dev_warn" [drivers/i2c/busses/i2c-ismt.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/i2c/busses/i2c-ismt.ko] undefined!
ERROR: "dmam_alloc_attrs" [drivers/i2c/busses/i2c-ismt.ko] undefined!
ERROR: "dma_set_coherent_mask" [drivers/i2c/busses/i2c-ismt.ko] undefined!
ERROR: "dma_set_mask" [drivers/i2c/busses/i2c-ismt.ko] undefined!
ERROR: "pcim_iomap" [drivers/i2c/busses/i2c-ismt.ko] undefined!
ERROR: "pci_request_region" [drivers/i2c/busses/i2c-ismt.ko] undefined!
ERROR: "acpi_check_resource_conflict" [drivers/i2c/busses/i2c-ismt.ko] undefined!
ERROR: "snprintf" [drivers/i2c/busses/i2c-ismt.ko] undefined!
ERROR: "_dev_err" [drivers/i2c/busses/i2c-ismt.ko] undefined!
ERROR: "pci_set_master" [drivers/i2c/busses/i2c-ismt.ko] undefined!
ERROR: "pcim_enable_device" [drivers/i2c/busses/i2c-ismt.ko] undefined!
ERROR: "set_primary_fwnode" [drivers/i2c/busses/i2c-ismt.ko] undefined!
ERROR: "is_acpi_device_node" [drivers/i2c/busses/i2c-ismt.ko] undefined!
ERROR: "devm_kmalloc" [drivers/i2c/busses/i2c-ismt.ko] undefined!
ERROR: "complete" [drivers/i2c/busses/i2c-ismt.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/i2c/busses/i2c-ismt.ko] undefined!
ERROR: "i2c_del_adapter" [drivers/i2c/busses/i2c-ismt.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/i2c/busses/i2c-amd8111.ko] undefined!
ERROR: "__pci_register_driver" [drivers/i2c/busses/i2c-amd8111.ko] undefined!
ERROR: "i2c_add_adapter" [drivers/i2c/busses/i2c-amd8111.ko] undefined!
ERROR: "pci_write_config_dword" [drivers/i2c/busses/i2c-amd8111.ko] undefined!
ERROR: "snprintf" [drivers/i2c/busses/i2c-amd8111.ko] undefined!
ERROR: "__request_region" [drivers/i2c/busses/i2c-amd8111.ko] undefined!
ERROR: "acpi_check_resource_conflict" [drivers/i2c/busses/i2c-amd8111.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/i2c/busses/i2c-amd8111.ko] undefined!
ERROR: "kmalloc_caches" [drivers/i2c/busses/i2c-amd8111.ko] undefined!
ERROR: "msleep" [drivers/i2c/busses/i2c-amd8111.ko] undefined!
ERROR: "_dev_warn" [drivers/i2c/busses/i2c-amd8111.ko] undefined!
ERROR: "__const_udelay" [drivers/i2c/busses/i2c-amd8111.ko] undefined!
ERROR: "kfree" [drivers/i2c/busses/i2c-amd8111.ko] undefined!
ERROR: "__release_region" [drivers/i2c/busses/i2c-amd8111.ko] undefined!
ERROR: "ioport_resource" [drivers/i2c/busses/i2c-amd8111.ko] undefined!
ERROR: "i2c_del_adapter" [drivers/i2c/busses/i2c-amd8111.ko] undefined!
ERROR: "param_ops_ushort" [drivers/i2c/busses/i2c-ali15x3.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/i2c/busses/i2c-ali15x3.ko] undefined!
ERROR: "__pci_register_driver" [drivers/i2c/busses/i2c-ali15x3.ko] undefined!
ERROR: "pci_write_config_word" [drivers/i2c/busses/i2c-ali15x3.ko] undefined!
ERROR: "i2c_add_adapter" [drivers/i2c/busses/i2c-ali15x3.ko] undefined!
ERROR: "snprintf" [drivers/i2c/busses/i2c-ali15x3.ko] undefined!
ERROR: "pci_write_config_byte" [drivers/i2c/busses/i2c-ali15x3.ko] undefined!
ERROR: "__request_region" [drivers/i2c/busses/i2c-ali15x3.ko] undefined!
ERROR: "acpi_check_region" [drivers/i2c/busses/i2c-ali15x3.ko] undefined!
ERROR: "pci_read_config_word" [drivers/i2c/busses/i2c-ali15x3.ko] undefined!
ERROR: "pci_read_config_byte" [drivers/i2c/busses/i2c-ali15x3.ko] undefined!
ERROR: "_dev_info" [drivers/i2c/busses/i2c-ali15x3.ko] undefined!
ERROR: "_dev_warn" [drivers/i2c/busses/i2c-ali15x3.ko] undefined!
ERROR: "_dev_err" [drivers/i2c/busses/i2c-ali15x3.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/i2c/busses/i2c-ali15x3.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/i2c/busses/i2c-ali15x3.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/i2c/busses/i2c-ali15x3.ko] undefined!
ERROR: "msleep" [drivers/i2c/busses/i2c-ali15x3.ko] undefined!
ERROR: "__x86_indirect_thunk_eax" [drivers/i2c/busses/i2c-ali15x3.ko] undefined!
ERROR: "pv_ops" [drivers/i2c/busses/i2c-ali15x3.ko] undefined!
ERROR: "__release_region" [drivers/i2c/busses/i2c-ali15x3.ko] undefined!
ERROR: "ioport_resource" [drivers/i2c/busses/i2c-ali15x3.ko] undefined!
ERROR: "i2c_del_adapter" [drivers/i2c/busses/i2c-ali15x3.ko] undefined!
ERROR: "param_ops_int" [drivers/i2c/algos/i2c-algo-pca.ko] undefined!
ERROR: "i2c_add_numbered_adapter" [drivers/i2c/algos/i2c-algo-pca.ko] undefined!
ERROR: "i2c_add_adapter" [drivers/i2c/algos/i2c-algo-pca.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/i2c/algos/i2c-algo-pca.ko] undefined!
ERROR: "_dev_err" [drivers/i2c/algos/i2c-algo-pca.ko] undefined!
ERROR: "msleep" [drivers/i2c/algos/i2c-algo-pca.ko] undefined!
ERROR: "jiffies" [drivers/i2c/algos/i2c-algo-pca.ko] undefined!
ERROR: "__const_udelay" [drivers/i2c/algos/i2c-algo-pca.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/i2c/algos/i2c-algo-pca.ko] undefined!
ERROR: "printk" [drivers/i2c/algos/i2c-algo-pca.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/i2c/algos/i2c-algo-pca.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/i2c/algos/i2c-algo-pca.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/i2c/algos/i2c-algo-pca.ko] undefined!
ERROR: "input_unregister_handler" [drivers/input/evbug.ko] undefined!
ERROR: "input_register_handler" [drivers/input/evbug.ko] undefined!
ERROR: "input_open_device" [drivers/input/evbug.ko] undefined!
ERROR: "input_register_handle" [drivers/input/evbug.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/input/evbug.ko] undefined!
ERROR: "kmalloc_caches" [drivers/input/evbug.ko] undefined!
ERROR: "kfree" [drivers/input/evbug.ko] undefined!
ERROR: "input_unregister_handle" [drivers/input/evbug.ko] undefined!
ERROR: "input_close_device" [drivers/input/evbug.ko] undefined!
ERROR: "printk" [drivers/input/evbug.ko] undefined!
ERROR: "param_ops_uint" [drivers/input/mousedev.ko] undefined!
ERROR: "noop_llseek" [drivers/input/mousedev.ko] undefined!
ERROR: "input_unregister_handler" [drivers/input/mousedev.ko] undefined!
ERROR: "input_register_handler" [drivers/input/mousedev.ko] undefined!
ERROR: "printk" [drivers/input/mousedev.ko] undefined!
ERROR: "cdev_device_add" [drivers/input/mousedev.ko] undefined!
ERROR: "cdev_init" [drivers/input/mousedev.ko] undefined!
ERROR: "input_register_handle" [drivers/input/mousedev.ko] undefined!
ERROR: "device_initialize" [drivers/input/mousedev.ko] undefined!
ERROR: "input_class" [drivers/input/mousedev.ko] undefined!
ERROR: "get_device" [drivers/input/mousedev.ko] undefined!
ERROR: "dev_set_name" [drivers/input/mousedev.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/input/mousedev.ko] undefined!
ERROR: "lockdep_init_map" [drivers/input/mousedev.ko] undefined!
ERROR: "__mutex_init" [drivers/input/mousedev.ko] undefined!
ERROR: "input_get_new_minor" [drivers/input/mousedev.ko] undefined!
ERROR: "stream_open" [drivers/input/mousedev.ko] undefined!
ERROR: "__list_add_valid" [drivers/input/mousedev.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/input/mousedev.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/input/mousedev.ko] undefined!
ERROR: "kmalloc_caches" [drivers/input/mousedev.ko] undefined!
ERROR: "__warn_printk" [drivers/input/mousedev.ko] undefined!
ERROR: "finish_wait" [drivers/input/mousedev.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/input/mousedev.ko] undefined!
ERROR: "schedule" [drivers/input/mousedev.ko] undefined!
ERROR: "init_wait_entry" [drivers/input/mousedev.ko] undefined!
ERROR: "_copy_to_user" [drivers/input/mousedev.ko] undefined!
ERROR: "__might_sleep" [drivers/input/mousedev.ko] undefined!
ERROR: "input_unregister_handle" [drivers/input/mousedev.ko] undefined!
ERROR: "input_free_minor" [drivers/input/mousedev.ko] undefined!
ERROR: "cdev_device_del" [drivers/input/mousedev.ko] undefined!
ERROR: "_raw_spin_lock_irq" [drivers/input/mousedev.ko] undefined!
ERROR: "__get_user_1" [drivers/input/mousedev.ko] undefined!
ERROR: "__might_fault" [drivers/input/mousedev.ko] undefined!
ERROR: "_cond_resched" [drivers/input/mousedev.ko] undefined!
ERROR: "___might_sleep" [drivers/input/mousedev.ko] undefined!
ERROR: "_raw_spin_unlock_irq" [drivers/input/mousedev.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/input/mousedev.ko] undefined!
ERROR: "synchronize_rcu" [drivers/input/mousedev.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/input/mousedev.ko] undefined!
ERROR: "kfree" [drivers/input/mousedev.ko] undefined!
ERROR: "put_device" [drivers/input/mousedev.ko] undefined!
ERROR: "fasync_helper" [drivers/input/mousedev.ko] undefined!
ERROR: "__msecs_to_jiffies" [drivers/input/mousedev.ko] undefined!
ERROR: "jiffies" [drivers/input/mousedev.ko] undefined!
ERROR: "lock_release" [drivers/input/mousedev.ko] undefined!
ERROR: "debug_lockdep_rcu_enabled" [drivers/input/mousedev.ko] undefined!
ERROR: "lock_acquire" [drivers/input/mousedev.ko] undefined!
ERROR: "rcu_lock_map" [drivers/input/mousedev.ko] undefined!
ERROR: "__preempt_count" [drivers/input/mousedev.ko] undefined!
ERROR: "__wake_up" [drivers/input/mousedev.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/input/mousedev.ko] undefined!
ERROR: "kill_fasync" [drivers/input/mousedev.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/input/mousedev.ko] undefined!
ERROR: "input_open_device" [drivers/input/mousedev.ko] undefined!
ERROR: "mutex_lock_interruptible_nested" [drivers/input/mousedev.ko] undefined!
ERROR: "input_close_device" [drivers/input/mousedev.ko] undefined!
ERROR: "mutex_unlock" [drivers/input/mousedev.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/input/mousedev.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/input/mousedev.ko] undefined!
ERROR: "input_unregister_handler" [drivers/input/input-leds.ko] undefined!
ERROR: "input_register_handler" [drivers/input/input-leds.ko] undefined!
ERROR: "_dev_err" [drivers/input/input-leds.ko] undefined!
ERROR: "kmalloc_order_trace" [drivers/input/input-leds.ko] undefined!
ERROR: "kasprintf" [drivers/input/input-leds.ko] undefined!
ERROR: "led_classdev_register_ext" [drivers/input/input-leds.ko] undefined!
ERROR: "input_open_device" [drivers/input/input-leds.ko] undefined!
ERROR: "input_register_handle" [drivers/input/input-leds.ko] undefined!
ERROR: "__kmalloc" [drivers/input/input-leds.ko] undefined!
ERROR: "find_next_bit" [drivers/input/input-leds.ko] undefined!
ERROR: "find_first_bit" [drivers/input/input-leds.ko] undefined!
ERROR: "input_inject_event" [drivers/input/input-leds.ko] undefined!
ERROR: "input_unregister_handle" [drivers/input/input-leds.ko] undefined!
ERROR: "input_close_device" [drivers/input/input-leds.ko] undefined!
ERROR: "kfree" [drivers/input/input-leds.ko] undefined!
ERROR: "led_classdev_unregister" [drivers/input/input-leds.ko] undefined!
ERROR: "devm_kmalloc" [drivers/input/matrix-keymap.ko] undefined!
ERROR: "kfree" [drivers/input/matrix-keymap.ko] undefined!
ERROR: "__kmalloc" [drivers/input/matrix-keymap.ko] undefined!
ERROR: "device_property_read_u32_array" [drivers/input/matrix-keymap.ko] undefined!
ERROR: "_dev_err" [drivers/input/matrix-keymap.ko] undefined!
ERROR: "usb_deregister" [drivers/input/misc/yealink.ko] undefined!
ERROR: "usb_register_driver" [drivers/input/misc/yealink.ko] undefined!
ERROR: "input_event" [drivers/input/misc/yealink.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/input/misc/yealink.ko] undefined!
ERROR: "usb_control_msg" [drivers/input/misc/yealink.ko] undefined!
ERROR: "sysfs_create_group" [drivers/input/misc/yealink.ko] undefined!
ERROR: "input_register_device" [drivers/input/misc/yealink.ko] undefined!
ERROR: "strlcat" [drivers/input/misc/yealink.ko] undefined!
ERROR: "snprintf" [drivers/input/misc/yealink.ko] undefined!
ERROR: "usb_alloc_urb" [drivers/input/misc/yealink.ko] undefined!
ERROR: "usb_alloc_coherent" [drivers/input/misc/yealink.ko] undefined!
ERROR: "input_allocate_device" [drivers/input/misc/yealink.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/input/misc/yealink.ko] undefined!
ERROR: "kmalloc_caches" [drivers/input/misc/yealink.ko] undefined!
ERROR: "_dev_err" [drivers/input/misc/yealink.ko] undefined!
ERROR: "usb_submit_urb" [drivers/input/misc/yealink.ko] undefined!
ERROR: "usb_kill_urb" [drivers/input/misc/yealink.ko] undefined!
ERROR: "sysfs_remove_group" [drivers/input/misc/yealink.ko] undefined!
ERROR: "input_unregister_device" [drivers/input/misc/yealink.ko] undefined!
ERROR: "usb_free_coherent" [drivers/input/misc/yealink.ko] undefined!
ERROR: "kfree" [drivers/input/misc/yealink.ko] undefined!
ERROR: "usb_free_urb" [drivers/input/misc/yealink.ko] undefined!
ERROR: "input_free_device" [drivers/input/misc/yealink.ko] undefined!
ERROR: "sprintf" [drivers/input/misc/yealink.ko] undefined!
ERROR: "up_read" [drivers/input/misc/yealink.ko] undefined!
ERROR: "down_read" [drivers/input/misc/yealink.ko] undefined!
ERROR: "strncmp" [drivers/input/misc/yealink.ko] undefined!
ERROR: "up_write" [drivers/input/misc/yealink.ko] undefined!
ERROR: "down_write" [drivers/input/misc/yealink.ko] undefined!
ERROR: "param_ops_bool" [drivers/input/misc/wistron_btns.ko] undefined!
ERROR: "param_ops_charp" [drivers/input/misc/wistron_btns.ko] undefined!
ERROR: "platform_device_unregister" [drivers/input/misc/wistron_btns.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/input/misc/wistron_btns.ko] undefined!
ERROR: "platform_device_put" [drivers/input/misc/wistron_btns.ko] undefined!
ERROR: "platform_device_add" [drivers/input/misc/wistron_btns.ko] undefined!
ERROR: "platform_device_alloc" [drivers/input/misc/wistron_btns.ko] undefined!
ERROR: "__platform_driver_register" [drivers/input/misc/wistron_btns.ko] undefined!
ERROR: "kfree" [drivers/input/misc/wistron_btns.ko] undefined!
ERROR: "check_signature" [drivers/input/misc/wistron_btns.ko] undefined!
ERROR: "ioremap" [drivers/input/misc/wistron_btns.ko] undefined!
ERROR: "kmemdup" [drivers/input/misc/wistron_btns.ko] undefined!
ERROR: "strcmp" [drivers/input/misc/wistron_btns.ko] undefined!
ERROR: "iounmap" [drivers/input/misc/wistron_btns.ko] undefined!
ERROR: "led_classdev_register_ext" [drivers/input/misc/wistron_btns.ko] undefined!
ERROR: "input_register_device" [drivers/input/misc/wistron_btns.ko] undefined!
ERROR: "input_setup_polling" [drivers/input/misc/wistron_btns.ko] undefined!
ERROR: "input_free_device" [drivers/input/misc/wistron_btns.ko] undefined!
ERROR: "sparse_keymap_setup" [drivers/input/misc/wistron_btns.ko] undefined!
ERROR: "input_allocate_device" [drivers/input/misc/wistron_btns.ko] undefined!
ERROR: "input_set_poll_interval" [drivers/input/misc/wistron_btns.ko] undefined!
ERROR: "led_classdev_unregister" [drivers/input/misc/wistron_btns.ko] undefined!
ERROR: "input_unregister_device" [drivers/input/misc/wistron_btns.ko] undefined!
ERROR: "led_classdev_suspend" [drivers/input/misc/wistron_btns.ko] undefined!
ERROR: "led_classdev_resume" [drivers/input/misc/wistron_btns.ko] undefined!
ERROR: "printk" [drivers/input/misc/wistron_btns.ko] undefined!
ERROR: "jiffies" [drivers/input/misc/wistron_btns.ko] undefined!
ERROR: "sparse_keymap_report_entry" [drivers/input/misc/wistron_btns.ko] undefined!
ERROR: "sparse_keymap_entry_from_scancode" [drivers/input/misc/wistron_btns.ko] undefined!
ERROR: "rtc_cmos_read" [drivers/input/misc/wistron_btns.ko] undefined!
ERROR: "trace_hardirqs_on" [drivers/input/misc/wistron_btns.ko] undefined!
ERROR: "trace_hardirqs_off" [drivers/input/misc/wistron_btns.ko] undefined!
ERROR: "__preempt_count" [drivers/input/misc/wistron_btns.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/input/misc/twl4030-vibra.ko] undefined!
ERROR: "__platform_driver_register" [drivers/input/misc/twl4030-vibra.ko] undefined!
ERROR: "twl4030_audio_enable_resource" [drivers/input/misc/twl4030-vibra.ko] undefined!
ERROR: "cancel_work_sync" [drivers/input/misc/twl4030-vibra.ko] undefined!
ERROR: "twl4030_audio_disable_resource" [drivers/input/misc/twl4030-vibra.ko] undefined!
ERROR: "_dev_err" [drivers/input/misc/twl4030-vibra.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/input/misc/twl4030-vibra.ko] undefined!
ERROR: "input_ff_destroy" [drivers/input/misc/twl4030-vibra.ko] undefined!
ERROR: "of_node_put" [drivers/input/misc/twl4030-vibra.ko] undefined!
ERROR: "input_register_device" [drivers/input/misc/twl4030-vibra.ko] undefined!
ERROR: "input_ff_create_memless" [drivers/input/misc/twl4030-vibra.ko] undefined!
ERROR: "devm_input_allocate_device" [drivers/input/misc/twl4030-vibra.ko] undefined!
ERROR: "lockdep_init_map" [drivers/input/misc/twl4030-vibra.ko] undefined!
ERROR: "of_get_child_by_name" [drivers/input/misc/twl4030-vibra.ko] undefined!
ERROR: "devm_kmalloc" [drivers/input/misc/twl4030-vibra.ko] undefined!
ERROR: "queue_work_on" [drivers/input/misc/twl4030-vibra.ko] undefined!
ERROR: "system_wq" [drivers/input/misc/twl4030-vibra.ko] undefined!
ERROR: "twl_i2c_write" [drivers/input/misc/twl4030-vibra.ko] undefined!
ERROR: "twl_i2c_read" [drivers/input/misc/twl4030-vibra.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/input/misc/tps65218-pwrbutton.ko] undefined!
ERROR: "__platform_driver_register" [drivers/input/misc/tps65218-pwrbutton.ko] undefined!
ERROR: "input_register_device" [drivers/input/misc/tps65218-pwrbutton.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/input/misc/tps65218-pwrbutton.ko] undefined!
ERROR: "platform_get_irq" [drivers/input/misc/tps65218-pwrbutton.ko] undefined!
ERROR: "device_init_wakeup" [drivers/input/misc/tps65218-pwrbutton.ko] undefined!
ERROR: "dev_get_regmap" [drivers/input/misc/tps65218-pwrbutton.ko] undefined!
ERROR: "input_set_capability" [drivers/input/misc/tps65218-pwrbutton.ko] undefined!
ERROR: "snprintf" [drivers/input/misc/tps65218-pwrbutton.ko] undefined!
ERROR: "devm_input_allocate_device" [drivers/input/misc/tps65218-pwrbutton.ko] undefined!
ERROR: "devm_kmalloc" [drivers/input/misc/tps65218-pwrbutton.ko] undefined!
ERROR: "of_match_node" [drivers/input/misc/tps65218-pwrbutton.ko] undefined!
ERROR: "_dev_err" [drivers/input/misc/tps65218-pwrbutton.ko] undefined!
ERROR: "pm_wakeup_dev_event" [drivers/input/misc/tps65218-pwrbutton.ko] undefined!
ERROR: "input_event" [drivers/input/misc/tps65218-pwrbutton.ko] undefined!
ERROR: "regmap_read" [drivers/input/misc/tps65218-pwrbutton.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/input/misc/sc27xx-vibra.ko] undefined!
ERROR: "__platform_driver_register" [drivers/input/misc/sc27xx-vibra.ko] undefined!
ERROR: "_dev_err" [drivers/input/misc/sc27xx-vibra.ko] undefined!
ERROR: "input_register_device" [drivers/input/misc/sc27xx-vibra.ko] undefined!
ERROR: "input_ff_create_memless" [drivers/input/misc/sc27xx-vibra.ko] undefined!
ERROR: "lockdep_init_map" [drivers/input/misc/sc27xx-vibra.ko] undefined!
ERROR: "input_set_capability" [drivers/input/misc/sc27xx-vibra.ko] undefined!
ERROR: "devm_input_allocate_device" [drivers/input/misc/sc27xx-vibra.ko] undefined!
ERROR: "device_property_read_u32_array" [drivers/input/misc/sc27xx-vibra.ko] undefined!
ERROR: "dev_get_regmap" [drivers/input/misc/sc27xx-vibra.ko] undefined!
ERROR: "devm_kmalloc" [drivers/input/misc/sc27xx-vibra.ko] undefined!
ERROR: "cancel_work_sync" [drivers/input/misc/sc27xx-vibra.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/input/misc/sc27xx-vibra.ko] undefined!
ERROR: "queue_work_on" [drivers/input/misc/sc27xx-vibra.ko] undefined!
ERROR: "system_wq" [drivers/input/misc/sc27xx-vibra.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/input/misc/rk805-pwrkey.ko] undefined!
ERROR: "__platform_driver_register" [drivers/input/misc/rk805-pwrkey.ko] undefined!
ERROR: "input_event" [drivers/input/misc/rk805-pwrkey.ko] undefined!
ERROR: "_dev_err" [drivers/input/misc/rk805-pwrkey.ko] undefined!
ERROR: "device_init_wakeup" [drivers/input/misc/rk805-pwrkey.ko] undefined!
ERROR: "input_register_device" [drivers/input/misc/rk805-pwrkey.ko] undefined!
ERROR: "devm_request_any_context_irq" [drivers/input/misc/rk805-pwrkey.ko] undefined!
ERROR: "platform_get_irq" [drivers/input/misc/rk805-pwrkey.ko] undefined!
ERROR: "input_set_capability" [drivers/input/misc/rk805-pwrkey.ko] undefined!
ERROR: "devm_input_allocate_device" [drivers/input/misc/rk805-pwrkey.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/input/misc/pcspkr.ko] undefined!
ERROR: "__platform_driver_register" [drivers/input/misc/pcspkr.ko] undefined!
ERROR: "input_free_device" [drivers/input/misc/pcspkr.ko] undefined!
ERROR: "input_register_device" [drivers/input/misc/pcspkr.ko] undefined!
ERROR: "input_allocate_device" [drivers/input/misc/pcspkr.ko] undefined!
ERROR: "input_unregister_device" [drivers/input/misc/pcspkr.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/input/misc/pcspkr.ko] undefined!
ERROR: "__x86_indirect_thunk_eax" [drivers/input/misc/pcspkr.ko] undefined!
ERROR: "pv_ops" [drivers/input/misc/pcspkr.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/input/misc/pcspkr.ko] undefined!
ERROR: "i8253_lock" [drivers/input/misc/pcspkr.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/input/misc/pcf50633-input.ko] undefined!
ERROR: "__platform_driver_register" [drivers/input/misc/pcf50633-input.ko] undefined!
ERROR: "input_free_device" [drivers/input/misc/pcf50633-input.ko] undefined!
ERROR: "pcf50633_register_irq" [drivers/input/misc/pcf50633-input.ko] undefined!
ERROR: "input_register_device" [drivers/input/misc/pcf50633-input.ko] undefined!
ERROR: "input_allocate_device" [drivers/input/misc/pcf50633-input.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/input/misc/pcf50633-input.ko] undefined!
ERROR: "kmalloc_caches" [drivers/input/misc/pcf50633-input.ko] undefined!
ERROR: "input_event" [drivers/input/misc/pcf50633-input.ko] undefined!
ERROR: "pcf50633_reg_read" [drivers/input/misc/pcf50633-input.ko] undefined!
ERROR: "kfree" [drivers/input/misc/pcf50633-input.ko] undefined!
ERROR: "input_unregister_device" [drivers/input/misc/pcf50633-input.ko] undefined!
ERROR: "pcf50633_free_irq" [drivers/input/misc/pcf50633-input.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/input/misc/msm-vibrator.ko] undefined!
ERROR: "__platform_driver_register" [drivers/input/misc/msm-vibrator.ko] undefined!
ERROR: "input_register_device" [drivers/input/misc/msm-vibrator.ko] undefined!
ERROR: "input_ff_create_memless" [drivers/input/misc/msm-vibrator.ko] undefined!
ERROR: "input_set_capability" [drivers/input/misc/msm-vibrator.ko] undefined!
ERROR: "lockdep_init_map" [drivers/input/misc/msm-vibrator.ko] undefined!
ERROR: "__mutex_init" [drivers/input/misc/msm-vibrator.ko] undefined!
ERROR: "devm_ioremap" [drivers/input/misc/msm-vibrator.ko] undefined!
ERROR: "platform_get_resource" [drivers/input/misc/msm-vibrator.ko] undefined!
ERROR: "devm_clk_get" [drivers/input/misc/msm-vibrator.ko] undefined!
ERROR: "devm_gpiod_get" [drivers/input/misc/msm-vibrator.ko] undefined!
ERROR: "devm_regulator_get" [drivers/input/misc/msm-vibrator.ko] undefined!
ERROR: "devm_input_allocate_device" [drivers/input/misc/msm-vibrator.ko] undefined!
ERROR: "devm_kmalloc" [drivers/input/misc/msm-vibrator.ko] undefined!
ERROR: "queue_work_on" [drivers/input/misc/msm-vibrator.ko] undefined!
ERROR: "system_wq" [drivers/input/misc/msm-vibrator.ko] undefined!
ERROR: "cancel_work_sync" [drivers/input/misc/msm-vibrator.ko] undefined!
ERROR: "regulator_disable" [drivers/input/misc/msm-vibrator.ko] undefined!
ERROR: "clk_disable" [drivers/input/misc/msm-vibrator.ko] undefined!
ERROR: "_dev_err" [drivers/input/misc/msm-vibrator.ko] undefined!
ERROR: "clk_unprepare" [drivers/input/misc/msm-vibrator.ko] undefined!
ERROR: "gpiod_set_value_cansleep" [drivers/input/misc/msm-vibrator.ko] undefined!
ERROR: "regulator_enable" [drivers/input/misc/msm-vibrator.ko] undefined!
ERROR: "clk_enable" [drivers/input/misc/msm-vibrator.ko] undefined!
ERROR: "clk_prepare" [drivers/input/misc/msm-vibrator.ko] undefined!
ERROR: "clk_set_rate" [drivers/input/misc/msm-vibrator.ko] undefined!
ERROR: "mutex_unlock" [drivers/input/misc/msm-vibrator.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/input/misc/msm-vibrator.ko] undefined!
ERROR: "i2c_del_driver" [drivers/input/misc/mma8450.ko] undefined!
ERROR: "i2c_register_driver" [drivers/input/misc/mma8450.ko] undefined!
ERROR: "input_event" [drivers/input/misc/mma8450.ko] undefined!
ERROR: "i2c_smbus_read_i2c_block_data" [drivers/input/misc/mma8450.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/input/misc/mma8450.ko] undefined!
ERROR: "msleep" [drivers/input/misc/mma8450.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/input/misc/mma8450.ko] undefined!
ERROR: "_dev_err" [drivers/input/misc/mma8450.ko] undefined!
ERROR: "input_register_device" [drivers/input/misc/mma8450.ko] undefined!
ERROR: "input_set_max_poll_interval" [drivers/input/misc/mma8450.ko] undefined!
ERROR: "input_set_poll_interval" [drivers/input/misc/mma8450.ko] undefined!
ERROR: "input_setup_polling" [drivers/input/misc/mma8450.ko] undefined!
ERROR: "input_set_abs_params" [drivers/input/misc/mma8450.ko] undefined!
ERROR: "devm_input_allocate_device" [drivers/input/misc/mma8450.ko] undefined!
ERROR: "i2c_del_driver" [drivers/input/misc/kxtj9.ko] undefined!
ERROR: "i2c_register_driver" [drivers/input/misc/kxtj9.ko] undefined!
ERROR: "input_get_poll_interval" [drivers/input/misc/kxtj9.ko] undefined!
ERROR: "input_event" [drivers/input/misc/kxtj9.ko] undefined!
ERROR: "i2c_transfer" [drivers/input/misc/kxtj9.ko] undefined!
ERROR: "input_setup_polling" [drivers/input/misc/kxtj9.ko] undefined!
ERROR: "devm_device_add_group" [drivers/input/misc/kxtj9.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/input/misc/kxtj9.ko] undefined!
ERROR: "input_register_device" [drivers/input/misc/kxtj9.ko] undefined!
ERROR: "input_set_abs_params" [drivers/input/misc/kxtj9.ko] undefined!
ERROR: "devm_input_allocate_device" [drivers/input/misc/kxtj9.ko] undefined!
ERROR: "devm_add_action" [drivers/input/misc/kxtj9.ko] undefined!
ERROR: "devm_kmalloc" [drivers/input/misc/kxtj9.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/input/misc/kxtj9.ko] undefined!
ERROR: "sprintf" [drivers/input/misc/kxtj9.ko] undefined!
ERROR: "enable_irq" [drivers/input/misc/kxtj9.ko] undefined!
ERROR: "disable_irq" [drivers/input/misc/kxtj9.ko] undefined!
ERROR: "kstrtouint" [drivers/input/misc/kxtj9.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/input/misc/kxtj9.ko] undefined!
ERROR: "mutex_unlock" [drivers/input/misc/kxtj9.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/input/misc/kxtj9.ko] undefined!
ERROR: "_dev_err" [drivers/input/misc/kxtj9.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/input/misc/kxtj9.ko] undefined!
ERROR: "__x86_indirect_thunk_eax" [drivers/input/misc/kxtj9.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/input/misc/gpio-vibra.ko] undefined!
ERROR: "__platform_driver_register" [drivers/input/misc/gpio-vibra.ko] undefined!
ERROR: "input_register_device" [drivers/input/misc/gpio-vibra.ko] undefined!
ERROR: "input_ff_create_memless" [drivers/input/misc/gpio-vibra.ko] undefined!
ERROR: "input_set_capability" [drivers/input/misc/gpio-vibra.ko] undefined!
ERROR: "lockdep_init_map" [drivers/input/misc/gpio-vibra.ko] undefined!
ERROR: "devm_gpiod_get" [drivers/input/misc/gpio-vibra.ko] undefined!
ERROR: "devm_regulator_get" [drivers/input/misc/gpio-vibra.ko] undefined!
ERROR: "devm_input_allocate_device" [drivers/input/misc/gpio-vibra.ko] undefined!
ERROR: "devm_kmalloc" [drivers/input/misc/gpio-vibra.ko] undefined!
ERROR: "queue_work_on" [drivers/input/misc/gpio-vibra.ko] undefined!
ERROR: "system_wq" [drivers/input/misc/gpio-vibra.ko] undefined!
ERROR: "cancel_work_sync" [drivers/input/misc/gpio-vibra.ko] undefined!
ERROR: "regulator_disable" [drivers/input/misc/gpio-vibra.ko] undefined!
ERROR: "_dev_err" [drivers/input/misc/gpio-vibra.ko] undefined!
ERROR: "gpiod_set_value_cansleep" [drivers/input/misc/gpio-vibra.ko] undefined!
ERROR: "regulator_enable" [drivers/input/misc/gpio-vibra.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/input/misc/gpio_decoder.ko] undefined!
ERROR: "__platform_driver_register" [drivers/input/misc/gpio_decoder.ko] undefined!
ERROR: "desc_to_gpio" [drivers/input/misc/gpio_decoder.ko] undefined!
ERROR: "input_event" [drivers/input/misc/gpio_decoder.ko] undefined!
ERROR: "gpiod_get_value_cansleep" [drivers/input/misc/gpio_decoder.ko] undefined!
ERROR: "_dev_err" [drivers/input/misc/gpio_decoder.ko] undefined!
ERROR: "input_register_device" [drivers/input/misc/gpio_decoder.ko] undefined!
ERROR: "input_setup_polling" [drivers/input/misc/gpio_decoder.ko] undefined!
ERROR: "input_set_abs_params" [drivers/input/misc/gpio_decoder.ko] undefined!
ERROR: "devm_input_allocate_device" [drivers/input/misc/gpio_decoder.ko] undefined!
ERROR: "devm_gpiod_get_array" [drivers/input/misc/gpio_decoder.ko] undefined!
ERROR: "device_property_read_u32_array" [drivers/input/misc/gpio_decoder.ko] undefined!
ERROR: "devm_kmalloc" [drivers/input/misc/gpio_decoder.ko] undefined!
ERROR: "i2c_del_driver" [drivers/input/misc/drv2667.ko] undefined!
ERROR: "i2c_register_driver" [drivers/input/misc/drv2667.ko] undefined!
ERROR: "input_register_device" [drivers/input/misc/drv2667.ko] undefined!
ERROR: "regmap_read" [drivers/input/misc/drv2667.ko] undefined!
ERROR: "regmap_register_patch" [drivers/input/misc/drv2667.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/input/misc/drv2667.ko] undefined!
ERROR: "lockdep_init_map" [drivers/input/misc/drv2667.ko] undefined!
ERROR: "input_ff_create_memless" [drivers/input/misc/drv2667.ko] undefined!
ERROR: "input_set_capability" [drivers/input/misc/drv2667.ko] undefined!
ERROR: "devm_input_allocate_device" [drivers/input/misc/drv2667.ko] undefined!
ERROR: "devm_regulator_get" [drivers/input/misc/drv2667.ko] undefined!
ERROR: "devm_kmalloc" [drivers/input/misc/drv2667.ko] undefined!
ERROR: "cancel_work_sync" [drivers/input/misc/drv2667.ko] undefined!
ERROR: "queue_work_on" [drivers/input/misc/drv2667.ko] undefined!
ERROR: "system_wq" [drivers/input/misc/drv2667.ko] undefined!
ERROR: "regmap_write" [drivers/input/misc/drv2667.ko] undefined!
ERROR: "regulator_disable" [drivers/input/misc/drv2667.ko] undefined!
ERROR: "_dev_err" [drivers/input/misc/drv2667.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/input/misc/drv2667.ko] undefined!
ERROR: "regulator_enable" [drivers/input/misc/drv2667.ko] undefined!
ERROR: "mutex_unlock" [drivers/input/misc/drv2667.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/input/misc/drv2667.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/input/misc/e3x0-button.ko] undefined!
ERROR: "__platform_driver_register" [drivers/input/misc/e3x0-button.ko] undefined!
ERROR: "_dev_err" [drivers/input/misc/e3x0-button.ko] undefined!
ERROR: "device_init_wakeup" [drivers/input/misc/e3x0-button.ko] undefined!
ERROR: "input_register_device" [drivers/input/misc/e3x0-button.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/input/misc/e3x0-button.ko] undefined!
ERROR: "input_set_capability" [drivers/input/misc/e3x0-button.ko] undefined!
ERROR: "devm_input_allocate_device" [drivers/input/misc/e3x0-button.ko] undefined!
ERROR: "pm_wakeup_dev_event" [drivers/input/misc/e3x0-button.ko] undefined!
ERROR: "input_event" [drivers/input/misc/e3x0-button.ko] undefined!
ERROR: "irq_set_irq_wake" [drivers/input/misc/e3x0-button.ko] undefined!
ERROR: "platform_get_irq_byname" [drivers/input/misc/e3x0-button.ko] undefined!
ERROR: "i2c_del_driver" [drivers/input/misc/adxl34x-i2c.ko] undefined!
ERROR: "i2c_register_driver" [drivers/input/misc/adxl34x-i2c.ko] undefined!
ERROR: "i2c_smbus_read_i2c_block_data" [drivers/input/misc/adxl34x-i2c.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/input/misc/adxl34x-i2c.ko] undefined!
ERROR: "i2c_transfer_buffer_flags" [drivers/input/misc/adxl34x-i2c.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/input/misc/adxl34x-i2c.ko] undefined!
ERROR: "_dev_err" [drivers/input/misc/adxl34x-i2c.ko] undefined!
ERROR: "adxl34x_probe" [drivers/input/misc/adxl34x-i2c.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/input/misc/adxl34x-i2c.ko] undefined!
ERROR: "adxl34x_remove" [drivers/input/misc/adxl34x-i2c.ko] undefined!
ERROR: "adxl34x_suspend" [drivers/input/misc/adxl34x-i2c.ko] undefined!
ERROR: "adxl34x_resume" [drivers/input/misc/adxl34x-i2c.ko] undefined!
ERROR: "i2c_del_driver" [drivers/input/misc/ad714x-i2c.ko] undefined!
ERROR: "i2c_register_driver" [drivers/input/misc/ad714x-i2c.ko] undefined!
ERROR: "_dev_err" [drivers/input/misc/ad714x-i2c.ko] undefined!
ERROR: "i2c_transfer_buffer_flags" [drivers/input/misc/ad714x-i2c.ko] undefined!
ERROR: "ad714x_probe" [drivers/input/misc/ad714x-i2c.ko] undefined!
ERROR: "ad714x_disable" [drivers/input/misc/ad714x-i2c.ko] undefined!
ERROR: "ad714x_enable" [drivers/input/misc/ad714x-i2c.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/input/misc/ad714x.ko] undefined!
ERROR: "input_register_device" [drivers/input/misc/ad714x.ko] undefined!
ERROR: "input_set_abs_params" [drivers/input/misc/ad714x.ko] undefined!
ERROR: "devm_input_allocate_device" [drivers/input/misc/ad714x.ko] undefined!
ERROR: "__mutex_init" [drivers/input/misc/ad714x.ko] undefined!
ERROR: "_dev_info" [drivers/input/misc/ad714x.ko] undefined!
ERROR: "_dev_err" [drivers/input/misc/ad714x.ko] undefined!
ERROR: "devm_kmalloc" [drivers/input/misc/ad714x.ko] undefined!
ERROR: "mutex_unlock" [drivers/input/misc/ad714x.ko] undefined!
ERROR: "input_event" [drivers/input/misc/ad714x.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/input/misc/ad714x.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/input/misc/ad714x.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/input/misc/ad714x.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/input/misc/ad714x.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/input/misc/ad714x.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/input/misc/88pm80x_onkey.ko] undefined!
ERROR: "__platform_driver_register" [drivers/input/misc/88pm80x_onkey.ko] undefined!
ERROR: "input_unregister_device" [drivers/input/misc/88pm80x_onkey.ko] undefined!
ERROR: "free_irq" [drivers/input/misc/88pm80x_onkey.ko] undefined!
ERROR: "input_free_device" [drivers/input/misc/88pm80x_onkey.ko] undefined!
ERROR: "kfree" [drivers/input/misc/88pm80x_onkey.ko] undefined!
ERROR: "device_init_wakeup" [drivers/input/misc/88pm80x_onkey.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/input/misc/88pm80x_onkey.ko] undefined!
ERROR: "input_register_device" [drivers/input/misc/88pm80x_onkey.ko] undefined!
ERROR: "request_threaded_irq" [drivers/input/misc/88pm80x_onkey.ko] undefined!
ERROR: "regmap_irq_get_virq" [drivers/input/misc/88pm80x_onkey.ko] undefined!
ERROR: "input_allocate_device" [drivers/input/misc/88pm80x_onkey.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/input/misc/88pm80x_onkey.ko] undefined!
ERROR: "kmalloc_caches" [drivers/input/misc/88pm80x_onkey.ko] undefined!
ERROR: "_dev_err" [drivers/input/misc/88pm80x_onkey.ko] undefined!
ERROR: "input_event" [drivers/input/misc/88pm80x_onkey.ko] undefined!
ERROR: "regmap_read" [drivers/input/misc/88pm80x_onkey.ko] undefined!
ERROR: "platform_get_irq" [drivers/input/misc/88pm80x_onkey.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/input/misc/88pm860x_onkey.ko] undefined!
ERROR: "__platform_driver_register" [drivers/input/misc/88pm860x_onkey.ko] undefined!
ERROR: "_dev_err" [drivers/input/misc/88pm860x_onkey.ko] undefined!
ERROR: "device_init_wakeup" [drivers/input/misc/88pm860x_onkey.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/input/misc/88pm860x_onkey.ko] undefined!
ERROR: "input_register_device" [drivers/input/misc/88pm860x_onkey.ko] undefined!
ERROR: "devm_input_allocate_device" [drivers/input/misc/88pm860x_onkey.ko] undefined!
ERROR: "devm_kmalloc" [drivers/input/misc/88pm860x_onkey.ko] undefined!
ERROR: "platform_get_irq" [drivers/input/misc/88pm860x_onkey.ko] undefined!
ERROR: "pm860x_set_bits" [drivers/input/misc/88pm860x_onkey.ko] undefined!
ERROR: "input_event" [drivers/input/misc/88pm860x_onkey.ko] undefined!
ERROR: "pm860x_reg_read" [drivers/input/misc/88pm860x_onkey.ko] undefined!
ERROR: "i2c_del_driver" [drivers/input/touchscreen/iqs5xx.ko] undefined!
ERROR: "i2c_register_driver" [drivers/input/touchscreen/iqs5xx.ko] undefined!
ERROR: "memcmp" [drivers/input/touchscreen/iqs5xx.ko] undefined!
ERROR: "kfree" [drivers/input/touchscreen/iqs5xx.ko] undefined!
ERROR: "kmalloc_order_trace" [drivers/input/touchscreen/iqs5xx.ko] undefined!
ERROR: "input_register_device" [drivers/input/touchscreen/iqs5xx.ko] undefined!
ERROR: "devm_device_add_group" [drivers/input/touchscreen/iqs5xx.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/input/touchscreen/iqs5xx.ko] undefined!
ERROR: "__mutex_init" [drivers/input/touchscreen/iqs5xx.ko] undefined!
ERROR: "devm_gpiod_get" [drivers/input/touchscreen/iqs5xx.ko] undefined!
ERROR: "devm_kmalloc" [drivers/input/touchscreen/iqs5xx.ko] undefined!
ERROR: "input_alloc_absinfo" [drivers/input/touchscreen/iqs5xx.ko] undefined!
ERROR: "input_set_capability" [drivers/input/touchscreen/iqs5xx.ko] undefined!
ERROR: "devm_input_allocate_device" [drivers/input/touchscreen/iqs5xx.ko] undefined!
ERROR: "input_mt_init_slots" [drivers/input/touchscreen/iqs5xx.ko] undefined!
ERROR: "touchscreen_parse_properties" [drivers/input/touchscreen/iqs5xx.ko] undefined!
ERROR: "gpiod_set_value_cansleep" [drivers/input/touchscreen/iqs5xx.ko] undefined!
ERROR: "input_mt_sync_frame" [drivers/input/touchscreen/iqs5xx.ko] undefined!
ERROR: "input_mt_report_slot_state" [drivers/input/touchscreen/iqs5xx.ko] undefined!
ERROR: "input_event" [drivers/input/touchscreen/iqs5xx.ko] undefined!
ERROR: "msleep" [drivers/input/touchscreen/iqs5xx.ko] undefined!
ERROR: "i2c_transfer" [drivers/input/touchscreen/iqs5xx.ko] undefined!
ERROR: "release_firmware" [drivers/input/touchscreen/iqs5xx.ko] undefined!
ERROR: "hex2bin" [drivers/input/touchscreen/iqs5xx.ko] undefined!
ERROR: "request_firmware" [drivers/input/touchscreen/iqs5xx.ko] undefined!
ERROR: "mutex_unlock" [drivers/input/touchscreen/iqs5xx.ko] undefined!
ERROR: "enable_irq" [drivers/input/touchscreen/iqs5xx.ko] undefined!
ERROR: "disable_irq" [drivers/input/touchscreen/iqs5xx.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/input/touchscreen/iqs5xx.ko] undefined!
ERROR: "_dev_err" [drivers/input/touchscreen/iqs5xx.ko] undefined!
ERROR: "i2c_transfer_buffer_flags" [drivers/input/touchscreen/iqs5xx.ko] undefined!
ERROR: "usleep_range" [drivers/input/touchscreen/iqs5xx.ko] undefined!
ERROR: "i2c_del_driver" [drivers/input/touchscreen/rohm_bu21023.ko] undefined!
ERROR: "i2c_register_driver" [drivers/input/touchscreen/rohm_bu21023.ko] undefined!
ERROR: "enable_irq" [drivers/input/touchscreen/rohm_bu21023.ko] undefined!
ERROR: "release_firmware" [drivers/input/touchscreen/rohm_bu21023.ko] undefined!
ERROR: "i2c_smbus_write_i2c_block_data" [drivers/input/touchscreen/rohm_bu21023.ko] undefined!
ERROR: "request_firmware" [drivers/input/touchscreen/rohm_bu21023.ko] undefined!
ERROR: "disable_irq" [drivers/input/touchscreen/rohm_bu21023.ko] undefined!
ERROR: "_dev_warn" [drivers/input/touchscreen/rohm_bu21023.ko] undefined!
ERROR: "__const_udelay" [drivers/input/touchscreen/rohm_bu21023.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/input/touchscreen/rohm_bu21023.ko] undefined!
ERROR: "input_mt_report_slot_state" [drivers/input/touchscreen/rohm_bu21023.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/input/touchscreen/rohm_bu21023.ko] undefined!
ERROR: "input_event" [drivers/input/touchscreen/rohm_bu21023.ko] undefined!
ERROR: "input_mt_report_pointer_emulation" [drivers/input/touchscreen/rohm_bu21023.ko] undefined!
ERROR: "input_mt_sync_frame" [drivers/input/touchscreen/rohm_bu21023.ko] undefined!
ERROR: "input_mt_assign_slots" [drivers/input/touchscreen/rohm_bu21023.ko] undefined!
ERROR: "devm_device_add_group" [drivers/input/touchscreen/rohm_bu21023.ko] undefined!
ERROR: "input_register_device" [drivers/input/touchscreen/rohm_bu21023.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/input/touchscreen/rohm_bu21023.ko] undefined!
ERROR: "input_mt_init_slots" [drivers/input/touchscreen/rohm_bu21023.ko] undefined!
ERROR: "input_set_abs_params" [drivers/input/touchscreen/rohm_bu21023.ko] undefined!
ERROR: "devm_input_allocate_device" [drivers/input/touchscreen/rohm_bu21023.ko] undefined!
ERROR: "devm_kmalloc" [drivers/input/touchscreen/rohm_bu21023.ko] undefined!
ERROR: "__i2c_transfer" [drivers/input/touchscreen/rohm_bu21023.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/input/touchscreen/rohm_bu21023.ko] undefined!
ERROR: "sprintf" [drivers/input/touchscreen/rohm_bu21023.ko] undefined!
ERROR: "mutex_unlock" [drivers/input/touchscreen/rohm_bu21023.ko] undefined!
ERROR: "mutex_lock_interruptible_nested" [drivers/input/touchscreen/rohm_bu21023.ko] undefined!
ERROR: "kstrtouint" [drivers/input/touchscreen/rohm_bu21023.ko] undefined!
ERROR: "_dev_err" [drivers/input/touchscreen/rohm_bu21023.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/input/touchscreen/rohm_bu21023.ko] undefined!
ERROR: "i2c_del_driver" [drivers/input/touchscreen/zforce_ts.ko] undefined!
ERROR: "i2c_register_driver" [drivers/input/touchscreen/zforce_ts.ko] undefined!
ERROR: "disable_irq" [drivers/input/touchscreen/zforce_ts.ko] undefined!
ERROR: "enable_irq" [drivers/input/touchscreen/zforce_ts.ko] undefined!
ERROR: "irq_set_irq_wake" [drivers/input/touchscreen/zforce_ts.ko] undefined!
ERROR: "devm_gpiod_get_index" [drivers/input/touchscreen/zforce_ts.ko] undefined!
ERROR: "regulator_enable" [drivers/input/touchscreen/zforce_ts.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/input/touchscreen/zforce_ts.ko] undefined!
ERROR: "input_register_device" [drivers/input/touchscreen/zforce_ts.ko] undefined!
ERROR: "device_set_wakeup_capable" [drivers/input/touchscreen/zforce_ts.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/input/touchscreen/zforce_ts.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/input/touchscreen/zforce_ts.ko] undefined!
ERROR: "input_mt_init_slots" [drivers/input/touchscreen/zforce_ts.ko] undefined!
ERROR: "input_set_abs_params" [drivers/input/touchscreen/zforce_ts.ko] undefined!
ERROR: "__mutex_init" [drivers/input/touchscreen/zforce_ts.ko] undefined!
ERROR: "devm_input_allocate_device" [drivers/input/touchscreen/zforce_ts.ko] undefined!
ERROR: "snprintf" [drivers/input/touchscreen/zforce_ts.ko] undefined!
ERROR: "devm_add_action" [drivers/input/touchscreen/zforce_ts.ko] undefined!
ERROR: "devm_regulator_get_optional" [drivers/input/touchscreen/zforce_ts.ko] undefined!
ERROR: "devm_gpiod_get_optional" [drivers/input/touchscreen/zforce_ts.ko] undefined!
ERROR: "devm_kmalloc" [drivers/input/touchscreen/zforce_ts.ko] undefined!
ERROR: "regulator_disable" [drivers/input/touchscreen/zforce_ts.ko] undefined!
ERROR: "__const_udelay" [drivers/input/touchscreen/zforce_ts.ko] undefined!
ERROR: "gpiod_set_value_cansleep" [drivers/input/touchscreen/zforce_ts.ko] undefined!
ERROR: "pm_relax" [drivers/input/touchscreen/zforce_ts.ko] undefined!
ERROR: "pm_stay_awake" [drivers/input/touchscreen/zforce_ts.ko] undefined!
ERROR: "msleep" [drivers/input/touchscreen/zforce_ts.ko] undefined!
ERROR: "gpiod_get_value_cansleep" [drivers/input/touchscreen/zforce_ts.ko] undefined!
ERROR: "input_mt_report_finger_count" [drivers/input/touchscreen/zforce_ts.ko] undefined!
ERROR: "input_mt_sync_frame" [drivers/input/touchscreen/zforce_ts.ko] undefined!
ERROR: "input_mt_report_slot_state" [drivers/input/touchscreen/zforce_ts.ko] undefined!
ERROR: "input_event" [drivers/input/touchscreen/zforce_ts.ko] undefined!
ERROR: "complete" [drivers/input/touchscreen/zforce_ts.ko] undefined!
ERROR: "pm_wakeup_dev_event" [drivers/input/touchscreen/zforce_ts.ko] undefined!
ERROR: "_dev_warn" [drivers/input/touchscreen/zforce_ts.ko] undefined!
ERROR: "_dev_err" [drivers/input/touchscreen/zforce_ts.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/input/touchscreen/zforce_ts.ko] undefined!
ERROR: "wait_for_completion_timeout" [drivers/input/touchscreen/zforce_ts.ko] undefined!
ERROR: "mutex_unlock" [drivers/input/touchscreen/zforce_ts.ko] undefined!
ERROR: "i2c_transfer_buffer_flags" [drivers/input/touchscreen/zforce_ts.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/input/touchscreen/zforce_ts.ko] undefined!
ERROR: "mutex_trylock" [drivers/input/touchscreen/zforce_ts.ko] undefined!
ERROR: "i2c_del_driver" [drivers/input/touchscreen/zet6223.ko] undefined!
ERROR: "i2c_register_driver" [drivers/input/touchscreen/zet6223.ko] undefined!
ERROR: "_dev_warn" [drivers/input/touchscreen/zet6223.ko] undefined!
ERROR: "input_register_device" [drivers/input/touchscreen/zet6223.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/input/touchscreen/zet6223.ko] undefined!
ERROR: "input_mt_init_slots" [drivers/input/touchscreen/zet6223.ko] undefined!
ERROR: "touchscreen_parse_properties" [drivers/input/touchscreen/zet6223.ko] undefined!
ERROR: "input_set_abs_params" [drivers/input/touchscreen/zet6223.ko] undefined!
ERROR: "devm_input_allocate_device" [drivers/input/touchscreen/zet6223.ko] undefined!
ERROR: "devm_add_action" [drivers/input/touchscreen/zet6223.ko] undefined!
ERROR: "msleep" [drivers/input/touchscreen/zet6223.ko] undefined!
ERROR: "regulator_bulk_enable" [drivers/input/touchscreen/zet6223.ko] undefined!
ERROR: "devm_regulator_bulk_get" [drivers/input/touchscreen/zet6223.ko] undefined!
ERROR: "devm_kmalloc" [drivers/input/touchscreen/zet6223.ko] undefined!
ERROR: "disable_irq" [drivers/input/touchscreen/zet6223.ko] undefined!
ERROR: "regulator_bulk_disable" [drivers/input/touchscreen/zet6223.ko] undefined!
ERROR: "enable_irq" [drivers/input/touchscreen/zet6223.ko] undefined!
ERROR: "_dev_err" [drivers/input/touchscreen/zet6223.ko] undefined!
ERROR: "input_mt_sync_frame" [drivers/input/touchscreen/zet6223.ko] undefined!
ERROR: "input_mt_report_slot_state" [drivers/input/touchscreen/zet6223.ko] undefined!
ERROR: "input_event" [drivers/input/touchscreen/zet6223.ko] undefined!
ERROR: "___ratelimit" [drivers/input/touchscreen/zet6223.ko] undefined!
ERROR: "i2c_transfer_buffer_flags" [drivers/input/touchscreen/zet6223.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/input/touchscreen/tps6507x-ts.ko] undefined!
ERROR: "__platform_driver_register" [drivers/input/touchscreen/tps6507x-ts.ko] undefined!
ERROR: "input_event" [drivers/input/touchscreen/tps6507x-ts.ko] undefined!
ERROR: "input_register_device" [drivers/input/touchscreen/tps6507x-ts.ko] undefined!
ERROR: "input_set_poll_interval" [drivers/input/touchscreen/tps6507x-ts.ko] undefined!
ERROR: "input_setup_polling" [drivers/input/touchscreen/tps6507x-ts.ko] undefined!
ERROR: "input_set_abs_params" [drivers/input/touchscreen/tps6507x-ts.ko] undefined!
ERROR: "input_set_capability" [drivers/input/touchscreen/tps6507x-ts.ko] undefined!
ERROR: "devm_input_allocate_device" [drivers/input/touchscreen/tps6507x-ts.ko] undefined!
ERROR: "snprintf" [drivers/input/touchscreen/tps6507x-ts.ko] undefined!
ERROR: "devm_kmalloc" [drivers/input/touchscreen/tps6507x-ts.ko] undefined!
ERROR: "__const_udelay" [drivers/input/touchscreen/tps6507x-ts.ko] undefined!
ERROR: "_dev_err" [drivers/input/touchscreen/tps6507x-ts.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/input/touchscreen/tps6507x-ts.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/input/touchscreen/tps6507x-ts.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/input/touchscreen/tps6507x-ts.ko] undefined!
ERROR: "i2c_del_driver" [drivers/input/touchscreen/sx8654.ko] undefined!
ERROR: "i2c_register_driver" [drivers/input/touchscreen/sx8654.ko] undefined!
ERROR: "input_register_device" [drivers/input/touchscreen/sx8654.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/input/touchscreen/sx8654.ko] undefined!
ERROR: "__const_udelay" [drivers/input/touchscreen/sx8654.ko] undefined!
ERROR: "gpiod_set_value_cansleep" [drivers/input/touchscreen/sx8654.ko] undefined!
ERROR: "touchscreen_parse_properties" [drivers/input/touchscreen/sx8654.ko] undefined!
ERROR: "input_set_abs_params" [drivers/input/touchscreen/sx8654.ko] undefined!
ERROR: "input_set_capability" [drivers/input/touchscreen/sx8654.ko] undefined!
ERROR: "devm_input_allocate_device" [drivers/input/touchscreen/sx8654.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/input/touchscreen/sx8654.ko] undefined!
ERROR: "init_timer_key" [drivers/input/touchscreen/sx8654.ko] undefined!
ERROR: "device_get_match_data" [drivers/input/touchscreen/sx8654.ko] undefined!
ERROR: "devm_gpiod_get_optional" [drivers/input/touchscreen/sx8654.ko] undefined!
ERROR: "devm_kmalloc" [drivers/input/touchscreen/sx8654.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/input/touchscreen/sx8654.ko] undefined!
ERROR: "enable_irq" [drivers/input/touchscreen/sx8654.ko] undefined!
ERROR: "_dev_err" [drivers/input/touchscreen/sx8654.ko] undefined!
ERROR: "del_timer" [drivers/input/touchscreen/sx8654.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/input/touchscreen/sx8654.ko] undefined!
ERROR: "i2c_smbus_write_byte" [drivers/input/touchscreen/sx8654.ko] undefined!
ERROR: "disable_irq" [drivers/input/touchscreen/sx8654.ko] undefined!
ERROR: "_dev_warn" [drivers/input/touchscreen/sx8654.ko] undefined!
ERROR: "mod_timer" [drivers/input/touchscreen/sx8654.ko] undefined!
ERROR: "jiffies" [drivers/input/touchscreen/sx8654.ko] undefined!
ERROR: "__sw_hweight32" [drivers/input/touchscreen/sx8654.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/input/touchscreen/sx8654.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/input/touchscreen/sx8654.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/input/touchscreen/sx8654.ko] undefined!
ERROR: "touchscreen_report_pos" [drivers/input/touchscreen/sx8654.ko] undefined!
ERROR: "i2c_transfer_buffer_flags" [drivers/input/touchscreen/sx8654.ko] undefined!
ERROR: "input_event" [drivers/input/touchscreen/sx8654.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/input/touchscreen/sx8654.ko] undefined!
ERROR: "serio_unregister_driver" [drivers/input/touchscreen/tsc40.ko] undefined!
ERROR: "__serio_register_driver" [drivers/input/touchscreen/tsc40.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/input/touchscreen/tsc40.ko] undefined!
ERROR: "input_event" [drivers/input/touchscreen/tsc40.ko] undefined!
ERROR: "input_register_device" [drivers/input/touchscreen/tsc40.ko] undefined!
ERROR: "input_free_device" [drivers/input/touchscreen/tsc40.ko] undefined!
ERROR: "serio_open" [drivers/input/touchscreen/tsc40.ko] undefined!
ERROR: "input_set_abs_params" [drivers/input/touchscreen/tsc40.ko] undefined!
ERROR: "snprintf" [drivers/input/touchscreen/tsc40.ko] undefined!
ERROR: "input_allocate_device" [drivers/input/touchscreen/tsc40.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/input/touchscreen/tsc40.ko] undefined!
ERROR: "kmalloc_caches" [drivers/input/touchscreen/tsc40.ko] undefined!
ERROR: "kfree" [drivers/input/touchscreen/tsc40.ko] undefined!
ERROR: "input_unregister_device" [drivers/input/touchscreen/tsc40.ko] undefined!
ERROR: "serio_close" [drivers/input/touchscreen/tsc40.ko] undefined!
ERROR: "serio_unregister_driver" [drivers/input/touchscreen/touchright.ko] undefined!
ERROR: "__serio_register_driver" [drivers/input/touchscreen/touchright.ko] undefined!
ERROR: "input_event" [drivers/input/touchscreen/touchright.ko] undefined!
ERROR: "input_register_device" [drivers/input/touchscreen/touchright.ko] undefined!
ERROR: "input_free_device" [drivers/input/touchscreen/touchright.ko] undefined!
ERROR: "serio_open" [drivers/input/touchscreen/touchright.ko] undefined!
ERROR: "input_set_abs_params" [drivers/input/touchscreen/touchright.ko] undefined!
ERROR: "snprintf" [drivers/input/touchscreen/touchright.ko] undefined!
ERROR: "input_allocate_device" [drivers/input/touchscreen/touchright.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/input/touchscreen/touchright.ko] undefined!
ERROR: "kmalloc_caches" [drivers/input/touchscreen/touchright.ko] undefined!
ERROR: "kfree" [drivers/input/touchscreen/touchright.ko] undefined!
ERROR: "put_device" [drivers/input/touchscreen/touchright.ko] undefined!
ERROR: "serio_close" [drivers/input/touchscreen/touchright.ko] undefined!
ERROR: "input_unregister_device" [drivers/input/touchscreen/touchright.ko] undefined!
ERROR: "get_device" [drivers/input/touchscreen/touchright.ko] undefined!
ERROR: "serio_unregister_driver" [drivers/input/touchscreen/touchit213.ko] undefined!
ERROR: "__serio_register_driver" [drivers/input/touchscreen/touchit213.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/input/touchscreen/touchit213.ko] undefined!
ERROR: "input_event" [drivers/input/touchscreen/touchit213.ko] undefined!
ERROR: "input_register_device" [drivers/input/touchscreen/touchit213.ko] undefined!
ERROR: "input_free_device" [drivers/input/touchscreen/touchit213.ko] undefined!
ERROR: "serio_open" [drivers/input/touchscreen/touchit213.ko] undefined!
ERROR: "input_set_abs_params" [drivers/input/touchscreen/touchit213.ko] undefined!
ERROR: "snprintf" [drivers/input/touchscreen/touchit213.ko] undefined!
ERROR: "input_allocate_device" [drivers/input/touchscreen/touchit213.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/input/touchscreen/touchit213.ko] undefined!
ERROR: "kmalloc_caches" [drivers/input/touchscreen/touchit213.ko] undefined!
ERROR: "kfree" [drivers/input/touchscreen/touchit213.ko] undefined!
ERROR: "put_device" [drivers/input/touchscreen/touchit213.ko] undefined!
ERROR: "serio_close" [drivers/input/touchscreen/touchit213.ko] undefined!
ERROR: "input_unregister_device" [drivers/input/touchscreen/touchit213.ko] undefined!
ERROR: "get_device" [drivers/input/touchscreen/touchit213.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/input/touchscreen/sun4i-ts.ko] undefined!
ERROR: "__platform_driver_register" [drivers/input/touchscreen/sun4i-ts.ko] undefined!
ERROR: "input_register_device" [drivers/input/touchscreen/sun4i-ts.ko] undefined!
ERROR: "devm_thermal_zone_of_sensor_register" [drivers/input/touchscreen/sun4i-ts.ko] undefined!
ERROR: "devm_hwmon_device_register_with_groups" [drivers/input/touchscreen/sun4i-ts.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/input/touchscreen/sun4i-ts.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/input/touchscreen/sun4i-ts.ko] undefined!
ERROR: "platform_get_irq" [drivers/input/touchscreen/sun4i-ts.ko] undefined!
ERROR: "devm_platform_ioremap_resource" [drivers/input/touchscreen/sun4i-ts.ko] undefined!
ERROR: "input_set_abs_params" [drivers/input/touchscreen/sun4i-ts.ko] undefined!
ERROR: "devm_input_allocate_device" [drivers/input/touchscreen/sun4i-ts.ko] undefined!
ERROR: "of_find_property" [drivers/input/touchscreen/sun4i-ts.ko] undefined!
ERROR: "of_device_is_compatible" [drivers/input/touchscreen/sun4i-ts.ko] undefined!
ERROR: "devm_kmalloc" [drivers/input/touchscreen/sun4i-ts.ko] undefined!
ERROR: "input_event" [drivers/input/touchscreen/sun4i-ts.ko] undefined!
ERROR: "sprintf" [drivers/input/touchscreen/sun4i-ts.ko] undefined!
ERROR: "input_unregister_device" [drivers/input/touchscreen/sun4i-ts.ko] undefined!
ERROR: "i2c_del_driver" [drivers/input/touchscreen/sis_i2c.ko] undefined!
ERROR: "i2c_register_driver" [drivers/input/touchscreen/sis_i2c.ko] undefined!
ERROR: "input_register_device" [drivers/input/touchscreen/sis_i2c.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/input/touchscreen/sis_i2c.ko] undefined!
ERROR: "input_mt_init_slots" [drivers/input/touchscreen/sis_i2c.ko] undefined!
ERROR: "input_set_abs_params" [drivers/input/touchscreen/sis_i2c.ko] undefined!
ERROR: "devm_input_allocate_device" [drivers/input/touchscreen/sis_i2c.ko] undefined!
ERROR: "msleep" [drivers/input/touchscreen/sis_i2c.ko] undefined!
ERROR: "gpiod_set_value" [drivers/input/touchscreen/sis_i2c.ko] undefined!
ERROR: "usleep_range" [drivers/input/touchscreen/sis_i2c.ko] undefined!
ERROR: "devm_gpiod_get_optional" [drivers/input/touchscreen/sis_i2c.ko] undefined!
ERROR: "devm_kmalloc" [drivers/input/touchscreen/sis_i2c.ko] undefined!
ERROR: "_dev_err" [drivers/input/touchscreen/sis_i2c.ko] undefined!
ERROR: "crc_itu_t" [drivers/input/touchscreen/sis_i2c.ko] undefined!
ERROR: "gpiod_get_value_cansleep" [drivers/input/touchscreen/sis_i2c.ko] undefined!
ERROR: "input_mt_sync_frame" [drivers/input/touchscreen/sis_i2c.ko] undefined!
ERROR: "input_mt_report_slot_state" [drivers/input/touchscreen/sis_i2c.ko] undefined!
ERROR: "input_event" [drivers/input/touchscreen/sis_i2c.ko] undefined!
ERROR: "input_mt_get_slot_by_key" [drivers/input/touchscreen/sis_i2c.ko] undefined!
ERROR: "i2c_transfer_buffer_flags" [drivers/input/touchscreen/sis_i2c.ko] undefined!
ERROR: "i2c_del_driver" [drivers/input/touchscreen/melfas_mip4.ko] undefined!
ERROR: "i2c_register_driver" [drivers/input/touchscreen/melfas_mip4.ko] undefined!
ERROR: "memcmp" [drivers/input/touchscreen/melfas_mip4.ko] undefined!
ERROR: "kfree" [drivers/input/touchscreen/melfas_mip4.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/input/touchscreen/melfas_mip4.ko] undefined!
ERROR: "kmalloc_caches" [drivers/input/touchscreen/melfas_mip4.ko] undefined!
ERROR: "release_firmware" [drivers/input/touchscreen/melfas_mip4.ko] undefined!
ERROR: "request_firmware" [drivers/input/touchscreen/melfas_mip4.ko] undefined!
ERROR: "input_mt_sync_frame" [drivers/input/touchscreen/melfas_mip4.ko] undefined!
ERROR: "devm_device_add_group" [drivers/input/touchscreen/melfas_mip4.ko] undefined!
ERROR: "input_register_device" [drivers/input/touchscreen/melfas_mip4.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/input/touchscreen/melfas_mip4.ko] undefined!
ERROR: "input_mt_init_slots" [drivers/input/touchscreen/melfas_mip4.ko] undefined!
ERROR: "input_alloc_absinfo" [drivers/input/touchscreen/melfas_mip4.ko] undefined!
ERROR: "input_set_abs_params" [drivers/input/touchscreen/melfas_mip4.ko] undefined!
ERROR: "devm_gpiod_get_optional" [drivers/input/touchscreen/melfas_mip4.ko] undefined!
ERROR: "devm_input_allocate_device" [drivers/input/touchscreen/melfas_mip4.ko] undefined!
ERROR: "devm_kmalloc" [drivers/input/touchscreen/melfas_mip4.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/input/touchscreen/melfas_mip4.ko] undefined!
ERROR: "_dev_warn" [drivers/input/touchscreen/melfas_mip4.ko] undefined!
ERROR: "i2c_smbus_xfer" [drivers/input/touchscreen/melfas_mip4.ko] undefined!
ERROR: "enable_irq" [drivers/input/touchscreen/melfas_mip4.ko] undefined!
ERROR: "usleep_range" [drivers/input/touchscreen/melfas_mip4.ko] undefined!
ERROR: "_dev_err" [drivers/input/touchscreen/melfas_mip4.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/input/touchscreen/melfas_mip4.ko] undefined!
ERROR: "i2c_transfer" [drivers/input/touchscreen/melfas_mip4.ko] undefined!
ERROR: "msleep" [drivers/input/touchscreen/melfas_mip4.ko] undefined!
ERROR: "i2c_transfer_buffer_flags" [drivers/input/touchscreen/melfas_mip4.ko] undefined!
ERROR: "snprintf" [drivers/input/touchscreen/melfas_mip4.ko] undefined!
ERROR: "mutex_unlock" [drivers/input/touchscreen/melfas_mip4.ko] undefined!
ERROR: "irq_set_irq_wake" [drivers/input/touchscreen/melfas_mip4.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/input/touchscreen/melfas_mip4.ko] undefined!
ERROR: "input_mt_report_slot_state" [drivers/input/touchscreen/melfas_mip4.ko] undefined!
ERROR: "input_event" [drivers/input/touchscreen/melfas_mip4.ko] undefined!
ERROR: "gpiod_set_value_cansleep" [drivers/input/touchscreen/melfas_mip4.ko] undefined!
ERROR: "disable_irq" [drivers/input/touchscreen/melfas_mip4.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/input/touchscreen/bcm_iproc_tsc.ko] undefined!
ERROR: "__platform_driver_register" [drivers/input/touchscreen/bcm_iproc_tsc.ko] undefined!
ERROR: "clk_unprepare" [drivers/input/touchscreen/bcm_iproc_tsc.ko] undefined!
ERROR: "clk_enable" [drivers/input/touchscreen/bcm_iproc_tsc.ko] undefined!
ERROR: "clk_prepare" [drivers/input/touchscreen/bcm_iproc_tsc.ko] undefined!
ERROR: "_dev_err" [drivers/input/touchscreen/bcm_iproc_tsc.ko] undefined!
ERROR: "input_register_device" [drivers/input/touchscreen/bcm_iproc_tsc.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/input/touchscreen/bcm_iproc_tsc.ko] undefined!
ERROR: "platform_get_irq" [drivers/input/touchscreen/bcm_iproc_tsc.ko] undefined!
ERROR: "input_set_abs_params" [drivers/input/touchscreen/bcm_iproc_tsc.ko] undefined!
ERROR: "devm_input_allocate_device" [drivers/input/touchscreen/bcm_iproc_tsc.ko] undefined!
ERROR: "of_find_property" [drivers/input/touchscreen/bcm_iproc_tsc.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/input/touchscreen/bcm_iproc_tsc.ko] undefined!
ERROR: "devm_clk_get" [drivers/input/touchscreen/bcm_iproc_tsc.ko] undefined!
ERROR: "syscon_regmap_lookup_by_phandle" [drivers/input/touchscreen/bcm_iproc_tsc.ko] undefined!
ERROR: "devm_kmalloc" [drivers/input/touchscreen/bcm_iproc_tsc.ko] undefined!
ERROR: "clk_disable" [drivers/input/touchscreen/bcm_iproc_tsc.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/input/touchscreen/bcm_iproc_tsc.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/input/touchscreen/bcm_iproc_tsc.ko] undefined!
ERROR: "input_event" [drivers/input/touchscreen/bcm_iproc_tsc.ko] undefined!
ERROR: "regmap_write" [drivers/input/touchscreen/bcm_iproc_tsc.ko] undefined!
ERROR: "regmap_read" [drivers/input/touchscreen/bcm_iproc_tsc.ko] undefined!
ERROR: "serio_unregister_driver" [drivers/input/touchscreen/inexio.ko] undefined!
ERROR: "__serio_register_driver" [drivers/input/touchscreen/inexio.ko] undefined!
ERROR: "printk" [drivers/input/touchscreen/inexio.ko] undefined!
ERROR: "input_event" [drivers/input/touchscreen/inexio.ko] undefined!
ERROR: "input_register_device" [drivers/input/touchscreen/inexio.ko] undefined!
ERROR: "input_free_device" [drivers/input/touchscreen/inexio.ko] undefined!
ERROR: "serio_open" [drivers/input/touchscreen/inexio.ko] undefined!
ERROR: "input_set_abs_params" [drivers/input/touchscreen/inexio.ko] undefined!
ERROR: "snprintf" [drivers/input/touchscreen/inexio.ko] undefined!
ERROR: "input_allocate_device" [drivers/input/touchscreen/inexio.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/input/touchscreen/inexio.ko] undefined!
ERROR: "kmalloc_caches" [drivers/input/touchscreen/inexio.ko] undefined!
ERROR: "kfree" [drivers/input/touchscreen/inexio.ko] undefined!
ERROR: "put_device" [drivers/input/touchscreen/inexio.ko] undefined!
ERROR: "serio_close" [drivers/input/touchscreen/inexio.ko] undefined!
ERROR: "input_unregister_device" [drivers/input/touchscreen/inexio.ko] undefined!
ERROR: "get_device" [drivers/input/touchscreen/inexio.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/input/touchscreen/imx6ul_tsc.ko] undefined!
ERROR: "__platform_driver_register" [drivers/input/touchscreen/imx6ul_tsc.ko] undefined!
ERROR: "clk_enable" [drivers/input/touchscreen/imx6ul_tsc.ko] undefined!
ERROR: "clk_prepare" [drivers/input/touchscreen/imx6ul_tsc.ko] undefined!
ERROR: "input_register_device" [drivers/input/touchscreen/imx6ul_tsc.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/input/touchscreen/imx6ul_tsc.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/input/touchscreen/imx6ul_tsc.ko] undefined!
ERROR: "platform_get_irq" [drivers/input/touchscreen/imx6ul_tsc.ko] undefined!
ERROR: "devm_clk_get" [drivers/input/touchscreen/imx6ul_tsc.ko] undefined!
ERROR: "devm_platform_ioremap_resource" [drivers/input/touchscreen/imx6ul_tsc.ko] undefined!
ERROR: "devm_gpiod_get" [drivers/input/touchscreen/imx6ul_tsc.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/input/touchscreen/imx6ul_tsc.ko] undefined!
ERROR: "input_set_abs_params" [drivers/input/touchscreen/imx6ul_tsc.ko] undefined!
ERROR: "input_set_capability" [drivers/input/touchscreen/imx6ul_tsc.ko] undefined!
ERROR: "devm_input_allocate_device" [drivers/input/touchscreen/imx6ul_tsc.ko] undefined!
ERROR: "devm_kmalloc" [drivers/input/touchscreen/imx6ul_tsc.ko] undefined!
ERROR: "gpiod_get_value_cansleep" [drivers/input/touchscreen/imx6ul_tsc.ko] undefined!
ERROR: "input_event" [drivers/input/touchscreen/imx6ul_tsc.ko] undefined!
ERROR: "usleep_range" [drivers/input/touchscreen/imx6ul_tsc.ko] undefined!
ERROR: "jiffies" [drivers/input/touchscreen/imx6ul_tsc.ko] undefined!
ERROR: "complete" [drivers/input/touchscreen/imx6ul_tsc.ko] undefined!
ERROR: "_dev_err" [drivers/input/touchscreen/imx6ul_tsc.ko] undefined!
ERROR: "wait_for_completion_timeout" [drivers/input/touchscreen/imx6ul_tsc.ko] undefined!
ERROR: "clk_unprepare" [drivers/input/touchscreen/imx6ul_tsc.ko] undefined!
ERROR: "clk_disable" [drivers/input/touchscreen/imx6ul_tsc.ko] undefined!
ERROR: "mutex_unlock" [drivers/input/touchscreen/imx6ul_tsc.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/input/touchscreen/imx6ul_tsc.ko] undefined!
ERROR: "i2c_del_driver" [drivers/input/touchscreen/ili210x.ko] undefined!
ERROR: "i2c_register_driver" [drivers/input/touchscreen/ili210x.ko] undefined!
ERROR: "input_register_device" [drivers/input/touchscreen/ili210x.ko] undefined!
ERROR: "devm_device_add_group" [drivers/input/touchscreen/ili210x.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/input/touchscreen/ili210x.ko] undefined!
ERROR: "input_mt_init_slots" [drivers/input/touchscreen/ili210x.ko] undefined!
ERROR: "touchscreen_parse_properties" [drivers/input/touchscreen/ili210x.ko] undefined!
ERROR: "input_set_abs_params" [drivers/input/touchscreen/ili210x.ko] undefined!
ERROR: "devm_input_allocate_device" [drivers/input/touchscreen/ili210x.ko] undefined!
ERROR: "devm_kmalloc" [drivers/input/touchscreen/ili210x.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/input/touchscreen/ili210x.ko] undefined!
ERROR: "devm_add_action" [drivers/input/touchscreen/ili210x.ko] undefined!
ERROR: "devm_gpiod_get_optional" [drivers/input/touchscreen/ili210x.ko] undefined!
ERROR: "device_get_match_data" [drivers/input/touchscreen/ili210x.ko] undefined!
ERROR: "msleep" [drivers/input/touchscreen/ili210x.ko] undefined!
ERROR: "input_mt_report_pointer_emulation" [drivers/input/touchscreen/ili210x.ko] undefined!
ERROR: "touchscreen_report_pos" [drivers/input/touchscreen/ili210x.ko] undefined!
ERROR: "input_mt_report_slot_state" [drivers/input/touchscreen/ili210x.ko] undefined!
ERROR: "input_event" [drivers/input/touchscreen/ili210x.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/input/touchscreen/ili210x.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/input/touchscreen/ili210x.ko] undefined!
ERROR: "_kstrtoul" [drivers/input/touchscreen/ili210x.ko] undefined!
ERROR: "gpiod_set_value_cansleep" [drivers/input/touchscreen/ili210x.ko] undefined!
ERROR: "i2c_transfer" [drivers/input/touchscreen/ili210x.ko] undefined!
ERROR: "_dev_err" [drivers/input/touchscreen/ili210x.ko] undefined!
ERROR: "usleep_range" [drivers/input/touchscreen/ili210x.ko] undefined!
ERROR: "i2c_transfer_buffer_flags" [drivers/input/touchscreen/ili210x.ko] undefined!
ERROR: "i2c_del_driver" [drivers/input/touchscreen/hideep.ko] undefined!
ERROR: "i2c_register_driver" [drivers/input/touchscreen/hideep.ko] undefined!
ERROR: "devm_device_add_group" [drivers/input/touchscreen/hideep.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/input/touchscreen/hideep.ko] undefined!
ERROR: "input_register_device" [drivers/input/touchscreen/hideep.ko] undefined!
ERROR: "device_property_read_u32_array" [drivers/input/touchscreen/hideep.ko] undefined!
ERROR: "input_mt_init_slots" [drivers/input/touchscreen/hideep.ko] undefined!
ERROR: "touchscreen_parse_properties" [drivers/input/touchscreen/hideep.ko] undefined!
ERROR: "input_set_abs_params" [drivers/input/touchscreen/hideep.ko] undefined!
ERROR: "input_set_capability" [drivers/input/touchscreen/hideep.ko] undefined!
ERROR: "devm_input_allocate_device" [drivers/input/touchscreen/hideep.ko] undefined!
ERROR: "devm_add_action" [drivers/input/touchscreen/hideep.ko] undefined!
ERROR: "devm_gpiod_get_optional" [drivers/input/touchscreen/hideep.ko] undefined!
ERROR: "devm_regulator_get" [drivers/input/touchscreen/hideep.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/input/touchscreen/hideep.ko] undefined!
ERROR: "__mutex_init" [drivers/input/touchscreen/hideep.ko] undefined!
ERROR: "devm_kmalloc" [drivers/input/touchscreen/hideep.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/input/touchscreen/hideep.ko] undefined!
ERROR: "input_mt_sync_frame" [drivers/input/touchscreen/hideep.ko] undefined!
ERROR: "input_mt_report_slot_state" [drivers/input/touchscreen/hideep.ko] undefined!
ERROR: "input_event" [drivers/input/touchscreen/hideep.ko] undefined!
ERROR: "regmap_bulk_read" [drivers/input/touchscreen/hideep.ko] undefined!
ERROR: "scnprintf" [drivers/input/touchscreen/hideep.ko] undefined!
ERROR: "_dev_warn" [drivers/input/touchscreen/hideep.ko] undefined!
ERROR: "kfree" [drivers/input/touchscreen/hideep.ko] undefined!
ERROR: "release_firmware" [drivers/input/touchscreen/hideep.ko] undefined!
ERROR: "mutex_unlock" [drivers/input/touchscreen/hideep.ko] undefined!
ERROR: "memcmp" [drivers/input/touchscreen/hideep.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/input/touchscreen/hideep.ko] undefined!
ERROR: "request_firmware" [drivers/input/touchscreen/hideep.ko] undefined!
ERROR: "kasprintf" [drivers/input/touchscreen/hideep.ko] undefined!
ERROR: "kstrtoint" [drivers/input/touchscreen/hideep.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/input/touchscreen/hideep.ko] undefined!
ERROR: "regmap_bulk_write" [drivers/input/touchscreen/hideep.ko] undefined!
ERROR: "i2c_transfer" [drivers/input/touchscreen/hideep.ko] undefined!
ERROR: "disable_irq" [drivers/input/touchscreen/hideep.ko] undefined!
ERROR: "regulator_disable" [drivers/input/touchscreen/hideep.ko] undefined!
ERROR: "gpiod_set_value" [drivers/input/touchscreen/hideep.ko] undefined!
ERROR: "enable_irq" [drivers/input/touchscreen/hideep.ko] undefined!
ERROR: "_dev_err" [drivers/input/touchscreen/hideep.ko] undefined!
ERROR: "regmap_write" [drivers/input/touchscreen/hideep.ko] undefined!
ERROR: "gpiod_set_value_cansleep" [drivers/input/touchscreen/hideep.ko] undefined!
ERROR: "msleep" [drivers/input/touchscreen/hideep.ko] undefined!
ERROR: "usleep_range" [drivers/input/touchscreen/hideep.ko] undefined!
ERROR: "regulator_enable" [drivers/input/touchscreen/hideep.ko] undefined!
ERROR: "serio_unregister_driver" [drivers/input/touchscreen/egalax_ts_serial.ko] undefined!
ERROR: "__serio_register_driver" [drivers/input/touchscreen/egalax_ts_serial.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/input/touchscreen/egalax_ts_serial.ko] undefined!
ERROR: "input_event" [drivers/input/touchscreen/egalax_ts_serial.ko] undefined!
ERROR: "input_register_device" [drivers/input/touchscreen/egalax_ts_serial.ko] undefined!
ERROR: "input_free_device" [drivers/input/touchscreen/egalax_ts_serial.ko] undefined!
ERROR: "serio_open" [drivers/input/touchscreen/egalax_ts_serial.ko] undefined!
ERROR: "input_set_abs_params" [drivers/input/touchscreen/egalax_ts_serial.ko] undefined!
ERROR: "input_set_capability" [drivers/input/touchscreen/egalax_ts_serial.ko] undefined!
ERROR: "snprintf" [drivers/input/touchscreen/egalax_ts_serial.ko] undefined!
ERROR: "input_allocate_device" [drivers/input/touchscreen/egalax_ts_serial.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/input/touchscreen/egalax_ts_serial.ko] undefined!
ERROR: "kmalloc_caches" [drivers/input/touchscreen/egalax_ts_serial.ko] undefined!
ERROR: "kfree" [drivers/input/touchscreen/egalax_ts_serial.ko] undefined!
ERROR: "input_unregister_device" [drivers/input/touchscreen/egalax_ts_serial.ko] undefined!
ERROR: "serio_close" [drivers/input/touchscreen/egalax_ts_serial.ko] undefined!
ERROR: "serio_unregister_driver" [drivers/input/touchscreen/elo.ko] undefined!
ERROR: "__serio_register_driver" [drivers/input/touchscreen/elo.ko] undefined!
ERROR: "_dev_info" [drivers/input/touchscreen/elo.ko] undefined!
ERROR: "mutex_unlock" [drivers/input/touchscreen/elo.ko] undefined!
ERROR: "wait_for_completion_timeout" [drivers/input/touchscreen/elo.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/input/touchscreen/elo.ko] undefined!
ERROR: "_raw_spin_unlock_irq" [drivers/input/touchscreen/elo.ko] undefined!
ERROR: "_ctype" [drivers/input/touchscreen/elo.ko] undefined!
ERROR: "_raw_spin_lock_irq" [drivers/input/touchscreen/elo.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/input/touchscreen/elo.ko] undefined!
ERROR: "input_free_device" [drivers/input/touchscreen/elo.ko] undefined!
ERROR: "input_register_device" [drivers/input/touchscreen/elo.ko] undefined!
ERROR: "input_set_abs_params" [drivers/input/touchscreen/elo.ko] undefined!
ERROR: "serio_open" [drivers/input/touchscreen/elo.ko] undefined!
ERROR: "snprintf" [drivers/input/touchscreen/elo.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/input/touchscreen/elo.ko] undefined!
ERROR: "__mutex_init" [drivers/input/touchscreen/elo.ko] undefined!
ERROR: "input_allocate_device" [drivers/input/touchscreen/elo.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/input/touchscreen/elo.ko] undefined!
ERROR: "kmalloc_caches" [drivers/input/touchscreen/elo.ko] undefined!
ERROR: "complete" [drivers/input/touchscreen/elo.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/input/touchscreen/elo.ko] undefined!
ERROR: "input_event" [drivers/input/touchscreen/elo.ko] undefined!
ERROR: "kfree" [drivers/input/touchscreen/elo.ko] undefined!
ERROR: "put_device" [drivers/input/touchscreen/elo.ko] undefined!
ERROR: "serio_close" [drivers/input/touchscreen/elo.ko] undefined!
ERROR: "input_unregister_device" [drivers/input/touchscreen/elo.ko] undefined!
ERROR: "get_device" [drivers/input/touchscreen/elo.ko] undefined!
ERROR: "simple_attr_release" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "simple_attr_write" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "simple_attr_read" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "generic_file_llseek" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "simple_open" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "i2c_del_driver" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "i2c_register_driver" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "__kmalloc" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "enable_irq" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "__const_udelay" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "disable_irq" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "snprintf" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "desc_to_gpio" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "device_init_wakeup" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "debugfs_create_file" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "debugfs_create_u16" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "debugfs_create_dir" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "dev_driver_string" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "input_register_device" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "devm_device_add_group" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "irq_get_irq_data" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "input_mt_init_slots" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "touchscreen_parse_properties" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "input_set_abs_params" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "device_property_read_u32_array" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "strlcpy" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "strchr" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "strncasecmp" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "__mutex_init" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "devm_input_allocate_device" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "msleep" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "gpiod_set_value_cansleep" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "devm_gpiod_get_optional" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "devm_add_action" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "regulator_enable" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "devm_regulator_get" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "device_get_match_data" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "devm_kmalloc" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "simple_attr_open" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "_copy_to_user" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "usleep_range" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "regulator_disable" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "touchscreen_report_pos" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "___ratelimit" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "input_mt_report_pointer_emulation" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "input_mt_report_slot_state" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "input_event" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "_dev_warn" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "scnprintf" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "_dev_err" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "kstrtouint" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "mutex_unlock" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "i2c_transfer" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "kfree" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "debugfs_remove_recursive" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "irq_set_irq_wake" [drivers/input/touchscreen/edt-ft5x06.ko] undefined!
ERROR: "__pm_runtime_suspend" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "input_unregister_device" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "free_irq" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "input_free_device" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "input_register_device" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "input_mt_init_slots" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "input_set_abs_params" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "scnprintf" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "input_allocate_device" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "init_timer_key" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "request_threaded_irq" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "gpiod_to_irq" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "gpio_to_desc" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "lockdep_init_map" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "__mutex_init" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "__kmalloc" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "kmalloc_caches" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "_dev_info" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "krealloc" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "__pm_runtime_idle" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "__udelay" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "input_mt_report_slot_state" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "input_event" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "kfree" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "enable_irq" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "msleep" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "disable_irq" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "cancel_work_sync" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "del_timer" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "__wake_up" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "mod_timer" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "jiffies" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "queue_work_on" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "system_wq" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "finish_wait" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "schedule_timeout" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "init_wait_entry" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "__might_sleep" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "mutex_unlock" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "__msecs_to_jiffies" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "_dev_err" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/input/touchscreen/cyttsp4_core.ko] undefined!
ERROR: "i2c_del_driver" [drivers/input/touchscreen/cy8ctmg110_ts.ko] undefined!
ERROR: "i2c_register_driver" [drivers/input/touchscreen/cy8ctmg110_ts.ko] undefined!
ERROR: "input_free_device" [drivers/input/touchscreen/cy8ctmg110_ts.ko] undefined!
ERROR: "device_init_wakeup" [drivers/input/touchscreen/cy8ctmg110_ts.ko] undefined!
ERROR: "input_register_device" [drivers/input/touchscreen/cy8ctmg110_ts.ko] undefined!
ERROR: "request_threaded_irq" [drivers/input/touchscreen/cy8ctmg110_ts.ko] undefined!
ERROR: "gpiod_to_irq" [drivers/input/touchscreen/cy8ctmg110_ts.ko] undefined!
ERROR: "gpiod_direction_input" [drivers/input/touchscreen/cy8ctmg110_ts.ko] undefined!
ERROR: "gpio_request" [drivers/input/touchscreen/cy8ctmg110_ts.ko] undefined!
ERROR: "input_set_abs_params" [drivers/input/touchscreen/cy8ctmg110_ts.ko] undefined!
ERROR: "snprintf" [drivers/input/touchscreen/cy8ctmg110_ts.ko] undefined!
ERROR: "input_allocate_device" [drivers/input/touchscreen/cy8ctmg110_ts.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/input/touchscreen/cy8ctmg110_ts.ko] undefined!
ERROR: "kmalloc_caches" [drivers/input/touchscreen/cy8ctmg110_ts.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/input/touchscreen/cy8ctmg110_ts.ko] undefined!
ERROR: "kfree" [drivers/input/touchscreen/cy8ctmg110_ts.ko] undefined!
ERROR: "gpio_free" [drivers/input/touchscreen/cy8ctmg110_ts.ko] undefined!
ERROR: "input_unregister_device" [drivers/input/touchscreen/cy8ctmg110_ts.ko] undefined!
ERROR: "free_irq" [drivers/input/touchscreen/cy8ctmg110_ts.ko] undefined!
ERROR: "irq_set_irq_wake" [drivers/input/touchscreen/cy8ctmg110_ts.ko] undefined!
ERROR: "_dev_err" [drivers/input/touchscreen/cy8ctmg110_ts.ko] undefined!
ERROR: "i2c_transfer_buffer_flags" [drivers/input/touchscreen/cy8ctmg110_ts.ko] undefined!
ERROR: "input_event" [drivers/input/touchscreen/cy8ctmg110_ts.ko] undefined!
ERROR: "i2c_transfer" [drivers/input/touchscreen/cy8ctmg110_ts.ko] undefined!
ERROR: "gpiod_direction_output_raw" [drivers/input/touchscreen/cy8ctmg110_ts.ko] undefined!
ERROR: "gpio_to_desc" [drivers/input/touchscreen/cy8ctmg110_ts.ko] undefined!
ERROR: "i2c_del_driver" [drivers/input/touchscreen/bu21013_ts.ko] undefined!
ERROR: "i2c_register_driver" [drivers/input/touchscreen/bu21013_ts.ko] undefined!
ERROR: "usleep_range" [drivers/input/touchscreen/bu21013_ts.ko] undefined!
ERROR: "touchscreen_set_mt_pos" [drivers/input/touchscreen/bu21013_ts.ko] undefined!
ERROR: "gpiod_get_value" [drivers/input/touchscreen/bu21013_ts.ko] undefined!
ERROR: "input_mt_sync_frame" [drivers/input/touchscreen/bu21013_ts.ko] undefined!
ERROR: "input_mt_report_slot_state" [drivers/input/touchscreen/bu21013_ts.ko] undefined!
ERROR: "input_event" [drivers/input/touchscreen/bu21013_ts.ko] undefined!
ERROR: "input_mt_assign_slots" [drivers/input/touchscreen/bu21013_ts.ko] undefined!
ERROR: "__sw_hweight32" [drivers/input/touchscreen/bu21013_ts.ko] undefined!
ERROR: "i2c_smbus_read_i2c_block_data" [drivers/input/touchscreen/bu21013_ts.ko] undefined!
ERROR: "input_register_device" [drivers/input/touchscreen/bu21013_ts.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/input/touchscreen/bu21013_ts.ko] undefined!
ERROR: "devm_gpiod_get_optional" [drivers/input/touchscreen/bu21013_ts.ko] undefined!
ERROR: "gpiod_set_consumer_name" [drivers/input/touchscreen/bu21013_ts.ko] undefined!
ERROR: "devm_gpiod_get" [drivers/input/touchscreen/bu21013_ts.ko] undefined!
ERROR: "devm_add_action" [drivers/input/touchscreen/bu21013_ts.ko] undefined!
ERROR: "devm_regulator_get" [drivers/input/touchscreen/bu21013_ts.ko] undefined!
ERROR: "input_mt_init_slots" [drivers/input/touchscreen/bu21013_ts.ko] undefined!
ERROR: "touchscreen_parse_properties" [drivers/input/touchscreen/bu21013_ts.ko] undefined!
ERROR: "input_set_abs_params" [drivers/input/touchscreen/bu21013_ts.ko] undefined!
ERROR: "device_property_read_u32_array" [drivers/input/touchscreen/bu21013_ts.ko] undefined!
ERROR: "devm_input_allocate_device" [drivers/input/touchscreen/bu21013_ts.ko] undefined!
ERROR: "device_property_present" [drivers/input/touchscreen/bu21013_ts.ko] undefined!
ERROR: "devm_kmalloc" [drivers/input/touchscreen/bu21013_ts.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/input/touchscreen/bu21013_ts.ko] undefined!
ERROR: "regulator_enable" [drivers/input/touchscreen/bu21013_ts.ko] undefined!
ERROR: "enable_irq" [drivers/input/touchscreen/bu21013_ts.ko] undefined!
ERROR: "_dev_err" [drivers/input/touchscreen/bu21013_ts.ko] undefined!
ERROR: "msleep" [drivers/input/touchscreen/bu21013_ts.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/input/touchscreen/bu21013_ts.ko] undefined!
ERROR: "gpiod_set_value" [drivers/input/touchscreen/bu21013_ts.ko] undefined!
ERROR: "regulator_disable" [drivers/input/touchscreen/bu21013_ts.ko] undefined!
ERROR: "disable_irq" [drivers/input/touchscreen/bu21013_ts.ko] undefined!
ERROR: "i2c_del_driver" [drivers/input/touchscreen/auo-pixcir-ts.ko] undefined!
ERROR: "i2c_register_driver" [drivers/input/touchscreen/auo-pixcir-ts.ko] undefined!
ERROR: "input_register_device" [drivers/input/touchscreen/auo-pixcir-ts.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/input/touchscreen/auo-pixcir-ts.ko] undefined!
ERROR: "_dev_info" [drivers/input/touchscreen/auo-pixcir-ts.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/input/touchscreen/auo-pixcir-ts.ko] undefined!
ERROR: "of_get_named_gpio_flags" [drivers/input/touchscreen/auo-pixcir-ts.ko] undefined!
ERROR: "msleep" [drivers/input/touchscreen/auo-pixcir-ts.ko] undefined!
ERROR: "devm_add_action" [drivers/input/touchscreen/auo-pixcir-ts.ko] undefined!
ERROR: "devm_gpio_request_one" [drivers/input/touchscreen/auo-pixcir-ts.ko] undefined!
ERROR: "input_set_abs_params" [drivers/input/touchscreen/auo-pixcir-ts.ko] undefined!
ERROR: "snprintf" [drivers/input/touchscreen/auo-pixcir-ts.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/input/touchscreen/auo-pixcir-ts.ko] undefined!
ERROR: "devm_input_allocate_device" [drivers/input/touchscreen/auo-pixcir-ts.ko] undefined!
ERROR: "devm_kmalloc" [drivers/input/touchscreen/auo-pixcir-ts.ko] undefined!
ERROR: "gpiod_set_raw_value" [drivers/input/touchscreen/auo-pixcir-ts.ko] undefined!
ERROR: "_dev_warn" [drivers/input/touchscreen/auo-pixcir-ts.ko] undefined!
ERROR: "schedule_timeout" [drivers/input/touchscreen/auo-pixcir-ts.ko] undefined!
ERROR: "finish_wait" [drivers/input/touchscreen/auo-pixcir-ts.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/input/touchscreen/auo-pixcir-ts.ko] undefined!
ERROR: "init_wait_entry" [drivers/input/touchscreen/auo-pixcir-ts.ko] undefined!
ERROR: "__might_sleep" [drivers/input/touchscreen/auo-pixcir-ts.ko] undefined!
ERROR: "input_event" [drivers/input/touchscreen/auo-pixcir-ts.ko] undefined!
ERROR: "i2c_smbus_read_i2c_block_data" [drivers/input/touchscreen/auo-pixcir-ts.ko] undefined!
ERROR: "gpiod_get_raw_value" [drivers/input/touchscreen/auo-pixcir-ts.ko] undefined!
ERROR: "gpio_to_desc" [drivers/input/touchscreen/auo-pixcir-ts.ko] undefined!
ERROR: "mutex_unlock" [drivers/input/touchscreen/auo-pixcir-ts.ko] undefined!
ERROR: "irq_set_irq_wake" [drivers/input/touchscreen/auo-pixcir-ts.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/input/touchscreen/auo-pixcir-ts.ko] undefined!
ERROR: "enable_irq" [drivers/input/touchscreen/auo-pixcir-ts.ko] undefined!
ERROR: "__wake_up" [drivers/input/touchscreen/auo-pixcir-ts.ko] undefined!
ERROR: "disable_irq" [drivers/input/touchscreen/auo-pixcir-ts.ko] undefined!
ERROR: "_dev_err" [drivers/input/touchscreen/auo-pixcir-ts.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/input/touchscreen/auo-pixcir-ts.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/input/touchscreen/auo-pixcir-ts.ko] undefined!
ERROR: "i2c_del_driver" [drivers/input/touchscreen/ar1021_i2c.ko] undefined!
ERROR: "i2c_register_driver" [drivers/input/touchscreen/ar1021_i2c.ko] undefined!
ERROR: "_dev_err" [drivers/input/touchscreen/ar1021_i2c.ko] undefined!
ERROR: "input_register_device" [drivers/input/touchscreen/ar1021_i2c.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/input/touchscreen/ar1021_i2c.ko] undefined!
ERROR: "input_set_abs_params" [drivers/input/touchscreen/ar1021_i2c.ko] undefined!
ERROR: "input_set_capability" [drivers/input/touchscreen/ar1021_i2c.ko] undefined!
ERROR: "devm_input_allocate_device" [drivers/input/touchscreen/ar1021_i2c.ko] undefined!
ERROR: "devm_kmalloc" [drivers/input/touchscreen/ar1021_i2c.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/input/touchscreen/ar1021_i2c.ko] undefined!
ERROR: "input_event" [drivers/input/touchscreen/ar1021_i2c.ko] undefined!
ERROR: "i2c_transfer_buffer_flags" [drivers/input/touchscreen/ar1021_i2c.ko] undefined!
ERROR: "disable_irq" [drivers/input/touchscreen/ar1021_i2c.ko] undefined!
ERROR: "enable_irq" [drivers/input/touchscreen/ar1021_i2c.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/input/touchscreen/resistive-adc-touch.ko] undefined!
ERROR: "__platform_driver_register" [drivers/input/touchscreen/resistive-adc-touch.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/input/touchscreen/resistive-adc-touch.ko] undefined!
ERROR: "device_property_read_u32_array" [drivers/input/touchscreen/resistive-adc-touch.ko] undefined!
ERROR: "devm_add_action" [drivers/input/touchscreen/resistive-adc-touch.ko] undefined!
ERROR: "iio_channel_get_all_cb" [drivers/input/touchscreen/resistive-adc-touch.ko] undefined!
ERROR: "input_register_device" [drivers/input/touchscreen/resistive-adc-touch.ko] undefined!
ERROR: "touchscreen_parse_properties" [drivers/input/touchscreen/resistive-adc-touch.ko] undefined!
ERROR: "input_set_capability" [drivers/input/touchscreen/resistive-adc-touch.ko] undefined!
ERROR: "input_set_abs_params" [drivers/input/touchscreen/resistive-adc-touch.ko] undefined!
ERROR: "devm_input_allocate_device" [drivers/input/touchscreen/resistive-adc-touch.ko] undefined!
ERROR: "strcmp" [drivers/input/touchscreen/resistive-adc-touch.ko] undefined!
ERROR: "devm_iio_channel_get_all" [drivers/input/touchscreen/resistive-adc-touch.ko] undefined!
ERROR: "devm_kmalloc" [drivers/input/touchscreen/resistive-adc-touch.ko] undefined!
ERROR: "_dev_err" [drivers/input/touchscreen/resistive-adc-touch.ko] undefined!
ERROR: "iio_channel_start_all_cb" [drivers/input/touchscreen/resistive-adc-touch.ko] undefined!
ERROR: "iio_channel_stop_all_cb" [drivers/input/touchscreen/resistive-adc-touch.ko] undefined!
ERROR: "input_event" [drivers/input/touchscreen/resistive-adc-touch.ko] undefined!
ERROR: "touchscreen_report_pos" [drivers/input/touchscreen/resistive-adc-touch.ko] undefined!
ERROR: "iio_channel_release_all_cb" [drivers/input/touchscreen/resistive-adc-touch.ko] undefined!
ERROR: "usb_deregister" [drivers/input/tablet/pegasus_notetaker.ko] undefined!
ERROR: "usb_register_driver" [drivers/input/tablet/pegasus_notetaker.ko] undefined!
ERROR: "input_free_device" [drivers/input/tablet/pegasus_notetaker.ko] undefined!
ERROR: "input_register_device" [drivers/input/tablet/pegasus_notetaker.ko] undefined!
ERROR: "input_set_abs_params" [drivers/input/tablet/pegasus_notetaker.ko] undefined!
ERROR: "lockdep_init_map" [drivers/input/tablet/pegasus_notetaker.ko] undefined!
ERROR: "snprintf" [drivers/input/tablet/pegasus_notetaker.ko] undefined!
ERROR: "strlen" [drivers/input/tablet/pegasus_notetaker.ko] undefined!
ERROR: "strlcat" [drivers/input/tablet/pegasus_notetaker.ko] undefined!
ERROR: "strlcpy" [drivers/input/tablet/pegasus_notetaker.ko] undefined!
ERROR: "usb_alloc_urb" [drivers/input/tablet/pegasus_notetaker.ko] undefined!
ERROR: "usb_alloc_coherent" [drivers/input/tablet/pegasus_notetaker.ko] undefined!
ERROR: "__mutex_init" [drivers/input/tablet/pegasus_notetaker.ko] undefined!
ERROR: "input_allocate_device" [drivers/input/tablet/pegasus_notetaker.ko] undefined!
ERROR: "usb_autopm_get_interface" [drivers/input/tablet/pegasus_notetaker.ko] undefined!
ERROR: "usb_control_msg" [drivers/input/tablet/pegasus_notetaker.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/input/tablet/pegasus_notetaker.ko] undefined!
ERROR: "kmalloc_caches" [drivers/input/tablet/pegasus_notetaker.ko] undefined!
ERROR: "_dev_warn" [drivers/input/tablet/pegasus_notetaker.ko] undefined!
ERROR: "input_event" [drivers/input/tablet/pegasus_notetaker.ko] undefined!
ERROR: "ktime_get_mono_fast_ns" [drivers/input/tablet/pegasus_notetaker.ko] undefined!
ERROR: "_dev_err" [drivers/input/tablet/pegasus_notetaker.ko] undefined!
ERROR: "queue_work_on" [drivers/input/tablet/pegasus_notetaker.ko] undefined!
ERROR: "system_wq" [drivers/input/tablet/pegasus_notetaker.ko] undefined!
ERROR: "usb_autopm_put_interface" [drivers/input/tablet/pegasus_notetaker.ko] undefined!
ERROR: "kfree" [drivers/input/tablet/pegasus_notetaker.ko] undefined!
ERROR: "usb_free_coherent" [drivers/input/tablet/pegasus_notetaker.ko] undefined!
ERROR: "usb_free_urb" [drivers/input/tablet/pegasus_notetaker.ko] undefined!
ERROR: "input_unregister_device" [drivers/input/tablet/pegasus_notetaker.ko] undefined!
ERROR: "cancel_work_sync" [drivers/input/tablet/pegasus_notetaker.ko] undefined!
ERROR: "usb_kill_urb" [drivers/input/tablet/pegasus_notetaker.ko] undefined!
ERROR: "usb_submit_urb" [drivers/input/tablet/pegasus_notetaker.ko] undefined!
ERROR: "mutex_unlock" [drivers/input/tablet/pegasus_notetaker.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/input/tablet/pegasus_notetaker.ko] undefined!
ERROR: "usb_deregister" [drivers/input/tablet/hanwang.ko] undefined!
ERROR: "usb_register_driver" [drivers/input/tablet/hanwang.ko] undefined!
ERROR: "input_register_device" [drivers/input/tablet/hanwang.ko] undefined!
ERROR: "input_set_abs_params" [drivers/input/tablet/hanwang.ko] undefined!
ERROR: "strlcpy" [drivers/input/tablet/hanwang.ko] undefined!
ERROR: "strlcat" [drivers/input/tablet/hanwang.ko] undefined!
ERROR: "snprintf" [drivers/input/tablet/hanwang.ko] undefined!
ERROR: "usb_alloc_urb" [drivers/input/tablet/hanwang.ko] undefined!
ERROR: "usb_alloc_coherent" [drivers/input/tablet/hanwang.ko] undefined!
ERROR: "input_free_device" [drivers/input/tablet/hanwang.ko] undefined!
ERROR: "input_allocate_device" [drivers/input/tablet/hanwang.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/input/tablet/hanwang.ko] undefined!
ERROR: "kmalloc_caches" [drivers/input/tablet/hanwang.ko] undefined!
ERROR: "usb_kill_urb" [drivers/input/tablet/hanwang.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/input/tablet/hanwang.ko] undefined!
ERROR: "_dev_err" [drivers/input/tablet/hanwang.ko] undefined!
ERROR: "input_event" [drivers/input/tablet/hanwang.ko] undefined!
ERROR: "usb_submit_urb" [drivers/input/tablet/hanwang.ko] undefined!
ERROR: "kfree" [drivers/input/tablet/hanwang.ko] undefined!
ERROR: "usb_free_coherent" [drivers/input/tablet/hanwang.ko] undefined!
ERROR: "usb_free_urb" [drivers/input/tablet/hanwang.ko] undefined!
ERROR: "input_unregister_device" [drivers/input/tablet/hanwang.ko] undefined!
ERROR: "usb_deregister" [drivers/input/tablet/gtco.ko] undefined!
ERROR: "usb_register_driver" [drivers/input/tablet/gtco.ko] undefined!
ERROR: "input_free_device" [drivers/input/tablet/gtco.ko] undefined!
ERROR: "input_register_device" [drivers/input/tablet/gtco.ko] undefined!
ERROR: "input_set_abs_params" [drivers/input/tablet/gtco.ko] undefined!
ERROR: "strlcat" [drivers/input/tablet/gtco.ko] undefined!
ERROR: "snprintf" [drivers/input/tablet/gtco.ko] undefined!
ERROR: "usb_control_msg" [drivers/input/tablet/gtco.ko] undefined!
ERROR: "__kmalloc" [drivers/input/tablet/gtco.ko] undefined!
ERROR: "__usb_get_extra_descriptor" [drivers/input/tablet/gtco.ko] undefined!
ERROR: "usb_alloc_urb" [drivers/input/tablet/gtco.ko] undefined!
ERROR: "usb_alloc_coherent" [drivers/input/tablet/gtco.ko] undefined!
ERROR: "input_allocate_device" [drivers/input/tablet/gtco.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/input/tablet/gtco.ko] undefined!
ERROR: "kmalloc_caches" [drivers/input/tablet/gtco.ko] undefined!
ERROR: "strcpy" [drivers/input/tablet/gtco.ko] undefined!
ERROR: "_dev_err" [drivers/input/tablet/gtco.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/input/tablet/gtco.ko] undefined!
ERROR: "usb_submit_urb" [drivers/input/tablet/gtco.ko] undefined!
ERROR: "input_event" [drivers/input/tablet/gtco.ko] undefined!
ERROR: "_dev_info" [drivers/input/tablet/gtco.ko] undefined!
ERROR: "kfree" [drivers/input/tablet/gtco.ko] undefined!
ERROR: "usb_free_coherent" [drivers/input/tablet/gtco.ko] undefined!
ERROR: "usb_free_urb" [drivers/input/tablet/gtco.ko] undefined!
ERROR: "input_unregister_device" [drivers/input/tablet/gtco.ko] undefined!
ERROR: "usb_kill_urb" [drivers/input/tablet/gtco.ko] undefined!
ERROR: "usb_deregister" [drivers/input/tablet/acecad.ko] undefined!
ERROR: "usb_register_driver" [drivers/input/tablet/acecad.ko] undefined!
ERROR: "input_free_device" [drivers/input/tablet/acecad.ko] undefined!
ERROR: "input_register_device" [drivers/input/tablet/acecad.ko] undefined!
ERROR: "strlen" [drivers/input/tablet/acecad.ko] undefined!
ERROR: "input_set_abs_params" [drivers/input/tablet/acecad.ko] undefined!
ERROR: "snprintf" [drivers/input/tablet/acecad.ko] undefined!
ERROR: "strlcat" [drivers/input/tablet/acecad.ko] undefined!
ERROR: "strlcpy" [drivers/input/tablet/acecad.ko] undefined!
ERROR: "usb_alloc_urb" [drivers/input/tablet/acecad.ko] undefined!
ERROR: "usb_alloc_coherent" [drivers/input/tablet/acecad.ko] undefined!
ERROR: "input_allocate_device" [drivers/input/tablet/acecad.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/input/tablet/acecad.ko] undefined!
ERROR: "kmalloc_caches" [drivers/input/tablet/acecad.ko] undefined!
ERROR: "usb_kill_urb" [drivers/input/tablet/acecad.ko] undefined!
ERROR: "_dev_err" [drivers/input/tablet/acecad.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/input/tablet/acecad.ko] undefined!
ERROR: "input_event" [drivers/input/tablet/acecad.ko] undefined!
ERROR: "usb_submit_urb" [drivers/input/tablet/acecad.ko] undefined!
ERROR: "kfree" [drivers/input/tablet/acecad.ko] undefined!
ERROR: "usb_free_coherent" [drivers/input/tablet/acecad.ko] undefined!
ERROR: "usb_free_urb" [drivers/input/tablet/acecad.ko] undefined!
ERROR: "input_unregister_device" [drivers/input/tablet/acecad.ko] undefined!
ERROR: "no_llseek" [drivers/input/serio/userio.ko] undefined!
ERROR: "misc_deregister" [drivers/input/serio/userio.ko] undefined!
ERROR: "misc_register" [drivers/input/serio/userio.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/input/serio/userio.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/input/serio/userio.ko] undefined!
ERROR: "__mutex_init" [drivers/input/serio/userio.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/input/serio/userio.ko] undefined!
ERROR: "kmalloc_caches" [drivers/input/serio/userio.ko] undefined!
ERROR: "__warn_printk" [drivers/input/serio/userio.ko] undefined!
ERROR: "finish_wait" [drivers/input/serio/userio.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/input/serio/userio.ko] undefined!
ERROR: "schedule" [drivers/input/serio/userio.ko] undefined!
ERROR: "init_wait_entry" [drivers/input/serio/userio.ko] undefined!
ERROR: "_copy_to_user" [drivers/input/serio/userio.ko] undefined!
ERROR: "__might_sleep" [drivers/input/serio/userio.ko] undefined!
ERROR: "__serio_register_port" [drivers/input/serio/userio.ko] undefined!
ERROR: "mutex_unlock" [drivers/input/serio/userio.ko] undefined!
ERROR: "serio_interrupt" [drivers/input/serio/userio.ko] undefined!
ERROR: "mutex_lock_interruptible_nested" [drivers/input/serio/userio.ko] undefined!
ERROR: "_copy_from_user" [drivers/input/serio/userio.ko] undefined!
ERROR: "_dev_warn" [drivers/input/serio/userio.ko] undefined!
ERROR: "__wake_up" [drivers/input/serio/userio.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/input/serio/userio.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/input/serio/userio.ko] undefined!
ERROR: "kfree" [drivers/input/serio/userio.ko] undefined!
ERROR: "serio_unregister_port" [drivers/input/serio/userio.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/input/serio/userio.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/input/serio/ps2-gpio.ko] undefined!
ERROR: "__platform_driver_register" [drivers/input/serio/ps2-gpio.ko] undefined!
ERROR: "_dev_warn" [drivers/input/serio/ps2-gpio.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/input/serio/ps2-gpio.ko] undefined!
ERROR: "serio_interrupt" [drivers/input/serio/ps2-gpio.ko] undefined!
ERROR: "__sw_hweight32" [drivers/input/serio/ps2-gpio.ko] undefined!
ERROR: "complete" [drivers/input/serio/ps2-gpio.ko] undefined!
ERROR: "gpiod_set_value" [drivers/input/serio/ps2-gpio.ko] undefined!
ERROR: "gpiod_get_value" [drivers/input/serio/ps2-gpio.ko] undefined!
ERROR: "jiffies" [drivers/input/serio/ps2-gpio.ko] undefined!
ERROR: "_dev_err" [drivers/input/serio/ps2-gpio.ko] undefined!
ERROR: "kfree" [drivers/input/serio/ps2-gpio.ko] undefined!
ERROR: "__serio_register_port" [drivers/input/serio/ps2-gpio.ko] undefined!
ERROR: "__mutex_init" [drivers/input/serio/ps2-gpio.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/input/serio/ps2-gpio.ko] undefined!
ERROR: "init_timer_key" [drivers/input/serio/ps2-gpio.ko] undefined!
ERROR: "delayed_work_timer_fn" [drivers/input/serio/ps2-gpio.ko] undefined!
ERROR: "lockdep_init_map" [drivers/input/serio/ps2-gpio.ko] undefined!
ERROR: "strlcpy" [drivers/input/serio/ps2-gpio.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/input/serio/ps2-gpio.ko] undefined!
ERROR: "platform_get_irq" [drivers/input/serio/ps2-gpio.ko] undefined!
ERROR: "gpiod_cansleep" [drivers/input/serio/ps2-gpio.ko] undefined!
ERROR: "device_property_present" [drivers/input/serio/ps2-gpio.ko] undefined!
ERROR: "devm_gpiod_get" [drivers/input/serio/ps2-gpio.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/input/serio/ps2-gpio.ko] undefined!
ERROR: "kmalloc_caches" [drivers/input/serio/ps2-gpio.ko] undefined!
ERROR: "devm_kmalloc" [drivers/input/serio/ps2-gpio.ko] undefined!
ERROR: "disable_irq" [drivers/input/serio/ps2-gpio.ko] undefined!
ERROR: "flush_delayed_work" [drivers/input/serio/ps2-gpio.ko] undefined!
ERROR: "mutex_unlock" [drivers/input/serio/ps2-gpio.ko] undefined!
ERROR: "wait_for_completion_timeout" [drivers/input/serio/ps2-gpio.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/input/serio/ps2-gpio.ko] undefined!
ERROR: "__preempt_count" [drivers/input/serio/ps2-gpio.ko] undefined!
ERROR: "queue_delayed_work_on" [drivers/input/serio/ps2-gpio.ko] undefined!
ERROR: "system_wq" [drivers/input/serio/ps2-gpio.ko] undefined!
ERROR: "jiffies_to_usecs" [drivers/input/serio/ps2-gpio.ko] undefined!
ERROR: "disable_irq_nosync" [drivers/input/serio/ps2-gpio.ko] undefined!
ERROR: "gpiod_direction_input" [drivers/input/serio/ps2-gpio.ko] undefined!
ERROR: "gpiod_direction_output" [drivers/input/serio/ps2-gpio.ko] undefined!
ERROR: "enable_irq" [drivers/input/serio/ps2-gpio.ko] undefined!
ERROR: "serio_unregister_port" [drivers/input/serio/ps2-gpio.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/input/serio/sun4i-ps2.ko] undefined!
ERROR: "__platform_driver_register" [drivers/input/serio/sun4i-ps2.ko] undefined!
ERROR: "_dev_err" [drivers/input/serio/sun4i-ps2.ko] undefined!
ERROR: "__serio_register_port" [drivers/input/serio/sun4i-ps2.ko] undefined!
ERROR: "request_threaded_irq" [drivers/input/serio/sun4i-ps2.ko] undefined!
ERROR: "platform_get_irq" [drivers/input/serio/sun4i-ps2.ko] undefined!
ERROR: "strlcpy" [drivers/input/serio/sun4i-ps2.ko] undefined!
ERROR: "clk_enable" [drivers/input/serio/sun4i-ps2.ko] undefined!
ERROR: "clk_prepare" [drivers/input/serio/sun4i-ps2.ko] undefined!
ERROR: "clk_get" [drivers/input/serio/sun4i-ps2.ko] undefined!
ERROR: "ioremap" [drivers/input/serio/sun4i-ps2.ko] undefined!
ERROR: "platform_get_resource" [drivers/input/serio/sun4i-ps2.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/input/serio/sun4i-ps2.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/input/serio/sun4i-ps2.ko] undefined!
ERROR: "kmalloc_caches" [drivers/input/serio/sun4i-ps2.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/input/serio/sun4i-ps2.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/input/serio/sun4i-ps2.ko] undefined!
ERROR: "clk_get_rate" [drivers/input/serio/sun4i-ps2.ko] undefined!
ERROR: "synchronize_irq" [drivers/input/serio/sun4i-ps2.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/input/serio/sun4i-ps2.ko] undefined!
ERROR: "serio_interrupt" [drivers/input/serio/sun4i-ps2.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/input/serio/sun4i-ps2.ko] undefined!
ERROR: "kfree" [drivers/input/serio/sun4i-ps2.ko] undefined!
ERROR: "iounmap" [drivers/input/serio/sun4i-ps2.ko] undefined!
ERROR: "clk_put" [drivers/input/serio/sun4i-ps2.ko] undefined!
ERROR: "clk_unprepare" [drivers/input/serio/sun4i-ps2.ko] undefined!
ERROR: "clk_disable" [drivers/input/serio/sun4i-ps2.ko] undefined!
ERROR: "free_irq" [drivers/input/serio/sun4i-ps2.ko] undefined!
ERROR: "serio_unregister_port" [drivers/input/serio/sun4i-ps2.ko] undefined!
ERROR: "jiffies" [drivers/input/serio/sun4i-ps2.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/input/serio/olpc_apsp.ko] undefined!
ERROR: "__platform_driver_register" [drivers/input/serio/olpc_apsp.ko] undefined!
ERROR: "device_init_wakeup" [drivers/input/serio/olpc_apsp.ko] undefined!
ERROR: "request_threaded_irq" [drivers/input/serio/olpc_apsp.ko] undefined!
ERROR: "__serio_register_port" [drivers/input/serio/olpc_apsp.ko] undefined!
ERROR: "strlcpy" [drivers/input/serio/olpc_apsp.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/input/serio/olpc_apsp.ko] undefined!
ERROR: "kmalloc_caches" [drivers/input/serio/olpc_apsp.ko] undefined!
ERROR: "platform_get_irq" [drivers/input/serio/olpc_apsp.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/input/serio/olpc_apsp.ko] undefined!
ERROR: "platform_get_resource" [drivers/input/serio/olpc_apsp.ko] undefined!
ERROR: "devm_kmalloc" [drivers/input/serio/olpc_apsp.ko] undefined!
ERROR: "__const_udelay" [drivers/input/serio/olpc_apsp.ko] undefined!
ERROR: "_dev_warn" [drivers/input/serio/olpc_apsp.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/input/serio/olpc_apsp.ko] undefined!
ERROR: "pm_wakeup_dev_event" [drivers/input/serio/olpc_apsp.ko] undefined!
ERROR: "serio_interrupt" [drivers/input/serio/olpc_apsp.ko] undefined!
ERROR: "_dev_err" [drivers/input/serio/olpc_apsp.ko] undefined!
ERROR: "serio_unregister_port" [drivers/input/serio/olpc_apsp.ko] undefined!
ERROR: "free_irq" [drivers/input/serio/olpc_apsp.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/input/serio/arc_ps2.ko] undefined!
ERROR: "__platform_driver_register" [drivers/input/serio/arc_ps2.ko] undefined!
ERROR: "__serio_register_port" [drivers/input/serio/arc_ps2.ko] undefined!
ERROR: "snprintf" [drivers/input/serio/arc_ps2.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/input/serio/arc_ps2.ko] undefined!
ERROR: "kmalloc_caches" [drivers/input/serio/arc_ps2.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/input/serio/arc_ps2.ko] undefined!
ERROR: "_dev_info" [drivers/input/serio/arc_ps2.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/input/serio/arc_ps2.ko] undefined!
ERROR: "platform_get_resource" [drivers/input/serio/arc_ps2.ko] undefined!
ERROR: "devm_kmalloc" [drivers/input/serio/arc_ps2.ko] undefined!
ERROR: "platform_get_irq_byname" [drivers/input/serio/arc_ps2.ko] undefined!
ERROR: "iowrite32" [drivers/input/serio/arc_ps2.ko] undefined!
ERROR: "_dev_err" [drivers/input/serio/arc_ps2.ko] undefined!
ERROR: "ioread32" [drivers/input/serio/arc_ps2.ko] undefined!
ERROR: "serio_interrupt" [drivers/input/serio/arc_ps2.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/input/serio/arc_ps2.ko] undefined!
ERROR: "serio_unregister_port" [drivers/input/serio/arc_ps2.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/input/serio/altera_ps2.ko] undefined!
ERROR: "__platform_driver_register" [drivers/input/serio/altera_ps2.ko] undefined!
ERROR: "_dev_err" [drivers/input/serio/altera_ps2.ko] undefined!
ERROR: "__serio_register_port" [drivers/input/serio/altera_ps2.ko] undefined!
ERROR: "_dev_info" [drivers/input/serio/altera_ps2.ko] undefined!
ERROR: "strlcpy" [drivers/input/serio/altera_ps2.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/input/serio/altera_ps2.ko] undefined!
ERROR: "kmalloc_caches" [drivers/input/serio/altera_ps2.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/input/serio/altera_ps2.ko] undefined!
ERROR: "platform_get_irq" [drivers/input/serio/altera_ps2.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/input/serio/altera_ps2.ko] undefined!
ERROR: "platform_get_resource" [drivers/input/serio/altera_ps2.ko] undefined!
ERROR: "devm_kmalloc" [drivers/input/serio/altera_ps2.ko] undefined!
ERROR: "serio_interrupt" [drivers/input/serio/altera_ps2.ko] undefined!
ERROR: "serio_unregister_port" [drivers/input/serio/altera_ps2.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/input/serio/pcips2.ko] undefined!
ERROR: "__pci_register_driver" [drivers/input/serio/pcips2.ko] undefined!
ERROR: "__serio_register_port" [drivers/input/serio/pcips2.ko] undefined!
ERROR: "strlcpy" [drivers/input/serio/pcips2.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/input/serio/pcips2.ko] undefined!
ERROR: "kmalloc_caches" [drivers/input/serio/pcips2.ko] undefined!
ERROR: "pci_request_regions" [drivers/input/serio/pcips2.ko] undefined!
ERROR: "pci_enable_device" [drivers/input/serio/pcips2.ko] undefined!
ERROR: "request_threaded_irq" [drivers/input/serio/pcips2.ko] undefined!
ERROR: "serio_interrupt" [drivers/input/serio/pcips2.ko] undefined!
ERROR: "__sw_hweight32" [drivers/input/serio/pcips2.ko] undefined!
ERROR: "free_irq" [drivers/input/serio/pcips2.ko] undefined!
ERROR: "pci_disable_device" [drivers/input/serio/pcips2.ko] undefined!
ERROR: "pci_release_regions" [drivers/input/serio/pcips2.ko] undefined!
ERROR: "kfree" [drivers/input/serio/pcips2.ko] undefined!
ERROR: "serio_unregister_port" [drivers/input/serio/pcips2.ko] undefined!
ERROR: "platform_device_unregister" [drivers/input/serio/ct82c710.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/input/serio/ct82c710.ko] undefined!
ERROR: "platform_device_put" [drivers/input/serio/ct82c710.ko] undefined!
ERROR: "platform_device_add" [drivers/input/serio/ct82c710.ko] undefined!
ERROR: "platform_device_add_resources" [drivers/input/serio/ct82c710.ko] undefined!
ERROR: "platform_device_alloc" [drivers/input/serio/ct82c710.ko] undefined!
ERROR: "__platform_driver_register" [drivers/input/serio/ct82c710.ko] undefined!
ERROR: "__serio_register_port" [drivers/input/serio/ct82c710.ko] undefined!
ERROR: "snprintf" [drivers/input/serio/ct82c710.ko] undefined!
ERROR: "strlcpy" [drivers/input/serio/ct82c710.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/input/serio/ct82c710.ko] undefined!
ERROR: "kmalloc_caches" [drivers/input/serio/ct82c710.ko] undefined!
ERROR: "request_threaded_irq" [drivers/input/serio/ct82c710.ko] undefined!
ERROR: "serio_interrupt" [drivers/input/serio/ct82c710.ko] undefined!
ERROR: "printk" [drivers/input/serio/ct82c710.ko] undefined!
ERROR: "free_irq" [drivers/input/serio/ct82c710.ko] undefined!
ERROR: "__const_udelay" [drivers/input/serio/ct82c710.ko] undefined!
ERROR: "__x86_indirect_thunk_eax" [drivers/input/serio/ct82c710.ko] undefined!
ERROR: "pv_ops" [drivers/input/serio/ct82c710.ko] undefined!
ERROR: "serio_unregister_port" [drivers/input/serio/ct82c710.ko] undefined!
ERROR: "tty_unregister_ldisc" [drivers/input/serio/serport.ko] undefined!
ERROR: "tty_register_ldisc" [drivers/input/serio/serport.ko] undefined!
ERROR: "finish_wait" [drivers/input/serio/serport.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/input/serio/serport.ko] undefined!
ERROR: "schedule" [drivers/input/serio/serport.ko] undefined!
ERROR: "init_wait_entry" [drivers/input/serio/serport.ko] undefined!
ERROR: "serio_unregister_port" [drivers/input/serio/serport.ko] undefined!
ERROR: "__might_sleep" [drivers/input/serio/serport.ko] undefined!
ERROR: "printk" [drivers/input/serio/serport.ko] undefined!
ERROR: "__serio_register_port" [drivers/input/serio/serport.ko] undefined!
ERROR: "snprintf" [drivers/input/serio/serport.ko] undefined!
ERROR: "tty_name" [drivers/input/serio/serport.ko] undefined!
ERROR: "strlcpy" [drivers/input/serio/serport.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/input/serio/serport.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/input/serio/serport.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/input/serio/serport.ko] undefined!
ERROR: "kmalloc_caches" [drivers/input/serio/serport.ko] undefined!
ERROR: "capable" [drivers/input/serio/serport.ko] undefined!
ERROR: "kfree" [drivers/input/serio/serport.ko] undefined!
ERROR: "__get_user_4" [drivers/input/serio/serport.ko] undefined!
ERROR: "__might_fault" [drivers/input/serio/serport.ko] undefined!
ERROR: "__wake_up" [drivers/input/serio/serport.ko] undefined!
ERROR: "serio_interrupt" [drivers/input/serio/serport.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/input/serio/serport.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/input/serio/serport.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/input/serio/serport.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/input/serio/serport.ko] undefined!
ERROR: "param_ops_int" [drivers/input/serio/parkbd.ko] undefined!
ERROR: "param_ops_uint" [drivers/input/serio/parkbd.ko] undefined!
ERROR: "parport_unregister_driver" [drivers/input/serio/parkbd.ko] undefined!
ERROR: "__parport_register_driver" [drivers/input/serio/parkbd.ko] undefined!
ERROR: "printk" [drivers/input/serio/parkbd.ko] undefined!
ERROR: "__serio_register_port" [drivers/input/serio/parkbd.ko] undefined!
ERROR: "snprintf" [drivers/input/serio/parkbd.ko] undefined!
ERROR: "strlcpy" [drivers/input/serio/parkbd.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/input/serio/parkbd.ko] undefined!
ERROR: "kmalloc_caches" [drivers/input/serio/parkbd.ko] undefined!
ERROR: "parport_claim" [drivers/input/serio/parkbd.ko] undefined!
ERROR: "parport_register_dev_model" [drivers/input/serio/parkbd.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/input/serio/parkbd.ko] undefined!
ERROR: "parport_unregister_device" [drivers/input/serio/parkbd.ko] undefined!
ERROR: "serio_unregister_port" [drivers/input/serio/parkbd.ko] undefined!
ERROR: "parport_release" [drivers/input/serio/parkbd.ko] undefined!
ERROR: "serio_interrupt" [drivers/input/serio/parkbd.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/input/serio/parkbd.ko] undefined!
ERROR: "jiffies" [drivers/input/serio/parkbd.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/input/serio/parkbd.ko] undefined!
ERROR: "i2c_del_driver" [drivers/usb/typec/mux/pi3usb30532.ko] undefined!
ERROR: "i2c_register_driver" [drivers/usb/typec/mux/pi3usb30532.ko] undefined!
ERROR: "typec_mux_unregister" [drivers/usb/typec/mux/pi3usb30532.ko] undefined!
ERROR: "typec_switch_unregister" [drivers/usb/typec/mux/pi3usb30532.ko] undefined!
ERROR: "typec_mux_register" [drivers/usb/typec/mux/pi3usb30532.ko] undefined!
ERROR: "typec_switch_register" [drivers/usb/typec/mux/pi3usb30532.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/usb/typec/mux/pi3usb30532.ko] undefined!
ERROR: "__mutex_init" [drivers/usb/typec/mux/pi3usb30532.ko] undefined!
ERROR: "devm_kmalloc" [drivers/usb/typec/mux/pi3usb30532.ko] undefined!
ERROR: "typec_switch_get_drvdata" [drivers/usb/typec/mux/pi3usb30532.ko] undefined!
ERROR: "mutex_unlock" [drivers/usb/typec/mux/pi3usb30532.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/usb/typec/mux/pi3usb30532.ko] undefined!
ERROR: "typec_mux_get_drvdata" [drivers/usb/typec/mux/pi3usb30532.ko] undefined!
ERROR: "_dev_err" [drivers/usb/typec/mux/pi3usb30532.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/usb/typec/mux/pi3usb30532.ko] undefined!
ERROR: "i2c_del_driver" [drivers/usb/typec/hd3ss3220.ko] undefined!
ERROR: "i2c_register_driver" [drivers/usb/typec/hd3ss3220.ko] undefined!
ERROR: "_dev_info" [drivers/usb/typec/hd3ss3220.ko] undefined!
ERROR: "regmap_write" [drivers/usb/typec/hd3ss3220.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/usb/typec/hd3ss3220.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/usb/typec/hd3ss3220.ko] undefined!
ERROR: "typec_register_port" [drivers/usb/typec/hd3ss3220.ko] undefined!
ERROR: "fwnode_handle_put" [drivers/usb/typec/hd3ss3220.ko] undefined!
ERROR: "fwnode_usb_role_switch_get" [drivers/usb/typec/hd3ss3220.ko] undefined!
ERROR: "device_get_named_child_node" [drivers/usb/typec/hd3ss3220.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/usb/typec/hd3ss3220.ko] undefined!
ERROR: "devm_kmalloc" [drivers/usb/typec/hd3ss3220.ko] undefined!
ERROR: "regmap_read" [drivers/usb/typec/hd3ss3220.ko] undefined!
ERROR: "typec_set_data_role" [drivers/usb/typec/hd3ss3220.ko] undefined!
ERROR: "usb_role_switch_set_role" [drivers/usb/typec/hd3ss3220.ko] undefined!
ERROR: "usleep_range" [drivers/usb/typec/hd3ss3220.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/usb/typec/hd3ss3220.ko] undefined!
ERROR: "typec_get_drvdata" [drivers/usb/typec/hd3ss3220.ko] undefined!
ERROR: "usb_role_switch_put" [drivers/usb/typec/hd3ss3220.ko] undefined!
ERROR: "typec_unregister_port" [drivers/usb/typec/hd3ss3220.ko] undefined!
ERROR: "i2c_del_driver" [drivers/usb/typec/ucsi/ucsi_ccg.ko] undefined!
ERROR: "i2c_register_driver" [drivers/usb/typec/ucsi/ucsi_ccg.ko] undefined!
ERROR: "jiffies_to_msecs" [drivers/usb/typec/ucsi/ucsi_ccg.ko] undefined!
ERROR: "hex2bin" [drivers/usb/typec/ucsi/ucsi_ccg.ko] undefined!
ERROR: "strnchr" [drivers/usb/typec/ucsi/ucsi_ccg.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/typec/ucsi/ucsi_ccg.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/typec/ucsi/ucsi_ccg.ko] undefined!
ERROR: "pm_runtime_set_autosuspend_delay" [drivers/usb/typec/ucsi/ucsi_ccg.ko] undefined!
ERROR: "__pm_runtime_use_autosuspend" [drivers/usb/typec/ucsi/ucsi_ccg.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/usb/typec/ucsi/ucsi_ccg.ko] undefined!
ERROR: "__pm_runtime_set_status" [drivers/usb/typec/ucsi/ucsi_ccg.ko] undefined!
ERROR: "ucsi_register" [drivers/usb/typec/ucsi/ucsi_ccg.ko] undefined!
ERROR: "request_threaded_irq" [drivers/usb/typec/ucsi/ucsi_ccg.ko] undefined!
ERROR: "ucsi_set_drvdata" [drivers/usb/typec/ucsi/ucsi_ccg.ko] undefined!
ERROR: "ucsi_create" [drivers/usb/typec/ucsi/ucsi_ccg.ko] undefined!
ERROR: "device_property_read_u16_array" [drivers/usb/typec/ucsi/ucsi_ccg.ko] undefined!
ERROR: "lockdep_init_map" [drivers/usb/typec/ucsi/ucsi_ccg.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/usb/typec/ucsi/ucsi_ccg.ko] undefined!
ERROR: "__mutex_init" [drivers/usb/typec/ucsi/ucsi_ccg.ko] undefined!
ERROR: "devm_kmalloc" [drivers/usb/typec/ucsi/ucsi_ccg.ko] undefined!
ERROR: "i2c_transfer_buffer_flags" [drivers/usb/typec/ucsi/ucsi_ccg.ko] undefined!
ERROR: "usleep_range" [drivers/usb/typec/ucsi/ucsi_ccg.ko] undefined!
ERROR: "jiffies" [drivers/usb/typec/ucsi/ucsi_ccg.ko] undefined!
ERROR: "msleep" [drivers/usb/typec/ucsi/ucsi_ccg.ko] undefined!
ERROR: "wait_for_completion_timeout" [drivers/usb/typec/ucsi/ucsi_ccg.ko] undefined!
ERROR: "mutex_unlock" [drivers/usb/typec/ucsi/ucsi_ccg.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/usb/typec/ucsi/ucsi_ccg.ko] undefined!
ERROR: "ucsi_connector_change" [drivers/usb/typec/ucsi/ucsi_ccg.ko] undefined!
ERROR: "complete" [drivers/usb/typec/ucsi/ucsi_ccg.ko] undefined!
ERROR: "kfree" [drivers/usb/typec/ucsi/ucsi_ccg.ko] undefined!
ERROR: "__kmalloc" [drivers/usb/typec/ucsi/ucsi_ccg.ko] undefined!
ERROR: "_dev_info" [drivers/usb/typec/ucsi/ucsi_ccg.ko] undefined!
ERROR: "release_firmware" [drivers/usb/typec/ucsi/ucsi_ccg.ko] undefined!
ERROR: "request_firmware" [drivers/usb/typec/ucsi/ucsi_ccg.ko] undefined!
ERROR: "ucsi_get_drvdata" [drivers/usb/typec/ucsi/ucsi_ccg.ko] undefined!
ERROR: "__pm_runtime_idle" [drivers/usb/typec/ucsi/ucsi_ccg.ko] undefined!
ERROR: "i2c_transfer" [drivers/usb/typec/ucsi/ucsi_ccg.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/usb/typec/ucsi/ucsi_ccg.ko] undefined!
ERROR: "free_irq" [drivers/usb/typec/ucsi/ucsi_ccg.ko] undefined!
ERROR: "ucsi_destroy" [drivers/usb/typec/ucsi/ucsi_ccg.ko] undefined!
ERROR: "ucsi_unregister" [drivers/usb/typec/ucsi/ucsi_ccg.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/usb/typec/ucsi/ucsi_ccg.ko] undefined!
ERROR: "cancel_work_sync" [drivers/usb/typec/ucsi/ucsi_ccg.ko] undefined!
ERROR: "_dev_err" [drivers/usb/typec/ucsi/ucsi_ccg.ko] undefined!
ERROR: "kstrtobool" [drivers/usb/typec/ucsi/ucsi_ccg.ko] undefined!
ERROR: "ucsi_resume" [drivers/usb/typec/ucsi/ucsi_ccg.ko] undefined!
ERROR: "queue_work_on" [drivers/usb/typec/ucsi/ucsi_ccg.ko] undefined!
ERROR: "system_wq" [drivers/usb/typec/ucsi/ucsi_ccg.ko] undefined!
ERROR: "system_wq" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "__kmalloc" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "msleep" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "trace_handle_return" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "device_get_next_child_node" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "typec_set_pwr_role" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "typec_get_drvdata" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "cancel_work_sync" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "typec_unregister_altmode" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "mutex_unlock" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "trace_event_buffer_reserve" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "__preempt_count" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "jiffies" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "system_long_wq" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "typec_register_port" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "_dev_warn" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "debug_lockdep_rcu_enabled" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "typec_unregister_port" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "__mutex_init" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "typec_altmode_vdm" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "typec_set_data_role" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "trace_event_reg" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "typec_altmode_update_active" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "_dev_err" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "perf_trace_run_bpf_submit" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "perf_trace_buf_alloc" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "rcu_read_lock_sched_held" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "typec_set_pwr_opmode" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "typec_unregister_partner" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "typec_partner_register_altmode" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "trace_event_ignore_this_pid" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "trace_event_buffer_commit" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "event_triggers_call" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "bpf_trace_run2" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "kfree" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "trace_event_raw_init" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "lockdep_init_map" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "typec_altmode_get_partner" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "trace_raw_output_prep" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "queue_work_on" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "complete" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "trace_seq_printf" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "typec_port_register_altmode" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "devm_kmalloc" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "wait_for_completion_timeout" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "typec_register_partner" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "completion_done" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "lockdep_rcu_suspicious" [drivers/usb/typec/ucsi/typec_ucsi.ko] undefined!
ERROR: "i2c_del_driver" [drivers/usb/typec/tcpm/tcpci_rt1711h.ko] undefined!
ERROR: "i2c_register_driver" [drivers/usb/typec/tcpm/tcpci_rt1711h.ko] undefined!
ERROR: "_dev_err" [drivers/usb/typec/tcpm/tcpci_rt1711h.ko] undefined!
ERROR: "tcpci_register_port" [drivers/usb/typec/tcpm/tcpci_rt1711h.ko] undefined!
ERROR: "irq_set_irq_wake" [drivers/usb/typec/tcpm/tcpci_rt1711h.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/usb/typec/tcpm/tcpci_rt1711h.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/usb/typec/tcpm/tcpci_rt1711h.ko] undefined!
ERROR: "devm_kmalloc" [drivers/usb/typec/tcpm/tcpci_rt1711h.ko] undefined!
ERROR: "i2c_smbus_read_word_data" [drivers/usb/typec/tcpm/tcpci_rt1711h.ko] undefined!
ERROR: "tcpci_irq" [drivers/usb/typec/tcpm/tcpci_rt1711h.ko] undefined!
ERROR: "regmap_raw_read" [drivers/usb/typec/tcpm/tcpci_rt1711h.ko] undefined!
ERROR: "usleep_range" [drivers/usb/typec/tcpm/tcpci_rt1711h.ko] undefined!
ERROR: "regmap_raw_write" [drivers/usb/typec/tcpm/tcpci_rt1711h.ko] undefined!
ERROR: "tcpci_unregister_port" [drivers/usb/typec/tcpm/tcpci_rt1711h.ko] undefined!
ERROR: "i2c_del_driver" [drivers/usb/typec/tcpm/tcpci.ko] undefined!
ERROR: "i2c_register_driver" [drivers/usb/typec/tcpm/tcpci.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/usb/typec/tcpm/tcpci.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/usb/typec/tcpm/tcpci.ko] undefined!
ERROR: "_dev_err" [drivers/usb/typec/tcpm/tcpci.ko] undefined!
ERROR: "tcpm_register_port" [drivers/usb/typec/tcpm/tcpci.ko] undefined!
ERROR: "device_get_named_child_node" [drivers/usb/typec/tcpm/tcpci.ko] undefined!
ERROR: "devm_kmalloc" [drivers/usb/typec/tcpm/tcpci.ko] undefined!
ERROR: "tcpm_tcpc_reset" [drivers/usb/typec/tcpm/tcpci.ko] undefined!
ERROR: "tcpm_pd_receive" [drivers/usb/typec/tcpm/tcpci.ko] undefined!
ERROR: "tcpm_cc_change" [drivers/usb/typec/tcpm/tcpci.ko] undefined!
ERROR: "tcpm_vbus_change" [drivers/usb/typec/tcpm/tcpci.ko] undefined!
ERROR: "tcpm_pd_hard_reset" [drivers/usb/typec/tcpm/tcpci.ko] undefined!
ERROR: "tcpm_pd_transmit_complete" [drivers/usb/typec/tcpm/tcpci.ko] undefined!
ERROR: "regmap_raw_read" [drivers/usb/typec/tcpm/tcpci.ko] undefined!
ERROR: "tcpm_unregister_port" [drivers/usb/typec/tcpm/tcpci.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/usb/typec/tcpm/tcpci.ko] undefined!
ERROR: "usleep_range" [drivers/usb/typec/tcpm/tcpci.ko] undefined!
ERROR: "jiffies" [drivers/usb/typec/tcpm/tcpci.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/usb/typec/tcpm/tcpci.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/usb/typec/tcpm/tcpci.ko] undefined!
ERROR: "regmap_raw_write" [drivers/usb/typec/tcpm/tcpci.ko] undefined!
ERROR: "regmap_write" [drivers/usb/typec/tcpm/tcpci.ko] undefined!
ERROR: "regmap_read" [drivers/usb/typec/tcpm/tcpci.ko] undefined!
ERROR: "single_release" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "seq_read" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "seq_lseek" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "typec_unregister_port" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "typec_register_port" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "destroy_workqueue" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "usb_role_switch_put" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "devm_power_supply_register" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "dev_fwnode" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "strlen" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "usb_role_switch_get" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "fwnode_property_present" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "typec_find_power_role" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "fwnode_property_read_u32_array" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "typec_find_port_power_role" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "typec_find_port_data_role" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "fwnode_property_read_string" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "init_timer_key" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "delayed_work_timer_fn" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "alloc_workqueue" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "devm_kmalloc" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "queue_work_on" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "lockdep_init_map" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "complete" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "jiffies_to_msecs" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "__warn_printk" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "typec_set_pwr_opmode" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "typec_partner_register_altmode" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "typec_partner_set_identity" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "typec_altmode_update_active" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "typec_altmode_notify" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "typec_altmode_attention" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "typec_altmode_vdm" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "typec_match_altmode" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "debugfs_remove" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "kfree" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "power_supply_get_drvdata" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "seq_printf" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "single_open" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "debugfs_create_file" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "usb_debug_root" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "snprintf" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "__mutex_init" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "typec_set_vconn_role" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "typec_set_pwr_role" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "typec_set_data_role" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "typec_register_partner" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "wait_for_completion_timeout" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "typec_get_drvdata" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "typec_unregister_partner" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "power_supply_changed" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "typec_set_mode" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "usb_role_switch_set_role" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "typec_set_orientation" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "typec_unregister_altmode" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "jiffies" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "mod_delayed_work_on" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "__msecs_to_jiffies" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "_dev_warn" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "strcpy" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "mutex_unlock" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "scnprintf" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "vsnprintf" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "sched_clock_cpu" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/usb/typec/tcpm/tcpm.ko] undefined!
ERROR: "system_wq" [drivers/usb/typec/altmodes/typec_displayport.ko] undefined!
ERROR: "typec_altmode_notify" [drivers/usb/typec/altmodes/typec_displayport.ko] undefined!
ERROR: "cancel_work_sync" [drivers/usb/typec/altmodes/typec_displayport.ko] undefined!
ERROR: "mutex_unlock" [drivers/usb/typec/altmodes/typec_displayport.ko] undefined!
ERROR: "typec_altmode_unregister_driver" [drivers/usb/typec/altmodes/typec_displayport.ko] undefined!
ERROR: "sprintf" [drivers/usb/typec/altmodes/typec_displayport.ko] undefined!
ERROR: "sysfs_remove_group" [drivers/usb/typec/altmodes/typec_displayport.ko] undefined!
ERROR: "typec_altmode_exit" [drivers/usb/typec/altmodes/typec_displayport.ko] undefined!
ERROR: "_dev_warn" [drivers/usb/typec/altmodes/typec_displayport.ko] undefined!
ERROR: "__sysfs_match_string" [drivers/usb/typec/altmodes/typec_displayport.ko] undefined!
ERROR: "__mutex_init" [drivers/usb/typec/altmodes/typec_displayport.ko] undefined!
ERROR: "sysfs_create_group" [drivers/usb/typec/altmodes/typec_displayport.ko] undefined!
ERROR: "typec_altmode_vdm" [drivers/usb/typec/altmodes/typec_displayport.ko] undefined!
ERROR: "_dev_err" [drivers/usb/typec/altmodes/typec_displayport.ko] undefined!
ERROR: "typec_altmode_enter" [drivers/usb/typec/altmodes/typec_displayport.ko] undefined!
ERROR: "sysfs_notify" [drivers/usb/typec/altmodes/typec_displayport.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/usb/typec/altmodes/typec_displayport.ko] undefined!
ERROR: "lockdep_init_map" [drivers/usb/typec/altmodes/typec_displayport.ko] undefined!
ERROR: "typec_altmode_get_partner" [drivers/usb/typec/altmodes/typec_displayport.ko] undefined!
ERROR: "queue_work_on" [drivers/usb/typec/altmodes/typec_displayport.ko] undefined!
ERROR: "devm_kmalloc" [drivers/usb/typec/altmodes/typec_displayport.ko] undefined!
ERROR: "__typec_altmode_register_driver" [drivers/usb/typec/altmodes/typec_displayport.ko] undefined!
ERROR: "class_find_device" [drivers/usb/typec/typec.ko] undefined!
ERROR: "bus_register" [drivers/usb/typec/typec.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/typec/typec.ko] undefined!
ERROR: "__kmalloc" [drivers/usb/typec/typec.ko] undefined!
ERROR: "device_connection_find_match" [drivers/usb/typec/typec.ko] undefined!
ERROR: "driver_register" [drivers/usb/typec/typec.ko] undefined!
ERROR: "strlen" [drivers/usb/typec/typec.ko] undefined!
ERROR: "match_string" [drivers/usb/typec/typec.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/usb/typec/typec.ko] undefined!
ERROR: "kobject_uevent" [drivers/usb/typec/typec.ko] undefined!
ERROR: "device_match_name" [drivers/usb/typec/typec.ko] undefined!
ERROR: "kmemdup" [drivers/usb/typec/typec.ko] undefined!
ERROR: "mutex_unlock" [drivers/usb/typec/typec.ko] undefined!
ERROR: "blocking_notifier_chain_unregister" [drivers/usb/typec/typec.ko] undefined!
ERROR: "fwnode_property_present" [drivers/usb/typec/typec.ko] undefined!
ERROR: "sprintf" [drivers/usb/typec/typec.ko] undefined!
ERROR: "strcmp" [drivers/usb/typec/typec.ko] undefined!
ERROR: "_dev_warn" [drivers/usb/typec/typec.ko] undefined!
ERROR: "__sysfs_match_string" [drivers/usb/typec/typec.ko] undefined!
ERROR: "kstrtobool" [drivers/usb/typec/typec.ko] undefined!
ERROR: "device_register" [drivers/usb/typec/typec.ko] undefined!
ERROR: "__mutex_init" [drivers/usb/typec/typec.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/usb/typec/typec.ko] undefined!
ERROR: "device_find_child" [drivers/usb/typec/typec.ko] undefined!
ERROR: "class_unregister" [drivers/usb/typec/typec.ko] undefined!
ERROR: "driver_unregister" [drivers/usb/typec/typec.ko] undefined!
ERROR: "ida_free" [drivers/usb/typec/typec.ko] undefined!
ERROR: "fwnode_property_read_u16_array" [drivers/usb/typec/typec.ko] undefined!
ERROR: "sysfs_remove_link" [drivers/usb/typec/typec.ko] undefined!
ERROR: "device_add" [drivers/usb/typec/typec.ko] undefined!
ERROR: "__class_register" [drivers/usb/typec/typec.ko] undefined!
ERROR: "_dev_err" [drivers/usb/typec/typec.ko] undefined!
ERROR: "bus_unregister" [drivers/usb/typec/typec.ko] undefined!
ERROR: "sysfs_create_link" [drivers/usb/typec/typec.ko] undefined!
ERROR: "put_device" [drivers/usb/typec/typec.ko] undefined!
ERROR: "blocking_notifier_call_chain" [drivers/usb/typec/typec.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/usb/typec/typec.ko] undefined!
ERROR: "device_match_fwnode" [drivers/usb/typec/typec.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/usb/typec/typec.ko] undefined!
ERROR: "sysfs_notify" [drivers/usb/typec/typec.ko] undefined!
ERROR: "blocking_notifier_chain_register" [drivers/usb/typec/typec.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/usb/typec/typec.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/typec/typec.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/typec/typec.ko] undefined!
ERROR: "get_device" [drivers/usb/typec/typec.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/usb/typec/typec.ko] undefined!
ERROR: "kfree" [drivers/usb/typec/typec.ko] undefined!
ERROR: "device_initialize" [drivers/usb/typec/typec.ko] undefined!
ERROR: "dev_fwnode" [drivers/usb/typec/typec.ko] undefined!
ERROR: "class_destroy" [drivers/usb/typec/typec.ko] undefined!
ERROR: "device_unregister" [drivers/usb/typec/typec.ko] undefined!
ERROR: "sysfs_streq" [drivers/usb/typec/typec.ko] undefined!
ERROR: "snprintf" [drivers/usb/typec/typec.ko] undefined!
ERROR: "dev_set_name" [drivers/usb/typec/typec.ko] undefined!
ERROR: "__class_create" [drivers/usb/typec/typec.ko] undefined!
ERROR: "ida_destroy" [drivers/usb/typec/typec.ko] undefined!
ERROR: "__init_rwsem" [drivers/usb/typec/typec.ko] undefined!
ERROR: "ida_alloc_range" [drivers/usb/typec/typec.ko] undefined!
ERROR: "add_uevent_var" [drivers/usb/typec/typec.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "usbip_event_happened" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "__kmalloc" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "usbip_header_correct_endian" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "kernel_sendmsg" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "sockfd_lookup" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "usbip_alloc_iso_desc_pdu" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "usb_del_gadget_udc" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "usb_gadget_giveback_request" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "kmemdup" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "init_timer_key" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "sprintf" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "kthread_create_on_node" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "__platform_driver_register" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "jiffies" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "__might_sleep" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "usbip_event_add" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "usb_gadget_udc_reset" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "printk" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "kthread_stop" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "platform_device_del" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "platform_device_alloc" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "platform_device_add" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "_raw_spin_unlock_irq" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "kernel_sock_shutdown" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "usbip_stop_eh" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "mod_timer" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "kstrtoint" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "_dev_err" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "fput" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "usbip_recv_iso" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "__list_add_valid" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "init_wait_entry" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "usbip_recv" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "usb_add_gadget_udc" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "refcount_warn_saturate" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "schedule" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "_raw_spin_lock_irq" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "usb_ep_set_maxpacket_limit" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "wake_up_process" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "__wake_up" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "kthread_should_stop" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "usb_disabled" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "kfree" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "usbip_recv_xbuff" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "__put_task_struct" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "usbip_debug_flag" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "finish_wait" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "snprintf" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "ktime_get_ts64" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "usbip_start_eh" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "param_ops_uint" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "usb_free_urb" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "usbip_pack_pdu" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "usb_alloc_urb" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "platform_device_put" [drivers/usb/usbip/usbip-vudc.ko] undefined!
ERROR: "kmem_cache_destroy" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "usbip_event_happened" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "__kmalloc" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "sgl_free" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "usbip_header_correct_endian" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "kernel_sendmsg" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "sockfd_lookup" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "page_address" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "usb_set_configuration" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "usbip_alloc_iso_desc_pdu" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "usb_kill_urb" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "kmemdup" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "sg_next" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "usb_hub_claim_port" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "mutex_unlock" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "sprintf" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "usb_unlink_urb" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "kthread_create_on_node" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "__might_sleep" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "strcmp" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "usbip_event_add" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "usbip_dump_header" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "usbip_in_eh" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "usb_lock_device_for_reset" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "current_task" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "printk" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "sscanf" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "kthread_stop" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "usb_set_interface" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "_raw_spin_unlock_irq" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "strncmp" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "strlcpy" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "usb_register_device_driver" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "kmem_cache_free" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "kernel_sock_shutdown" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "device_attach" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "usbip_stop_eh" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "dev_attr_usbip_debug" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "_dev_err" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "fput" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "usbip_recv_iso" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "__list_add_valid" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "init_wait_entry" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "_dev_info" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "usb_submit_urb" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "kmem_cache_alloc" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "usbip_dump_urb" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "usb_get_dev" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "sgl_alloc" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "strnlen" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "driver_create_file" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "usbip_recv" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "refcount_warn_saturate" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "usb_reset_device" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "usb_put_dev" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "schedule" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "usb_clear_halt" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "_raw_spin_lock_irq" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "wake_up_process" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "usb_deregister_device_driver" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "kmem_cache_create" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "__wake_up" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "kthread_should_stop" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "kfree" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "usbip_recv_xbuff" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "usb_hub_release_port" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "__put_task_struct" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "usbip_debug_flag" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "finish_wait" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "driver_remove_file" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "snprintf" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "usbip_start_eh" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "usb_free_urb" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "usbip_pack_pdu" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "usb_alloc_urb" [drivers/usb/usbip/usbip-host.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "usbip_event_happened" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "__kmalloc" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "usb_create_shared_hcd" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "usbip_header_correct_endian" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "kernel_sendmsg" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "sockfd_lookup" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "usb_add_hcd" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "strchr" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "usb_remove_hcd" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "page_address" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "usb_create_hcd" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "usb_hcd_poll_rh_status" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "usbip_alloc_iso_desc_pdu" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "sg_next" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "usb_hcd_giveback_urb" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "sprintf" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "sysfs_remove_group" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "kthread_create_on_node" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "__platform_driver_register" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "jiffies" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "__might_sleep" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "usb_put_hcd" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "usbip_event_add" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "usb_hcd_is_primary_hcd" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "usbip_dump_header" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "usb_speed_string" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "usb_hcd_link_urb_to_ep" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "printk" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "sscanf" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "kthread_stop" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "sysfs_create_group" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "_kstrtol" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "platform_device_del" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "platform_device_alloc" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "platform_device_add" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "kernel_sock_shutdown" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "usbip_stop_eh" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "dev_attr_usbip_debug" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "platform_device_unregister" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "kstrtoint" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "sysfs_remove_link" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "_dev_err" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "fput" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "usbip_recv_iso" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "__list_add_valid" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "init_wait_entry" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "usbip_pad_iso" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "usb_hcd_check_unlink_urb" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "_dev_info" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "usbip_dump_urb" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "usb_get_dev" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "usbip_recv" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "refcount_warn_saturate" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "usb_put_dev" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "schedule" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "___ratelimit" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "wake_up_process" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "platform_bus" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "platform_device_add_data" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "__wake_up" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "kthread_should_stop" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "usb_disabled" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "kfree" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "usbip_recv_xbuff" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "__put_task_struct" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "usbip_debug_flag" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "finish_wait" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "snprintf" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "usb_hcd_unlink_urb_from_ep" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "usb_hcd_resume_root_hub" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "usbip_start_eh" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "usbip_pack_pdu" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "strcpy" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "platform_device_put" [drivers/usb/usbip/vhci-hcd.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/usbip/usbip-core.ko] undefined!
ERROR: "__kmalloc" [drivers/usb/usbip/usbip-core.ko] undefined!
ERROR: "page_address" [drivers/usb/usbip/usbip-core.ko] undefined!
ERROR: "sock_recvmsg" [drivers/usb/usbip/usbip-core.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/usb/usbip/usbip-core.ko] undefined!
ERROR: "sg_next" [drivers/usb/usbip/usbip-core.ko] undefined!
ERROR: "__preempt_count" [drivers/usb/usbip/usbip-core.ko] undefined!
ERROR: "sprintf" [drivers/usb/usbip/usbip-core.ko] undefined!
ERROR: "__might_sleep" [drivers/usb/usbip/usbip-core.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/usb/usbip/usbip-core.ko] undefined!
ERROR: "usb_speed_string" [drivers/usb/usbip/usbip-core.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/usb/usbip/usbip-core.ko] undefined!
ERROR: "current_task" [drivers/usb/usbip/usbip-core.ko] undefined!
ERROR: "printk" [drivers/usb/usbip/usbip-core.ko] undefined!
ERROR: "sscanf" [drivers/usb/usbip/usbip-core.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/usb/usbip/usbip-core.ko] undefined!
ERROR: "iov_iter_kvec" [drivers/usb/usbip/usbip-core.ko] undefined!
ERROR: "destroy_workqueue" [drivers/usb/usbip/usbip-core.ko] undefined!
ERROR: "_dev_err" [drivers/usb/usbip/usbip-core.ko] undefined!
ERROR: "__list_add_valid" [drivers/usb/usbip/usbip-core.ko] undefined!
ERROR: "flush_workqueue" [drivers/usb/usbip/usbip-core.ko] undefined!
ERROR: "init_wait_entry" [drivers/usb/usbip/usbip-core.ko] undefined!
ERROR: "print_hex_dump" [drivers/usb/usbip/usbip-core.ko] undefined!
ERROR: "schedule" [drivers/usb/usbip/usbip-core.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/usb/usbip/usbip-core.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/usbip/usbip-core.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/usbip/usbip-core.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/usb/usbip/usbip-core.ko] undefined!
ERROR: "__wake_up" [drivers/usb/usbip/usbip-core.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/usb/usbip/usbip-core.ko] undefined!
ERROR: "kfree" [drivers/usb/usbip/usbip-core.ko] undefined!
ERROR: "finish_wait" [drivers/usb/usbip/usbip-core.ko] undefined!
ERROR: "queue_work_on" [drivers/usb/usbip/usbip-core.ko] undefined!
ERROR: "memmove" [drivers/usb/usbip/usbip-core.ko] undefined!
ERROR: "param_ops_ulong" [drivers/usb/usbip/usbip-core.ko] undefined!
ERROR: "alloc_workqueue" [drivers/usb/usbip/usbip-core.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/usb/chipidea/ci_hdrc_tegra.ko] undefined!
ERROR: "__platform_driver_register" [drivers/usb/chipidea/ci_hdrc_tegra.ko] undefined!
ERROR: "_dev_err" [drivers/usb/chipidea/ci_hdrc_tegra.ko] undefined!
ERROR: "clk_enable" [drivers/usb/chipidea/ci_hdrc_tegra.ko] undefined!
ERROR: "ci_hdrc_add_device" [drivers/usb/chipidea/ci_hdrc_tegra.ko] undefined!
ERROR: "clk_prepare" [drivers/usb/chipidea/ci_hdrc_tegra.ko] undefined!
ERROR: "devm_clk_get" [drivers/usb/chipidea/ci_hdrc_tegra.ko] undefined!
ERROR: "devm_usb_get_phy_by_phandle" [drivers/usb/chipidea/ci_hdrc_tegra.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/usb/chipidea/ci_hdrc_tegra.ko] undefined!
ERROR: "devm_kmalloc" [drivers/usb/chipidea/ci_hdrc_tegra.ko] undefined!
ERROR: "clk_unprepare" [drivers/usb/chipidea/ci_hdrc_tegra.ko] undefined!
ERROR: "clk_disable" [drivers/usb/chipidea/ci_hdrc_tegra.ko] undefined!
ERROR: "ci_hdrc_remove_device" [drivers/usb/chipidea/ci_hdrc_tegra.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/usb/chipidea/ci_hdrc_imx.ko] undefined!
ERROR: "__platform_driver_register" [drivers/usb/chipidea/ci_hdrc_imx.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/usb/chipidea/ci_hdrc_imx.ko] undefined!
ERROR: "device_set_wakeup_capable" [drivers/usb/chipidea/ci_hdrc_imx.ko] undefined!
ERROR: "imx_usbmisc_init_post" [drivers/usb/chipidea/ci_hdrc_imx.ko] undefined!
ERROR: "ci_hdrc_add_device" [drivers/usb/chipidea/ci_hdrc_imx.ko] undefined!
ERROR: "imx_usbmisc_init" [drivers/usb/chipidea/ci_hdrc_imx.ko] undefined!
ERROR: "of_device_is_compatible" [drivers/usb/chipidea/ci_hdrc_imx.ko] undefined!
ERROR: "regulator_enable" [drivers/usb/chipidea/ci_hdrc_imx.ko] undefined!
ERROR: "devm_regulator_get_optional" [drivers/usb/chipidea/ci_hdrc_imx.ko] undefined!
ERROR: "devm_pinctrl_get" [drivers/usb/chipidea/ci_hdrc_imx.ko] undefined!
ERROR: "devm_usb_get_phy_by_phandle" [drivers/usb/chipidea/ci_hdrc_imx.ko] undefined!
ERROR: "devm_clk_get" [drivers/usb/chipidea/ci_hdrc_imx.ko] undefined!
ERROR: "pinctrl_lookup_state" [drivers/usb/chipidea/ci_hdrc_imx.ko] undefined!
ERROR: "of_match_device" [drivers/usb/chipidea/ci_hdrc_imx.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/usb/chipidea/ci_hdrc_imx.ko] undefined!
ERROR: "__pm_runtime_set_status" [drivers/usb/chipidea/ci_hdrc_imx.ko] undefined!
ERROR: "pm_qos_add_request" [drivers/usb/chipidea/ci_hdrc_imx.ko] undefined!
ERROR: "clk_enable" [drivers/usb/chipidea/ci_hdrc_imx.ko] undefined!
ERROR: "clk_prepare" [drivers/usb/chipidea/ci_hdrc_imx.ko] undefined!
ERROR: "_dev_warn" [drivers/usb/chipidea/ci_hdrc_imx.ko] undefined!
ERROR: "of_usb_get_phy_mode" [drivers/usb/chipidea/ci_hdrc_imx.ko] undefined!
ERROR: "of_find_property" [drivers/usb/chipidea/ci_hdrc_imx.ko] undefined!
ERROR: "of_node_put" [drivers/usb/chipidea/ci_hdrc_imx.ko] undefined!
ERROR: "of_find_device_by_node" [drivers/usb/chipidea/ci_hdrc_imx.ko] undefined!
ERROR: "of_parse_phandle_with_args" [drivers/usb/chipidea/ci_hdrc_imx.ko] undefined!
ERROR: "devm_kmalloc" [drivers/usb/chipidea/ci_hdrc_imx.ko] undefined!
ERROR: "of_get_property" [drivers/usb/chipidea/ci_hdrc_imx.ko] undefined!
ERROR: "pinctrl_select_state" [drivers/usb/chipidea/ci_hdrc_imx.ko] undefined!
ERROR: "imx_usbmisc_hsic_set_connect" [drivers/usb/chipidea/ci_hdrc_imx.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/usb/chipidea/ci_hdrc_imx.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/usb/chipidea/ci_hdrc_imx.ko] undefined!
ERROR: "regulator_disable" [drivers/usb/chipidea/ci_hdrc_imx.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/usb/chipidea/ci_hdrc_imx.ko] undefined!
ERROR: "ci_hdrc_remove_device" [drivers/usb/chipidea/ci_hdrc_imx.ko] undefined!
ERROR: "imx_usbmisc_set_wakeup" [drivers/usb/chipidea/ci_hdrc_imx.ko] undefined!
ERROR: "_dev_err" [drivers/usb/chipidea/ci_hdrc_imx.ko] undefined!
ERROR: "pm_qos_remove_request" [drivers/usb/chipidea/ci_hdrc_imx.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/chipidea/ci_hdrc_imx.ko] undefined!
ERROR: "imx_usbmisc_hsic_set_clk" [drivers/usb/chipidea/ci_hdrc_imx.ko] undefined!
ERROR: "clk_unprepare" [drivers/usb/chipidea/ci_hdrc_imx.ko] undefined!
ERROR: "clk_disable" [drivers/usb/chipidea/ci_hdrc_imx.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/usb/chipidea/usbmisc_imx.ko] undefined!
ERROR: "__platform_driver_register" [drivers/usb/chipidea/usbmisc_imx.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/usb/chipidea/usbmisc_imx.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/usb/chipidea/usbmisc_imx.ko] undefined!
ERROR: "devm_platform_ioremap_resource" [drivers/usb/chipidea/usbmisc_imx.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/usb/chipidea/usbmisc_imx.ko] undefined!
ERROR: "devm_kmalloc" [drivers/usb/chipidea/usbmisc_imx.ko] undefined!
ERROR: "of_match_device" [drivers/usb/chipidea/usbmisc_imx.ko] undefined!
ERROR: "usleep_range" [drivers/usb/chipidea/usbmisc_imx.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/usb/chipidea/usbmisc_imx.ko] undefined!
ERROR: "_dev_err" [drivers/usb/chipidea/usbmisc_imx.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/chipidea/usbmisc_imx.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/usb/chipidea/usbmisc_imx.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/usb/chipidea/usbmisc_imx.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/usb/chipidea/ci_hdrc_zevio.ko] undefined!
ERROR: "__platform_driver_register" [drivers/usb/chipidea/ci_hdrc_zevio.ko] undefined!
ERROR: "_dev_err" [drivers/usb/chipidea/ci_hdrc_zevio.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/chipidea/ci_hdrc_zevio.ko] undefined!
ERROR: "ci_hdrc_add_device" [drivers/usb/chipidea/ci_hdrc_zevio.ko] undefined!
ERROR: "ci_hdrc_remove_device" [drivers/usb/chipidea/ci_hdrc_zevio.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/usb/chipidea/ci_hdrc_msm.ko] undefined!
ERROR: "__platform_driver_register" [drivers/usb/chipidea/ci_hdrc_msm.ko] undefined!
ERROR: "_dev_err" [drivers/usb/chipidea/ci_hdrc_msm.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/usb/chipidea/ci_hdrc_msm.ko] undefined!
ERROR: "pm_runtime_no_callbacks" [drivers/usb/chipidea/ci_hdrc_msm.ko] undefined!
ERROR: "__pm_runtime_set_status" [drivers/usb/chipidea/ci_hdrc_msm.ko] undefined!
ERROR: "regmap_write" [drivers/usb/chipidea/ci_hdrc_msm.ko] undefined!
ERROR: "syscon_node_to_regmap" [drivers/usb/chipidea/ci_hdrc_msm.ko] undefined!
ERROR: "ci_hdrc_add_device" [drivers/usb/chipidea/ci_hdrc_msm.ko] undefined!
ERROR: "of_node_put" [drivers/usb/chipidea/ci_hdrc_msm.ko] undefined!
ERROR: "of_device_is_compatible" [drivers/usb/chipidea/ci_hdrc_msm.ko] undefined!
ERROR: "of_get_next_available_child" [drivers/usb/chipidea/ci_hdrc_msm.ko] undefined!
ERROR: "of_get_child_by_name" [drivers/usb/chipidea/ci_hdrc_msm.ko] undefined!
ERROR: "of_parse_phandle_with_fixed_args" [drivers/usb/chipidea/ci_hdrc_msm.ko] undefined!
ERROR: "reset_control_deassert" [drivers/usb/chipidea/ci_hdrc_msm.ko] undefined!
ERROR: "usleep_range" [drivers/usb/chipidea/ci_hdrc_msm.ko] undefined!
ERROR: "reset_control_assert" [drivers/usb/chipidea/ci_hdrc_msm.ko] undefined!
ERROR: "clk_enable" [drivers/usb/chipidea/ci_hdrc_msm.ko] undefined!
ERROR: "clk_prepare" [drivers/usb/chipidea/ci_hdrc_msm.ko] undefined!
ERROR: "devm_reset_controller_register" [drivers/usb/chipidea/ci_hdrc_msm.ko] undefined!
ERROR: "devm_platform_ioremap_resource" [drivers/usb/chipidea/ci_hdrc_msm.ko] undefined!
ERROR: "devm_clk_get_optional" [drivers/usb/chipidea/ci_hdrc_msm.ko] undefined!
ERROR: "devm_clk_get" [drivers/usb/chipidea/ci_hdrc_msm.ko] undefined!
ERROR: "__devm_reset_control_get" [drivers/usb/chipidea/ci_hdrc_msm.ko] undefined!
ERROR: "devm_kmalloc" [drivers/usb/chipidea/ci_hdrc_msm.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/chipidea/ci_hdrc_msm.ko] undefined!
ERROR: "phy_exit" [drivers/usb/chipidea/ci_hdrc_msm.ko] undefined!
ERROR: "phy_power_off" [drivers/usb/chipidea/ci_hdrc_msm.ko] undefined!
ERROR: "ioread32" [drivers/usb/chipidea/ci_hdrc_msm.ko] undefined!
ERROR: "iowrite32" [drivers/usb/chipidea/ci_hdrc_msm.ko] undefined!
ERROR: "phy_power_on" [drivers/usb/chipidea/ci_hdrc_msm.ko] undefined!
ERROR: "phy_init" [drivers/usb/chipidea/ci_hdrc_msm.ko] undefined!
ERROR: "hw_phymode_configure" [drivers/usb/chipidea/ci_hdrc_msm.ko] undefined!
ERROR: "__const_udelay" [drivers/usb/chipidea/ci_hdrc_msm.ko] undefined!
ERROR: "clk_unprepare" [drivers/usb/chipidea/ci_hdrc_msm.ko] undefined!
ERROR: "clk_disable" [drivers/usb/chipidea/ci_hdrc_msm.ko] undefined!
ERROR: "ci_hdrc_remove_device" [drivers/usb/chipidea/ci_hdrc_msm.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/usb/chipidea/ci_hdrc_msm.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/usb/chipidea/ci_hdrc_usb2.ko] undefined!
ERROR: "__platform_driver_register" [drivers/usb/chipidea/ci_hdrc_usb2.ko] undefined!
ERROR: "_dev_err" [drivers/usb/chipidea/ci_hdrc_usb2.ko] undefined!
ERROR: "clk_enable" [drivers/usb/chipidea/ci_hdrc_usb2.ko] undefined!
ERROR: "clk_prepare" [drivers/usb/chipidea/ci_hdrc_usb2.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/usb/chipidea/ci_hdrc_usb2.ko] undefined!
ERROR: "pm_runtime_no_callbacks" [drivers/usb/chipidea/ci_hdrc_usb2.ko] undefined!
ERROR: "ci_hdrc_add_device" [drivers/usb/chipidea/ci_hdrc_usb2.ko] undefined!
ERROR: "devm_clk_get" [drivers/usb/chipidea/ci_hdrc_usb2.ko] undefined!
ERROR: "devm_kmalloc" [drivers/usb/chipidea/ci_hdrc_usb2.ko] undefined!
ERROR: "of_match_device" [drivers/usb/chipidea/ci_hdrc_usb2.ko] undefined!
ERROR: "clk_unprepare" [drivers/usb/chipidea/ci_hdrc_usb2.ko] undefined!
ERROR: "clk_disable" [drivers/usb/chipidea/ci_hdrc_usb2.ko] undefined!
ERROR: "ci_hdrc_remove_device" [drivers/usb/chipidea/ci_hdrc_usb2.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/usb/chipidea/ci_hdrc_usb2.ko] undefined!
ERROR: "phy_init" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "disable_irq" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "usb_gadget_unmap_request_by_dev" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "msleep" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "__pm_runtime_idle" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "usb_gadget_map_request_by_dev" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "usb_add_hcd" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "debugfs_create_dir" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "single_open" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "devm_phy_get" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "usb_ep_disable" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "usb_ep_enable" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "usb_remove_hcd" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "__pm_runtime_use_autosuspend" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "strlen" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "disable_irq_nosync" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "usb_debug_root" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "__pm_runtime_suspend" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "regulator_disable" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "usb_gadget_vbus_disconnect" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "single_release" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "pinctrl_select_state" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "__usb_create_hcd" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "devm_pinctrl_get" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "usb_del_gadget_udc" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "usb_gadget_giveback_request" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "seq_printf" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "__const_udelay" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "usb_ep_set_halt" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "ehci_setup" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "debugfs_create_file" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "dma_pool_destroy" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "usb_ep_alloc_request" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "sprintf" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "phy_set_mode_ext" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "debugfs_remove_recursive" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "ehci_handshake" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "seq_read" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "pinctrl_lookup_state" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "ulpi_unregister_interface" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "__platform_driver_register" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "jiffies" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "usb_gadget_set_state" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "usb_put_hcd" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "usb_role_switch_register" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "phy_power_off" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "pm_runtime_no_callbacks" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "irq_set_irq_wake" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "usb_gadget_unmap_request" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "devm_extcon_register_notifier" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "_dev_warn" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "ulpi_register_interface" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "usb_gadget_udc_reset" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "sscanf" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "of_find_property" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "platform_device_alloc" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "ida_free" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "phy_power_on" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "platform_device_add" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "strncmp" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "destroy_workqueue" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "platform_get_resource" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "platform_device_unregister" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "dma_pool_free" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "usb_ep_clear_halt" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "_dev_err" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "__list_add_valid" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "flush_workqueue" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "of_usb_update_otg_caps" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "synchronize_irq" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "platform_device_add_resources" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "_dev_info" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "phy_exit" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "devm_usb_get_phy" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "usb_hcd_irq" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "usleep_range" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "ehci_hub_control" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "usb_get_maximum_speed" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "usb_add_gadget_udc" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "__pm_runtime_set_status" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "usb_udc_vbus_handler" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "usb_ep_set_maxpacket_limit" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "usb_get_dr_mode" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "dma_pool_alloc" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "platform_device_add_data" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "devm_regulator_get_optional" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "usb_ep_free_request" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "extcon_get_edev_by_phandle" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "ehci_init_driver" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "of_usb_get_phy_mode" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "usb_disabled" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "usb_role_switch_unregister" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "seq_lseek" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "usb_phy_set_charger_state" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "enable_irq" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "devm_usb_get_phy_by_phandle" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "kfree" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "of_usb_host_tpl_support" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "scnprintf" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "lockdep_init_map" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "pm_runtime_set_autosuspend_delay" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "usb_phy_set_charger_current" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "queue_work_on" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "platform_get_irq" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "ktime_get_mono_fast_ns" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "usb_ep_fifo_flush" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "iowrite32" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "devm_kmalloc" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "_copy_from_user" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "dma_pool_create" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "alloc_workqueue" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "device_set_wakeup_capable" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "usb_gadget_vbus_connect" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "ioread32" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "device_property_present" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "ida_alloc_range" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "regulator_enable" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "platform_device_put" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "extcon_get_state" [drivers/usb/chipidea/ci_hdrc.ko] undefined!
ERROR: "param_ops_ushort" [drivers/usb/atm/xusbatm.ko] undefined!
ERROR: "param_ops_byte" [drivers/usb/atm/xusbatm.ko] undefined!
ERROR: "param_array_ops" [drivers/usb/atm/xusbatm.ko] undefined!
ERROR: "usbatm_usb_disconnect" [drivers/usb/atm/xusbatm.ko] undefined!
ERROR: "usb_deregister" [drivers/usb/atm/xusbatm.ko] undefined!
ERROR: "usb_register_driver" [drivers/usb/atm/xusbatm.ko] undefined!
ERROR: "printk" [drivers/usb/atm/xusbatm.ko] undefined!
ERROR: "_dev_err" [drivers/usb/atm/xusbatm.ko] undefined!
ERROR: "usb_set_interface" [drivers/usb/atm/xusbatm.ko] undefined!
ERROR: "usb_driver_claim_interface" [drivers/usb/atm/xusbatm.ko] undefined!
ERROR: "usb_altnum_to_altsetting" [drivers/usb/atm/xusbatm.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/atm/xusbatm.ko] undefined!
ERROR: "usb_driver_release_interface" [drivers/usb/atm/xusbatm.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/usb/atm/xusbatm.ko] undefined!
ERROR: "get_random_bytes" [drivers/usb/atm/xusbatm.ko] undefined!
ERROR: "usbatm_usb_probe" [drivers/usb/atm/xusbatm.ko] undefined!
ERROR: "param_ops_uint" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "del_timer" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "usb_kill_urb" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "vcc_release_async" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "send_sig" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "usb_get_dev" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "wait_for_completion" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "wake_up_process" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "kthread_create_on_node" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "usb_free_urb" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "usb_alloc_urb" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "tasklet_init" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "__mutex_init" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "snprintf" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "scnprintf" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "usb_string" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "strlcpy" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "__kmalloc" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "skb_queue_tail" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "kfree_skb" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "skb_dequeue" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "complete_and_exit" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "complete" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "kernel_sigaction" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "atm_dev_deregister" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "_dev_err" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "atm_dev_register" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "refcount_warn_saturate" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "usb_put_dev" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "tasklet_kill" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "__alloc_skb" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "mutex_unlock" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "kfree" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "__put_user_4" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "__might_fault" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "sprintf" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "init_timer_key" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "__dev_kfree_skb_any" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "atm_charge" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "__netdev_alloc_skb" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "___ratelimit" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "skb_trim" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "crc32_be" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "printk" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "mod_timer" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "jiffies" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "__list_add_valid" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "__printk_ratelimit" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "usb_submit_urb" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "_raw_spin_unlock_irq" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "_raw_spin_lock_irq" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "__tasklet_schedule" [drivers/usb/atm/usbatm.ko] undefined!
ERROR: "param_ops_bool" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "param_ops_charp" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "param_ops_uint" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "param_array_ops" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "usb_deregister" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "usb_register_driver" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "__wake_up" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "request_firmware_nowait" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "wake_up_process" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "usbatm_usb_probe" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "usb_reset_device" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "strncmp" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "_dev_warn" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "kernel_param_unlock" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "strlcat" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "strcpy" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "kernel_param_lock" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "crc32_be" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "usb_bulk_msg" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "strcmp" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "request_firmware" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "kthread_create_on_node" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "usb_alloc_urb" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "__kmalloc" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "lockdep_init_map" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "usb_set_interface" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "jiffies_to_msecs" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "atm_dev_signal_change" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "schedule_timeout" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "debug_check_no_locks_held" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "__refrigerator" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "freezing_slow_path" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "system_freezing_cnt" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "current_task" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "kthread_should_stop" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "set_freezable" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "queue_work_on" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "system_wq" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "usb_submit_urb" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "usb_driver_claim_interface" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "usb_ifnum_to_if" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "finish_wait" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "schedule" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "init_wait_entry" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "__might_sleep" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "release_firmware" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "flush_work" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "usb_free_urb" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "usb_kill_urb" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "kthread_stop" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "_dev_err" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "kfree" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "usb_control_msg" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "kmemdup" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "hex_to_bin" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "usb_string" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "_dev_info" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "usbatm_usb_disconnect" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "sprintf" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "mutex_unlock" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "snprintf" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/usb/atm/ueagle-atm.ko] undefined!
ERROR: "param_ops_bool" [drivers/usb/atm/speedtch.ko] undefined!
ERROR: "param_ops_uint" [drivers/usb/atm/speedtch.ko] undefined!
ERROR: "param_ops_byte" [drivers/usb/atm/speedtch.ko] undefined!
ERROR: "param_array_ops" [drivers/usb/atm/speedtch.ko] undefined!
ERROR: "usbatm_usb_disconnect" [drivers/usb/atm/speedtch.ko] undefined!
ERROR: "usb_deregister" [drivers/usb/atm/speedtch.ko] undefined!
ERROR: "usb_register_driver" [drivers/usb/atm/speedtch.ko] undefined!
ERROR: "_dev_warn" [drivers/usb/atm/speedtch.ko] undefined!
ERROR: "release_firmware" [drivers/usb/atm/speedtch.ko] undefined!
ERROR: "free_pages" [drivers/usb/atm/speedtch.ko] undefined!
ERROR: "msleep_interruptible" [drivers/usb/atm/speedtch.ko] undefined!
ERROR: "usb_bulk_msg" [drivers/usb/atm/speedtch.ko] undefined!
ERROR: "__get_free_pages" [drivers/usb/atm/speedtch.ko] undefined!
ERROR: "usb_reset_device" [drivers/usb/atm/speedtch.ko] undefined!
ERROR: "usb_alloc_urb" [drivers/usb/atm/speedtch.ko] undefined!
ERROR: "init_timer_key" [drivers/usb/atm/speedtch.ko] undefined!
ERROR: "lockdep_init_map" [drivers/usb/atm/speedtch.ko] undefined!
ERROR: "usb_set_interface" [drivers/usb/atm/speedtch.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/atm/speedtch.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/atm/speedtch.ko] undefined!
ERROR: "usb_driver_claim_interface" [drivers/usb/atm/speedtch.ko] undefined!
ERROR: "atm_dev_signal_change" [drivers/usb/atm/speedtch.ko] undefined!
ERROR: "__msecs_to_jiffies" [drivers/usb/atm/speedtch.ko] undefined!
ERROR: "queue_work_on" [drivers/usb/atm/speedtch.ko] undefined!
ERROR: "system_wq" [drivers/usb/atm/speedtch.ko] undefined!
ERROR: "_dev_err" [drivers/usb/atm/speedtch.ko] undefined!
ERROR: "_dev_info" [drivers/usb/atm/speedtch.ko] undefined!
ERROR: "request_firmware" [drivers/usb/atm/speedtch.ko] undefined!
ERROR: "sprintf" [drivers/usb/atm/speedtch.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/atm/speedtch.ko] undefined!
ERROR: "kfree" [drivers/usb/atm/speedtch.ko] undefined!
ERROR: "usb_driver_release_interface" [drivers/usb/atm/speedtch.ko] undefined!
ERROR: "usb_ifnum_to_if" [drivers/usb/atm/speedtch.ko] undefined!
ERROR: "hex_to_bin" [drivers/usb/atm/speedtch.ko] undefined!
ERROR: "mod_timer" [drivers/usb/atm/speedtch.ko] undefined!
ERROR: "jiffies" [drivers/usb/atm/speedtch.ko] undefined!
ERROR: "usb_submit_urb" [drivers/usb/atm/speedtch.ko] undefined!
ERROR: "usb_string" [drivers/usb/atm/speedtch.ko] undefined!
ERROR: "printk" [drivers/usb/atm/speedtch.ko] undefined!
ERROR: "usb_control_msg" [drivers/usb/atm/speedtch.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/usb/atm/speedtch.ko] undefined!
ERROR: "flush_work" [drivers/usb/atm/speedtch.ko] undefined!
ERROR: "usb_free_urb" [drivers/usb/atm/speedtch.ko] undefined!
ERROR: "usb_kill_urb" [drivers/usb/atm/speedtch.ko] undefined!
ERROR: "del_timer" [drivers/usb/atm/speedtch.ko] undefined!
ERROR: "usbatm_usb_probe" [drivers/usb/atm/speedtch.ko] undefined!
ERROR: "usbatm_usb_disconnect" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "usb_deregister" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "usb_register_driver" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "usb_clear_halt" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "msleep_interruptible" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "release_firmware" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "_dev_warn" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "usb_bulk_msg" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "delayed_work_timer_fn" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "lockdep_init_map" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "usb_alloc_urb" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "__get_free_pages" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "__mutex_init" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "msleep" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "mutex_lock_interruptible_nested" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "atm_dev_signal_change" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "queue_delayed_work_on" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "system_wq" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "round_jiffies_relative" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "complete" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "request_firmware" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "sprintf" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "kfree" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "free_pages" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "usb_free_urb" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "usb_kill_urb" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "cancel_delayed_work_sync" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "_dev_info" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "strcmp" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "usb_string" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "usbatm_usb_probe" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "printk" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "sscanf" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "capable" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "strlen" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "_dev_err" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "mutex_unlock" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "__printk_ratelimit" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "usb_submit_urb" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "del_timer" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "wait_for_completion" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "mod_timer" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "jiffies" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "init_timer_key" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "usb_unlink_urb" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "snprintf" [drivers/usb/atm/cxacru.ko] undefined!
ERROR: "usb_serial_deregister_drivers" [drivers/usb/serial/xsens_mt.ko] undefined!
ERROR: "usb_serial_register_drivers" [drivers/usb/serial/xsens_mt.ko] undefined!
ERROR: "usb_serial_generic_unthrottle" [drivers/usb/serial/whiteheat.ko] undefined!
ERROR: "usb_serial_generic_throttle" [drivers/usb/serial/whiteheat.ko] undefined!
ERROR: "usb_serial_deregister_drivers" [drivers/usb/serial/whiteheat.ko] undefined!
ERROR: "usb_serial_register_drivers" [drivers/usb/serial/whiteheat.ko] undefined!
ERROR: "__wake_up" [drivers/usb/serial/whiteheat.ko] undefined!
ERROR: "ezusb_fx1_ihex_firmware_download" [drivers/usb/serial/whiteheat.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/usb/serial/whiteheat.ko] undefined!
ERROR: "__mutex_init" [drivers/usb/serial/whiteheat.ko] undefined!
ERROR: "_dev_info" [drivers/usb/serial/whiteheat.ko] undefined!
ERROR: "usb_bulk_msg" [drivers/usb/serial/whiteheat.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/serial/whiteheat.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/serial/whiteheat.ko] undefined!
ERROR: "kfree" [drivers/usb/serial/whiteheat.ko] undefined!
ERROR: "_dev_err" [drivers/usb/serial/whiteheat.ko] undefined!
ERROR: "usb_serial_generic_open" [drivers/usb/serial/whiteheat.ko] undefined!
ERROR: "usb_clear_halt" [drivers/usb/serial/whiteheat.ko] undefined!
ERROR: "usb_serial_generic_close" [drivers/usb/serial/whiteheat.ko] undefined!
ERROR: "tty_encode_baud_rate" [drivers/usb/serial/whiteheat.ko] undefined!
ERROR: "tty_termios_baud_rate" [drivers/usb/serial/whiteheat.ko] undefined!
ERROR: "usb_kill_urb" [drivers/usb/serial/whiteheat.ko] undefined!
ERROR: "schedule_timeout" [drivers/usb/serial/whiteheat.ko] undefined!
ERROR: "finish_wait" [drivers/usb/serial/whiteheat.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/usb/serial/whiteheat.ko] undefined!
ERROR: "init_wait_entry" [drivers/usb/serial/whiteheat.ko] undefined!
ERROR: "__might_sleep" [drivers/usb/serial/whiteheat.ko] undefined!
ERROR: "mutex_unlock" [drivers/usb/serial/whiteheat.ko] undefined!
ERROR: "usb_submit_urb" [drivers/usb/serial/whiteheat.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/usb/serial/whiteheat.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/serial/whiteheat.ko] undefined!
ERROR: "usb_serial_deregister_drivers" [drivers/usb/serial/wishbone-serial.ko] undefined!
ERROR: "usb_serial_register_drivers" [drivers/usb/serial/wishbone-serial.ko] undefined!
ERROR: "_dev_err" [drivers/usb/serial/wishbone-serial.ko] undefined!
ERROR: "usb_serial_generic_open" [drivers/usb/serial/wishbone-serial.ko] undefined!
ERROR: "usb_serial_generic_close" [drivers/usb/serial/wishbone-serial.ko] undefined!
ERROR: "usb_control_msg" [drivers/usb/serial/wishbone-serial.ko] undefined!
ERROR: "usb_serial_generic_unthrottle" [drivers/usb/serial/visor.ko] undefined!
ERROR: "usb_serial_generic_throttle" [drivers/usb/serial/visor.ko] undefined!
ERROR: "usb_serial_deregister_drivers" [drivers/usb/serial/visor.ko] undefined!
ERROR: "usb_serial_register_drivers" [drivers/usb/serial/visor.ko] undefined!
ERROR: "_dev_warn" [drivers/usb/serial/visor.ko] undefined!
ERROR: "_dev_info" [drivers/usb/serial/visor.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/serial/visor.ko] undefined!
ERROR: "usb_submit_urb" [drivers/usb/serial/visor.ko] undefined!
ERROR: "usb_serial_generic_open" [drivers/usb/serial/visor.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/usb/serial/visor.ko] undefined!
ERROR: "_dev_err" [drivers/usb/serial/visor.ko] undefined!
ERROR: "kfree" [drivers/usb/serial/visor.ko] undefined!
ERROR: "usb_control_msg" [drivers/usb/serial/visor.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/serial/visor.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/serial/visor.ko] undefined!
ERROR: "usb_kill_urb" [drivers/usb/serial/visor.ko] undefined!
ERROR: "usb_serial_generic_close" [drivers/usb/serial/visor.ko] undefined!
ERROR: "usb_serial_deregister_drivers" [drivers/usb/serial/upd78f0730.ko] undefined!
ERROR: "usb_serial_register_drivers" [drivers/usb/serial/upd78f0730.ko] undefined!
ERROR: "__mutex_init" [drivers/usb/serial/upd78f0730.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/serial/upd78f0730.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/serial/upd78f0730.ko] undefined!
ERROR: "mutex_destroy" [drivers/usb/serial/upd78f0730.ko] undefined!
ERROR: "usb_serial_generic_open" [drivers/usb/serial/upd78f0730.ko] undefined!
ERROR: "usb_serial_generic_close" [drivers/usb/serial/upd78f0730.ko] undefined!
ERROR: "_dev_warn" [drivers/usb/serial/upd78f0730.ko] undefined!
ERROR: "tty_encode_baud_rate" [drivers/usb/serial/upd78f0730.ko] undefined!
ERROR: "tty_termios_baud_rate" [drivers/usb/serial/upd78f0730.ko] undefined!
ERROR: "tty_termios_hw_change" [drivers/usb/serial/upd78f0730.ko] undefined!
ERROR: "_dev_err" [drivers/usb/serial/upd78f0730.ko] undefined!
ERROR: "kfree" [drivers/usb/serial/upd78f0730.ko] undefined!
ERROR: "usb_control_msg" [drivers/usb/serial/upd78f0730.ko] undefined!
ERROR: "kmemdup" [drivers/usb/serial/upd78f0730.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/serial/upd78f0730.ko] undefined!
ERROR: "mutex_unlock" [drivers/usb/serial/upd78f0730.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/usb/serial/upd78f0730.ko] undefined!
ERROR: "free_pages" [drivers/usb/serial/usb_wwan.ko] undefined!
ERROR: "kfree" [drivers/usb/serial/usb_wwan.ko] undefined!
ERROR: "usb_free_urb" [drivers/usb/serial/usb_wwan.ko] undefined!
ERROR: "__get_free_pages" [drivers/usb/serial/usb_wwan.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/usb/serial/usb_wwan.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/usb/serial/usb_wwan.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/serial/usb_wwan.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/serial/usb_wwan.ko] undefined!
ERROR: "usb_autopm_get_interface_no_resume" [drivers/usb/serial/usb_wwan.ko] undefined!
ERROR: "usb_kill_urb" [drivers/usb/serial/usb_wwan.ko] undefined!
ERROR: "usb_get_from_anchor" [drivers/usb/serial/usb_wwan.ko] undefined!
ERROR: "_raw_spin_unlock_irq" [drivers/usb/serial/usb_wwan.ko] undefined!
ERROR: "_raw_spin_lock_irq" [drivers/usb/serial/usb_wwan.ko] undefined!
ERROR: "usb_anchor_urb" [drivers/usb/serial/usb_wwan.ko] undefined!
ERROR: "usb_autopm_get_interface_async" [drivers/usb/serial/usb_wwan.ko] undefined!
ERROR: "usb_unlink_urb" [drivers/usb/serial/usb_wwan.ko] undefined!
ERROR: "jiffies" [drivers/usb/serial/usb_wwan.ko] undefined!
ERROR: "mutex_unlock" [drivers/usb/serial/usb_wwan.ko] undefined!
ERROR: "capable" [drivers/usb/serial/usb_wwan.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/usb/serial/usb_wwan.ko] undefined!
ERROR: "tty_termios_baud_rate" [drivers/usb/serial/usb_wwan.ko] undefined!
ERROR: "usb_alloc_urb" [drivers/usb/serial/usb_wwan.ko] undefined!
ERROR: "_dev_err" [drivers/usb/serial/usb_wwan.ko] undefined!
ERROR: "tty_flip_buffer_push" [drivers/usb/serial/usb_wwan.ko] undefined!
ERROR: "tty_insert_flip_string_fixed_flag" [drivers/usb/serial/usb_wwan.ko] undefined!
ERROR: "ktime_get_mono_fast_ns" [drivers/usb/serial/usb_wwan.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/serial/usb_wwan.ko] undefined!
ERROR: "usb_submit_urb" [drivers/usb/serial/usb_wwan.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/usb/serial/usb_wwan.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/usb/serial/usb_wwan.ko] undefined!
ERROR: "usb_autopm_put_interface_async" [drivers/usb/serial/usb_wwan.ko] undefined!
ERROR: "usb_serial_port_softint" [drivers/usb/serial/usb_wwan.ko] undefined!
ERROR: "usb_autopm_put_interface" [drivers/usb/serial/usb_wwan.ko] undefined!
ERROR: "usb_control_msg" [drivers/usb/serial/usb_wwan.ko] undefined!
ERROR: "usb_autopm_get_interface" [drivers/usb/serial/usb_wwan.ko] undefined!
ERROR: "usb_serial_generic_get_icount" [drivers/usb/serial/ssu100.ko] undefined!
ERROR: "usb_serial_generic_tiocmiwait" [drivers/usb/serial/ssu100.ko] undefined!
ERROR: "usb_serial_deregister_drivers" [drivers/usb/serial/ssu100.ko] undefined!
ERROR: "usb_serial_register_drivers" [drivers/usb/serial/ssu100.ko] undefined!
ERROR: "_dev_err" [drivers/usb/serial/ssu100.ko] undefined!
ERROR: "usb_serial_generic_open" [drivers/usb/serial/ssu100.ko] undefined!
ERROR: "tty_termios_baud_rate" [drivers/usb/serial/ssu100.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/serial/ssu100.ko] undefined!
ERROR: "usb_serial_handle_break" [drivers/usb/serial/ssu100.ko] undefined!
ERROR: "__wake_up" [drivers/usb/serial/ssu100.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/usb/serial/ssu100.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/usb/serial/ssu100.ko] undefined!
ERROR: "tty_insert_flip_string_fixed_flag" [drivers/usb/serial/ssu100.ko] undefined!
ERROR: "__tty_insert_flip_char" [drivers/usb/serial/ssu100.ko] undefined!
ERROR: "tty_flip_buffer_push" [drivers/usb/serial/ssu100.ko] undefined!
ERROR: "usb_serial_handle_sysrq_char" [drivers/usb/serial/ssu100.ko] undefined!
ERROR: "usb_control_msg" [drivers/usb/serial/ssu100.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/usb/serial/ssu100.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/serial/ssu100.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/serial/ssu100.ko] undefined!
ERROR: "kfree" [drivers/usb/serial/ssu100.ko] undefined!
ERROR: "usb_serial_deregister_drivers" [drivers/usb/serial/usb-serial-simple.ko] undefined!
ERROR: "usb_serial_register_drivers" [drivers/usb/serial/usb-serial-simple.ko] undefined!
ERROR: "param_ops_bool" [drivers/usb/serial/sierra.ko] undefined!
ERROR: "usb_serial_deregister_drivers" [drivers/usb/serial/sierra.ko] undefined!
ERROR: "usb_serial_register_drivers" [drivers/usb/serial/sierra.ko] undefined!
ERROR: "tty_flip_buffer_push" [drivers/usb/serial/sierra.ko] undefined!
ERROR: "tty_insert_flip_string_fixed_flag" [drivers/usb/serial/sierra.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/usb/serial/sierra.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/usb/serial/sierra.ko] undefined!
ERROR: "usb_clear_halt" [drivers/usb/serial/sierra.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/serial/sierra.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/serial/sierra.ko] undefined!
ERROR: "usb_set_interface" [drivers/usb/serial/sierra.ko] undefined!
ERROR: "usb_autopm_get_interface_no_resume" [drivers/usb/serial/sierra.ko] undefined!
ERROR: "usb_kill_anchored_urbs" [drivers/usb/serial/sierra.ko] undefined!
ERROR: "usb_kill_urb" [drivers/usb/serial/sierra.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/usb/serial/sierra.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/usb/serial/sierra.ko] undefined!
ERROR: "_raw_spin_unlock_irq" [drivers/usb/serial/sierra.ko] undefined!
ERROR: "usb_get_from_anchor" [drivers/usb/serial/sierra.ko] undefined!
ERROR: "_raw_spin_lock_irq" [drivers/usb/serial/sierra.ko] undefined!
ERROR: "usb_unanchor_urb" [drivers/usb/serial/sierra.ko] undefined!
ERROR: "usb_anchor_urb" [drivers/usb/serial/sierra.ko] undefined!
ERROR: "usb_alloc_urb" [drivers/usb/serial/sierra.ko] undefined!
ERROR: "__kmalloc" [drivers/usb/serial/sierra.ko] undefined!
ERROR: "usb_autopm_get_interface_async" [drivers/usb/serial/sierra.ko] undefined!
ERROR: "usb_serial_port_softint" [drivers/usb/serial/sierra.ko] undefined!
ERROR: "usb_autopm_put_interface_async" [drivers/usb/serial/sierra.ko] undefined!
ERROR: "usb_free_urb" [drivers/usb/serial/sierra.ko] undefined!
ERROR: "kfree" [drivers/usb/serial/sierra.ko] undefined!
ERROR: "usb_autopm_put_interface" [drivers/usb/serial/sierra.ko] undefined!
ERROR: "usb_control_msg" [drivers/usb/serial/sierra.ko] undefined!
ERROR: "usb_autopm_get_interface" [drivers/usb/serial/sierra.ko] undefined!
ERROR: "tty_port_tty_hangup" [drivers/usb/serial/sierra.ko] undefined!
ERROR: "ktime_get_mono_fast_ns" [drivers/usb/serial/sierra.ko] undefined!
ERROR: "_dev_err" [drivers/usb/serial/sierra.ko] undefined!
ERROR: "usb_submit_urb" [drivers/usb/serial/sierra.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/serial/sierra.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/usb/serial/sierra.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/usb/serial/sierra.ko] undefined!
ERROR: "usb_serial_generic_get_icount" [drivers/usb/serial/quatech2.ko] undefined!
ERROR: "usb_serial_generic_tiocmiwait" [drivers/usb/serial/quatech2.ko] undefined!
ERROR: "usb_serial_deregister_drivers" [drivers/usb/serial/quatech2.ko] undefined!
ERROR: "usb_serial_register_drivers" [drivers/usb/serial/quatech2.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/serial/quatech2.ko] undefined!
ERROR: "tty_termios_baud_rate" [drivers/usb/serial/quatech2.ko] undefined!
ERROR: "_dev_warn" [drivers/usb/serial/quatech2.ko] undefined!
ERROR: "__wake_up" [drivers/usb/serial/quatech2.ko] undefined!
ERROR: "tty_insert_flip_string_fixed_flag" [drivers/usb/serial/quatech2.ko] undefined!
ERROR: "tty_flip_buffer_push" [drivers/usb/serial/quatech2.ko] undefined!
ERROR: "__tty_insert_flip_char" [drivers/usb/serial/quatech2.ko] undefined!
ERROR: "usb_serial_port_softint" [drivers/usb/serial/quatech2.ko] undefined!
ERROR: "usb_alloc_urb" [drivers/usb/serial/quatech2.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/usb/serial/quatech2.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/serial/quatech2.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/serial/quatech2.ko] undefined!
ERROR: "kfree" [drivers/usb/serial/quatech2.ko] undefined!
ERROR: "usb_free_urb" [drivers/usb/serial/quatech2.ko] undefined!
ERROR: "usb_control_msg" [drivers/usb/serial/quatech2.ko] undefined!
ERROR: "usb_kill_urb" [drivers/usb/serial/quatech2.ko] undefined!
ERROR: "usb_submit_urb" [drivers/usb/serial/quatech2.ko] undefined!
ERROR: "_dev_err" [drivers/usb/serial/quatech2.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/usb/serial/quatech2.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/usb/serial/quatech2.ko] undefined!
ERROR: "usb_serial_deregister_drivers" [drivers/usb/serial/qcaux.ko] undefined!
ERROR: "usb_serial_register_drivers" [drivers/usb/serial/qcaux.ko] undefined!
ERROR: "usb_serial_generic_tiocmiwait" [drivers/usb/serial/pl2303.ko] undefined!
ERROR: "usb_serial_deregister_drivers" [drivers/usb/serial/pl2303.ko] undefined!
ERROR: "usb_serial_register_drivers" [drivers/usb/serial/pl2303.ko] undefined!
ERROR: "__tty_insert_flip_char" [drivers/usb/serial/pl2303.ko] undefined!
ERROR: "tty_insert_flip_string_fixed_flag" [drivers/usb/serial/pl2303.ko] undefined!
ERROR: "tty_flip_buffer_push" [drivers/usb/serial/pl2303.ko] undefined!
ERROR: "usb_serial_handle_sysrq_char" [drivers/usb/serial/pl2303.ko] undefined!
ERROR: "tty_kref_put" [drivers/usb/serial/pl2303.ko] undefined!
ERROR: "usb_serial_handle_dcd_change" [drivers/usb/serial/pl2303.ko] undefined!
ERROR: "tty_port_tty_get" [drivers/usb/serial/pl2303.ko] undefined!
ERROR: "usb_serial_handle_break" [drivers/usb/serial/pl2303.ko] undefined!
ERROR: "__wake_up" [drivers/usb/serial/pl2303.ko] undefined!
ERROR:   CC      arch/x86/boot/compressed/cpuflags.o
"__raw_spin_lock_init" [drivers/usb/serial/pl2303.ko] undefined!
ERROR: "usb_clear_halt" [drivers/usb/serial/pl2303.ko] undefined!
ERROR: "usb_serial_generic_open" [drivers/usb/serial/pl2303.ko] undefined!
ERROR: "usb_submit_urb" [drivers/usb/serial/pl2303.ko] undefined!
ERROR: "usb_kill_urb" [drivers/usb/serial/pl2303.ko] undefined!
ERROR: "usb_serial_generic_close" [drivers/usb/serial/pl2303.ko] undefined!
ERROR: "tty_encode_baud_rate" [drivers/usb/serial/pl2303.ko] undefined!
ERROR: "tty_termios_baud_rate" [drivers/usb/serial/pl2303.ko] undefined!
ERROR: "tty_termios_hw_change" [drivers/usb/serial/pl2303.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/serial/pl2303.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/serial/pl2303.ko] undefined!
ERROR: "kfree" [drivers/usb/serial/pl2303.ko] undefined!
ERROR: "usb_control_msg" [drivers/usb/serial/pl2303.ko] undefined!
ERROR: "_dev_err" [drivers/usb/serial/pl2303.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/serial/pl2303.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/usb/serial/pl2303.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/usb/serial/pl2303.ko] undefined!
ERROR: "usb_serial_generic_tiocmiwait" [drivers/usb/serial/oti6858.ko] undefined!
ERROR: "usb_serial_deregister_drivers" [drivers/usb/serial/oti6858.ko] undefined!
ERROR: "usb_serial_register_drivers" [drivers/usb/serial/oti6858.ko] undefined!
ERROR: "usb_serial_port_softint" [drivers/usb/serial/oti6858.ko] undefined!
ERROR: "__kfifo_out" [drivers/usb/serial/oti6858.ko] undefined!
ERROR: "init_timer_key" [drivers/usb/serial/oti6858.ko] undefined!
ERROR: "delayed_work_timer_fn" [drivers/usb/serial/oti6858.ko] undefined!
ERROR: "lockdep_init_map" [drivers/usb/serial/oti6858.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/usb/serial/oti6858.ko] undefined!
ERROR: "usb_control_msg" [drivers/usb/serial/oti6858.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/serial/oti6858.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/serial/oti6858.ko] undefined!
ERROR: "usb_clear_halt" [drivers/usb/serial/oti6858.ko] undefined!
ERROR: "kfree" [drivers/usb/serial/oti6858.ko] undefined!
ERROR: "usb_kill_urb" [drivers/usb/serial/oti6858.ko] undefined!
ERROR: "cancel_delayed_work_sync" [drivers/usb/serial/oti6858.ko] undefined!
ERROR: "__kfifo_in" [drivers/usb/serial/oti6858.ko] undefined!
ERROR: "tty_termios_baud_rate" [drivers/usb/serial/oti6858.ko] undefined!
ERROR: "tty_encode_baud_rate" [drivers/usb/serial/oti6858.ko] undefined!
ERROR: "__wake_up" [drivers/usb/serial/oti6858.ko] undefined!
ERROR: "queue_delayed_work_on" [drivers/usb/serial/oti6858.ko] undefined!
ERROR: "system_wq" [drivers/usb/serial/oti6858.ko] undefined!
ERROR: "tty_flip_buffer_push" [drivers/usb/serial/oti6858.ko] undefined!
ERROR: "tty_insert_flip_string_fixed_flag" [drivers/usb/serial/oti6858.ko] undefined!
ERROR: "_dev_err" [drivers/usb/serial/oti6858.ko] undefined!
ERROR: "usb_submit_urb" [drivers/usb/serial/oti6858.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/serial/oti6858.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/usb/serial/oti6858.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/usb/serial/oti6858.ko] undefined!
ERROR: "usb_wwan_dtr_rts" [drivers/usb/serial/option.ko] undefined!
ERROR: "usb_wwan_tiocmset" [drivers/usb/serial/option.ko] undefined!
ERROR: "usb_wwan_tiocmget" [drivers/usb/serial/option.ko] undefined!
ERROR: "usb_wwan_chars_in_buffer" [drivers/usb/serial/option.ko] undefined!
ERROR: "usb_wwan_set_serial_info" [drivers/usb/serial/option.ko] undefined!
ERROR: "usb_wwan_get_serial_info" [drivers/usb/serial/option.ko] undefined!
ERROR: "usb_wwan_write_room" [drivers/usb/serial/option.ko] undefined!
ERROR: "usb_wwan_write" [drivers/usb/serial/option.ko] undefined!
ERROR: "usb_wwan_close" [drivers/usb/serial/option.ko] undefined!
ERROR: "usb_wwan_open" [drivers/usb/serial/option.ko] undefined!
ERROR: "usb_wwan_resume" [drivers/usb/serial/option.ko] undefined!
ERROR: "usb_wwan_suspend" [drivers/usb/serial/option.ko] undefined!
ERROR: "usb_wwan_port_remove" [drivers/usb/serial/option.ko] undefined!
ERROR: "usb_wwan_port_probe" [drivers/usb/serial/option.ko] undefined!
ERROR: "usb_serial_deregister_drivers" [drivers/usb/serial/option.ko] undefined!
ERROR: "usb_serial_register_drivers" [drivers/usb/serial/option.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/usb/serial/option.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/serial/option.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/serial/option.ko] undefined!
ERROR: "kfree" [drivers/usb/serial/option.ko] undefined!
ERROR: "tty_port_tty_hangup" [drivers/usb/serial/option.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/serial/option.ko] undefined!
ERROR: "usb_submit_urb" [drivers/usb/serial/option.ko] undefined!
ERROR: "ktime_get_mono_fast_ns" [drivers/usb/serial/option.ko] undefined!
ERROR: "usb_serial_generic_unthrottle" [drivers/usb/serial/opticon.ko] undefined!
ERROR: "usb_serial_generic_throttle" [drivers/usb/serial/opticon.ko] undefined!
ERROR: "usb_serial_deregister_drivers" [drivers/usb/serial/opticon.ko] undefined!
ERROR: "usb_serial_register_drivers" [drivers/usb/serial/opticon.ko] undefined!
ERROR: "usb_unanchor_urb" [drivers/usb/serial/opticon.ko] undefined!
ERROR: "_dev_err" [drivers/usb/serial/opticon.ko] undefined!
ERROR: "usb_free_urb" [drivers/usb/serial/opticon.ko] undefined!
ERROR: "usb_submit_urb" [drivers/usb/serial/opticon.ko] undefined!
ERROR: "usb_anchor_urb" [drivers/usb/serial/opticon.ko] undefined!
ERROR: "usb_alloc_urb" [drivers/usb/serial/opticon.ko] undefined!
ERROR: "__kmalloc" [drivers/usb/serial/opticon.ko] undefined!
ERROR: "tty_flip_buffer_push" [drivers/usb/serial/opticon.ko] undefined!
ERROR: "tty_insert_flip_string_fixed_flag" [drivers/usb/serial/opticon.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/usb/serial/opticon.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/usb/serial/opticon.ko] undefined!
ERROR: "usb_serial_generic_open" [drivers/usb/serial/opticon.ko] undefined!
ERROR: "usb_clear_halt" [drivers/usb/serial/opticon.ko] undefined!
ERROR: "usb_serial_generic_close" [drivers/usb/serial/opticon.ko] undefined!
ERROR: "usb_kill_anchored_urbs" [drivers/usb/serial/opticon.ko] undefined!
ERROR: "usb_serial_port_softint" [drivers/usb/serial/opticon.ko] undefined!
ERROR: "usb_control_msg" [drivers/usb/serial/opticon.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/serial/opticon.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/serial/opticon.ko] undefined!
ERROR: "kfree" [drivers/usb/serial/opticon.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/serial/opticon.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/usb/serial/opticon.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/usb/serial/opticon.ko] undefined!
ERROR: "usb_serial_deregister_drivers" [drivers/usb/serial/navman.ko] undefined!
ERROR: "usb_serial_register_drivers" [drivers/usb/serial/navman.ko] undefined!
ERROR: "tty_flip_buffer_push" [drivers/usb/serial/navman.ko] undefined!
ERROR: "tty_insert_flip_string_fixed_flag" [drivers/usb/serial/navman.ko] undefined!
ERROR: "usb_kill_urb" [drivers/usb/serial/navman.ko] undefined!
ERROR: "_dev_err" [drivers/usb/serial/navman.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/serial/navman.ko] undefined!
ERROR: "usb_submit_urb" [drivers/usb/serial/navman.ko] undefined!
ERROR: "usb_serial_generic_get_icount" [drivers/usb/serial/mxuport.ko] undefined!
ERROR: "usb_serial_generic_tiocmiwait" [drivers/usb/serial/mxuport.ko] undefined!
ERROR: "usb_serial_deregister_drivers" [drivers/usb/serial/mxuport.ko] undefined!
ERROR: "usb_serial_register_drivers" [drivers/usb/serial/mxuport.ko] undefined!
ERROR: "__wake_up" [drivers/usb/serial/mxuport.ko] undefined!
ERROR: "tty_flip_buffer_push" [drivers/usb/serial/mxuport.ko] undefined!
ERROR: "tty_insert_flip_string_fixed_flag" [drivers/usb/serial/mxuport.ko] undefined!
ERROR: "__tty_insert_flip_char" [drivers/usb/serial/mxuport.ko] undefined!
ERROR: "usb_serial_handle_sysrq_char" [drivers/usb/serial/mxuport.ko] undefined!
ERROR: "_dev_info" [drivers/usb/serial/mxuport.ko] undefined!
ERROR: "msleep" [drivers/usb/serial/mxuport.ko] undefined!
ERROR: "release_firmware" [drivers/usb/serial/mxuport.ko] undefined!
ERROR: "usleep_range" [drivers/usb/serial/mxuport.ko] undefined!
ERROR: "request_firmware" [drivers/usb/serial/mxuport.ko] undefined!
ERROR: "snprintf" [drivers/usb/serial/mxuport.ko] undefined!
ERROR: "usb_serial_generic_close" [drivers/usb/serial/mxuport.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/usb/serial/mxuport.ko] undefined!
ERROR: "__mutex_init" [drivers/usb/serial/mxuport.ko] undefined!
ERROR: "devm_kmalloc" [drivers/usb/serial/mxuport.ko] undefined!
ERROR: "usb_serial_generic_write_start" [drivers/usb/serial/mxuport.ko] undefined!
ERROR: "usb_serial_generic_submit_read_urbs" [drivers/usb/serial/mxuport.ko] undefined!
ERROR: "tty_termios_baud_rate" [drivers/usb/serial/mxuport.ko] undefined!
ERROR: "kfree" [drivers/usb/serial/mxuport.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/serial/mxuport.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/serial/mxuport.ko] undefined!
ERROR: "tty_termios_hw_change" [drivers/usb/serial/mxuport.ko] undefined!
ERROR: "_dev_err" [drivers/usb/serial/mxuport.ko] undefined!
ERROR: "usb_control_msg" [drivers/usb/serial/mxuport.ko] undefined!
ERROR: "mutex_unlock" [drivers/usb/serial/mxuport.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/usb/serial/mxuport.ko] undefined!
ERROR: "_dev_warn" [drivers/usb/serial/mxuport.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/serial/mxuport.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/usb/serial/mxuport.ko] undefined!
ERROR: "__kfifo_out" [drivers/usb/serial/mxuport.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/usb/serial/mxuport.ko] undefined!
ERROR: "usb_serial_deregister_drivers" [drivers/usb/serial/mos7720.ko] undefined!
ERROR: "usb_serial_register_drivers" [drivers/usb/serial/mos7720.ko] undefined!
ERROR: "_copy_to_user" [drivers/usb/serial/mos7720.ko] undefined!
ERROR: "tty_encode_baud_rate" [drivers/usb/serial/mos7720.ko] undefined!
ERROR: "tty_termios_baud_rate" [drivers/usb/serial/mos7720.ko] undefined!
ERROR: "usb_alloc_urb" [drivers/usb/serial/mos7720.ko] undefined!
ERROR: "usb_clear_halt" [drivers/usb/serial/mos7720.ko] undefined!
ERROR: "usb_free_urb" [drivers/usb/serial/mos7720.ko] undefined!
ERROR: "usb_kill_urb" [drivers/usb/serial/mos7720.ko] undefined!
ERROR: "tty_port_tty_wakeup" [drivers/usb/serial/mos7720.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/serial/mos7720.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/serial/mos7720.ko] undefined!
ERROR: "kfree" [drivers/usb/serial/mos7720.ko] undefined!
ERROR: "usb_control_msg" [drivers/usb/serial/mos7720.ko] undefined!
ERROR: "_dev_err" [drivers/usb/serial/mos7720.ko] undefined!
ERROR: "tty_flip_buffer_push" [drivers/usb/serial/mos7720.ko] undefined!
ERROR: "tty_insert_flip_string_fixed_flag" [drivers/usb/serial/mos7720.ko] undefined!
ERROR: "usb_submit_urb" [drivers/usb/serial/mos7720.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/serial/mos7720.ko] undefined!
ERROR: "usb_serial_deregister_drivers" [drivers/usb/serial/metro-usb.ko] undefined!
ERROR: "usb_serial_register_drivers" [drivers/usb/serial/metro-usb.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/usb/serial/metro-usb.ko] undefined!
ERROR: "usb_clear_halt" [drivers/usb/serial/metro-usb.ko] undefined!
ERROR: "usb_kill_urb" [drivers/usb/serial/metro-usb.ko] undefined!
ERROR: "usb_interrupt_msg" [drivers/usb/serial/metro-usb.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/serial/metro-usb.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/serial/metro-usb.ko] undefined!
ERROR: "kfree" [drivers/usb/serial/metro-usb.ko] undefined!
ERROR: "usb_control_msg" [drivers/usb/serial/metro-usb.ko] undefined!
ERROR: "tty_flip_buffer_push" [drivers/usb/serial/metro-usb.ko] undefined!
ERROR: "tty_insert_flip_string_fixed_flag" [drivers/usb/serial/metro-usb.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/serial/metro-usb.ko] undefined!
ERROR: "_dev_err" [drivers/usb/serial/metro-usb.ko] undefined!
ERROR: "usb_submit_urb" [drivers/usb/serial/metro-usb.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/usb/serial/metro-usb.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/usb/serial/metro-usb.ko] undefined!
ERROR: "usb_serial_generic_get_icount" [drivers/usb/serial/mct_u232.ko] undefined!
ERROR: "usb_serial_generic_tiocmiwait" [drivers/usb/serial/mct_u232.ko] undefined!
ERROR: "usb_serial_deregister_drivers" [drivers/usb/serial/mct_u232.ko] undefined!
ERROR: "usb_serial_register_drivers" [drivers/usb/serial/mct_u232.ko] undefined!
ERROR: "tty_flip_buffer_push" [drivers/usb/serial/mct_u232.ko] undefined!
ERROR: "tty_insert_flip_string_fixed_flag" [drivers/usb/serial/mct_u232.ko] undefined!
ERROR: "__wake_up" [drivers/usb/serial/mct_u232.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/usb/serial/mct_u232.ko] undefined!
ERROR: "usb_serial_generic_close" [drivers/usb/serial/mct_u232.ko] undefined!
ERROR: "usb_kill_urb" [drivers/usb/serial/mct_u232.ko] undefined!
ERROR: "usb_submit_urb" [drivers/usb/serial/mct_u232.ko] undefined!
ERROR: "tty_encode_baud_rate" [drivers/usb/serial/mct_u232.ko] undefined!
ERROR: "tty_termios_baud_rate" [drivers/usb/serial/mct_u232.ko] undefined!
ERROR: "_raw_spin_unlock_irq" [drivers/usb/serial/mct_u232.ko] undefined!
ERROR: "_raw_spin_lock_irq" [drivers/usb/serial/mct_u232.ko] undefined!
ERROR: "_dev_err" [drivers/usb/serial/mct_u232.ko] undefined!
ERROR: "usb_control_msg" [drivers/usb/serial/mct_u232.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/serial/mct_u232.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/serial/mct_u232.ko] undefined!
ERROR: "kfree" [drivers/usb/serial/mct_u232.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/serial/mct_u232.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/usb/serial/mct_u232.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/usb/serial/mct_u232.ko] undefined!
ERROR: "usb_serial_generic_unthrottle" [drivers/usb/serial/kl5kusb105.ko] undefined!
ERROR: "usb_serial_generic_throttle" [drivers/usb/serial/kl5kusb105.ko] undefined!
ERROR: "usb_serial_deregister_drivers" [drivers/usb/serial/kl5kusb105.ko] undefined!
ERROR: "usb_serial_register_drivers" [drivers/usb/serial/kl5kusb105.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/usb/serial/kl5kusb105.ko] undefined!
ERROR: "usb_serial_generic_open" [drivers/usb/serial/kl5kusb105.ko] undefined!
ERROR: "usb_serial_generic_close" [drivers/usb/serial/kl5kusb105.ko] undefined!
ERROR: "tty_encode_baud_rate" [drivers/usb/serial/kl5kusb105.ko] undefined!
ERROR: "tty_termios_baud_rate" [drivers/usb/serial/kl5kusb105.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/serial/kl5kusb105.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/serial/kl5kusb105.ko] undefined!
ERROR: "kfree" [drivers/usb/serial/kl5kusb105.ko] undefined!
ERROR: "_dev_err" [drivers/usb/serial/kl5kusb105.ko] undefined!
ERROR: "usb_control_msg" [drivers/usb/serial/kl5kusb105.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/serial/kl5kusb105.ko] undefined!
ERROR: "tty_flip_buffer_push" [drivers/usb/serial/kl5kusb105.ko] undefined!
ERROR: "tty_insert_flip_string_fixed_flag" [drivers/usb/serial/kl5kusb105.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/usb/serial/kl5kusb105.ko] undefined!
ERROR: "__kfifo_out" [drivers/usb/serial/kl5kusb105.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/usb/serial/kl5kusb105.ko] undefined!
ERROR: "usb_serial_deregister_drivers" [drivers/usb/serial/keyspan_pda.ko] undefined!
ERROR: "usb_serial_register_drivers" [drivers/usb/serial/keyspan_pda.ko] undefined!
ERROR: "tty_port_tty_wakeup" [drivers/usb/serial/keyspan_pda.ko] undefined!
ERROR: "lockdep_init_map" [drivers/usb/serial/keyspan_pda.ko] undefined!
ERROR: "__preempt_count" [drivers/usb/serial/keyspan_pda.ko] undefined!
ERROR: "_raw_spin_unlock_bh" [drivers/usb/serial/keyspan_pda.ko] undefined!
ERROR: "_raw_spin_lock_bh" [drivers/usb/serial/keyspan_pda.ko] undefined!
ERROR: "tty_encode_baud_rate" [drivers/usb/serial/keyspan_pda.ko] undefined!
ERROR: "tty_termios_copy_hw" [drivers/usb/serial/keyspan_pda.ko] undefined!
ERROR: "tty_termios_baud_rate" [drivers/usb/serial/keyspan_pda.ko] undefined!
ERROR: "usb_kill_urb" [drivers/usb/serial/keyspan_pda.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/serial/keyspan_pda.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/serial/keyspan_pda.ko] undefined!
ERROR: "kfree" [drivers/usb/serial/keyspan_pda.ko] undefined!
ERROR: "usb_control_msg" [drivers/usb/serial/keyspan_pda.ko] undefined!
ERROR: "_dev_warn" [drivers/usb/serial/keyspan_pda.ko] undefined!
ERROR: "tty_flip_buffer_push" [drivers/usb/serial/keyspan_pda.ko] undefined!
ERROR: "tty_insert_flip_string_fixed_flag" [drivers/usb/serial/keyspan_pda.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/serial/keyspan_pda.ko] undefined!
ERROR: "usb_submit_urb" [drivers/usb/serial/keyspan_pda.ko] undefined!
ERROR: "queue_work_on" [drivers/usb/serial/keyspan_pda.ko] undefined!
ERROR: "system_wq" [drivers/usb/serial/keyspan_pda.ko] undefined!
ERROR: "_dev_err" [drivers/usb/serial/keyspan_pda.ko] undefined!
ERROR: "ezusb_fx1_ihex_firmware_download" [drivers/usb/serial/keyspan_pda.ko] undefined!
ERROR: "ezusb_fx1_set_reset" [drivers/usb/serial/keyspan_pda.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/usb/serial/keyspan_pda.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/usb/serial/keyspan_pda.ko] undefined!
ERROR: "param_ops_bool" [drivers/usb/serial/iuu_phoenix.ko] undefined!
ERROR: "param_ops_int" [drivers/usb/serial/iuu_phoenix.ko] undefined!
ERROR: "usb_serial_deregister_drivers" [drivers/usb/serial/iuu_phoenix.ko] undefined!
ERROR: "usb_serial_register_drivers" [drivers/usb/serial/iuu_phoenix.ko] undefined!
ERROR: "usb_serial_port_softint" [drivers/usb/serial/iuu_phoenix.ko] undefined!
ERROR: "usb_control_msg" [drivers/usb/serial/iuu_phoenix.ko] undefined!
ERROR: "usb_clear_halt" [drivers/usb/serial/iuu_phoenix.ko] undefined!
ERROR: "usb_kill_urb" [drivers/usb/serial/iuu_phoenix.ko] undefined!
ERROR: "get_random_bytes" [drivers/usb/serial/iuu_phoenix.ko] undefined!
ERROR: "tty_flip_buffer_push" [drivers/usb/serial/iuu_phoenix.ko] undefined!
ERROR: "tty_insert_flip_string_fixed_flag" [drivers/usb/serial/iuu_phoenix.ko] undefined!
ERROR: "device_create_file" [drivers/usb/serial/iuu_phoenix.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/usb/serial/iuu_phoenix.ko] undefined!
ERROR: "sprintf" [drivers/usb/serial/iuu_phoenix.ko] undefined!
ERROR: "_dev_err" [drivers/usb/serial/iuu_phoenix.ko] undefined!
ERROR: "_kstrtoul" [drivers/usb/serial/iuu_phoenix.ko] undefined!
ERROR: "device_remove_file" [drivers/usb/serial/iuu_phoenix.ko] undefined!
ERROR: "tty_encode_baud_rate" [drivers/usb/serial/iuu_phoenix.ko] undefined!
ERROR: "tty_termios_copy_hw" [drivers/usb/serial/iuu_phoenix.ko] undefined!
ERROR: "kfree" [drivers/usb/serial/iuu_phoenix.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/serial/iuu_phoenix.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/serial/iuu_phoenix.ko] undefined!
ERROR: "usb_bulk_msg" [drivers/usb/serial/iuu_phoenix.ko] undefined!
ERROR: "usb_submit_urb" [drivers/usb/serial/iuu_phoenix.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/serial/iuu_phoenix.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/usb/serial/iuu_phoenix.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/usb/serial/iuu_phoenix.ko] undefined!
ERROR: "param_ops_int" [drivers/usb/serial/ir-usb.ko] undefined!
ERROR: "usb_serial_deregister_drivers" [drivers/usb/serial/ir-usb.ko] undefined!
ERROR: "usb_serial_register_drivers" [drivers/usb/serial/ir-usb.ko] undefined!
ERROR: "usb_control_msg" [drivers/usb/serial/ir-usb.ko] undefined!
ERROR: "usb_submit_urb" [drivers/usb/serial/ir-usb.ko] undefined!
ERROR: "kfree" [drivers/usb/serial/ir-usb.ko] undefined!
ERROR: "usb_bulk_msg" [drivers/usb/serial/ir-usb.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/serial/ir-usb.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/serial/ir-usb.ko] undefined!
ERROR: "tty_encode_baud_rate" [drivers/usb/serial/ir-usb.ko] undefined!
ERROR: "tty_termios_copy_hw" [drivers/usb/serial/ir-usb.ko] undefined!
ERROR: "tty_termios_baud_rate" [drivers/usb/serial/ir-usb.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/serial/ir-usb.ko] undefined!
ERROR: "_dev_err" [drivers/usb/serial/ir-usb.ko] undefined!
ERROR: "usb_serial_port_softint" [drivers/usb/serial/ir-usb.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/usb/serial/ir-usb.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/usb/serial/ir-usb.ko] undefined!
ERROR: "tty_flip_buffer_push" [drivers/usb/serial/ir-usb.ko] undefined!
ERROR: "tty_insert_flip_string_fixed_flag" [drivers/usb/serial/ir-usb.ko] undefined!
ERROR: "usb_wwan_write" [drivers/usb/serial/ipw.ko] undefined!
ERROR: "usb_wwan_port_remove" [drivers/usb/serial/ipw.ko] undefined!
ERROR: "usb_wwan_port_probe" [drivers/usb/serial/ipw.ko] undefined!
ERROR: "usb_serial_deregister_drivers" [drivers/usb/serial/ipw.ko] undefined!
ERROR: "usb_serial_register_drivers" [drivers/usb/serial/ipw.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/usb/serial/ipw.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/serial/ipw.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/serial/ipw.ko] undefined!
ERROR: "kfree" [drivers/usb/serial/ipw.ko] undefined!
ERROR: "usb_wwan_open" [drivers/usb/serial/ipw.ko] undefined!
ERROR: "usb_clear_halt" [drivers/usb/serial/ipw.ko] undefined!
ERROR: "kmemdup" [drivers/usb/serial/ipw.ko] undefined!
ERROR: "usb_wwan_close" [drivers/usb/serial/ipw.ko] undefined!
ERROR: "_dev_err" [drivers/usb/serial/ipw.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/serial/ipw.ko] undefined!
ERROR: "usb_control_msg" [drivers/usb/serial/ipw.ko] undefined!
ERROR: "param_ops_int" [drivers/usb/serial/ipaq.ko] undefined!
ERROR: "usb_serial_deregister_drivers" [drivers/usb/serial/ipaq.ko] undefined!
ERROR: "usb_serial_register_drivers" [drivers/usb/serial/ipaq.ko] undefined!
ERROR: "usb_reset_configuration" [drivers/usb/serial/ipaq.ko] undefined!
ERROR: "_dev_err" [drivers/usb/serial/ipaq.ko] undefined!
ERROR: "usb_serial_generic_open" [drivers/usb/serial/ipaq.ko] undefined!
ERROR: "usb_control_msg" [drivers/usb/serial/ipaq.ko] undefined!
ERROR: "msleep" [drivers/usb/serial/ipaq.ko] undefined!
ERROR: "usb_serial_deregister_drivers" [drivers/usb/serial/f81534.ko] undefined!
ERROR: "usb_serial_register_drivers" [drivers/usb/serial/f81534.ko] undefined!
ERROR: "usb_serial_handle_break" [drivers/usb/serial/f81534.ko] undefined!
ERROR: "usb_serial_handle_sysrq_char" [drivers/usb/serial/f81534.ko] undefined!
ERROR: "tty_flip_buffer_push" [drivers/usb/serial/f81534.ko] undefined!
ERROR: "__tty_insert_flip_char" [drivers/usb/serial/f81534.ko] undefined!
ERROR: "queue_work_on" [drivers/usb/serial/f81534.ko] undefined!
ERROR: "system_wq" [drivers/usb/serial/f81534.ko] undefined!
ERROR: "tty_kref_put" [drivers/usb/serial/f81534.ko] undefined!
ERROR: "usb_serial_handle_dcd_change" [drivers/usb/serial/f81534.ko] undefined!
ERROR: "tty_port_tty_get" [drivers/usb/serial/f81534.ko] undefined!
ERROR: "__wake_up" [drivers/usb/serial/f81534.ko] undefined!
ERROR: "msleep" [drivers/usb/serial/f81534.ko] undefined!
ERROR: "lockdep_init_map" [drivers/usb/serial/f81534.ko] undefined!
ERROR: "__mutex_init" [drivers/usb/serial/f81534.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/usb/serial/f81534.ko] undefined!
ERROR: "devm_kmalloc" [drivers/usb/serial/f81534.ko] undefined!
ERROR: "flush_work" [drivers/usb/serial/f81534.ko] undefined!
ERROR: "usb_serial_generic_submit_read_urbs" [drivers/usb/serial/f81534.ko] undefined!
ERROR: "usb_kill_urb" [drivers/usb/serial/f81534.ko] undefined!
ERROR: "__kfifo_in" [drivers/usb/serial/f81534.ko] undefined!
ERROR: "tty_encode_baud_rate" [drivers/usb/serial/f81534.ko] undefined!
ERROR: "tty_termios_baud_rate" [drivers/usb/serial/f81534.ko] undefined!
ERROR: "_dev_warn" [drivers/usb/serial/f81534.ko] undefined!
ERROR: "mutex_unlock" [drivers/usb/serial/f81534.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/usb/serial/f81534.ko] undefined!
ERROR: "kfree" [drivers/usb/serial/f81534.ko] undefined!
ERROR: "usb_control_msg" [drivers/usb/serial/f81534.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/serial/f81534.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/serial/f81534.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/serial/f81534.ko] undefined!
ERROR: "_dev_err" [drivers/usb/serial/f81534.ko] undefined!
ERROR: "usb_serial_port_softint" [drivers/usb/serial/f81534.ko] undefined!
ERROR: "usb_submit_urb" [drivers/usb/serial/f81534.ko] undefined!
ERROR: "__kfifo_out" [drivers/usb/serial/f81534.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/usb/serial/f81534.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/usb/serial/f81534.ko] undefined!
ERROR: "usb_serial_generic_tiocmiwait" [drivers/usb/serial/f81232.ko] undefined!
ERROR: "usb_serial_deregister_drivers" [drivers/usb/serial/f81232.ko] undefined!
ERROR: "usb_serial_register_drivers" [drivers/usb/serial/f81232.ko] undefined!
ERROR: "usb_serial_handle_break" [drivers/usb/serial/f81232.ko] undefined!
ERROR: "usb_serial_handle_sysrq_char" [drivers/usb/serial/f81232.ko] undefined!
ERROR: "__tty_insert_flip_char" [drivers/usb/serial/f81232.ko] undefined!
ERROR: "tty_flip_buffer_push" [drivers/usb/serial/f81232.ko] undefined!
ERROR: "queue_work_on" [drivers/usb/serial/f81232.ko] undefined!
ERROR: "system_wq" [drivers/usb/serial/f81232.ko] undefined!
ERROR: "usb_serial_generic_open" [drivers/usb/serial/f81232.ko] undefined!
ERROR: "tty_encode_baud_rate" [drivers/usb/serial/f81232.ko] undefined!
ERROR: "tty_termios_baud_rate" [drivers/usb/serial/f81232.ko] undefined!
ERROR: "tty_termios_hw_change" [drivers/usb/serial/f81232.ko] undefined!
ERROR: "_dev_warn" [drivers/usb/serial/f81232.ko] undefined!
ERROR: "lockdep_init_map" [drivers/usb/serial/f81232.ko] undefined!
ERROR: "__mutex_init" [drivers/usb/serial/f81232.ko] undefined!
ERROR: "usb_serial_generic_resume" [drivers/usb/serial/f81232.ko] undefined!
ERROR: "usb_submit_urb" [drivers/usb/serial/f81232.ko] undefined!
ERROR: "flush_work" [drivers/usb/serial/f81232.ko] undefined!
ERROR: "usb_kill_urb" [drivers/usb/serial/f81232.ko] undefined!
ERROR: "usb_serial_generic_close" [drivers/usb/serial/f81232.ko] undefined!
ERROR: "tty_kref_put" [drivers/usb/serial/f81232.ko] undefined!
ERROR: "usb_serial_handle_dcd_change" [drivers/usb/serial/f81232.ko] undefined!
ERROR: "tty_port_tty_get" [drivers/usb/serial/f81232.ko] undefined!
ERROR: "__wake_up" [drivers/usb/serial/f81232.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/serial/f81232.ko] undefined!
ERROR: "_dev_err" [drivers/usb/serial/f81232.ko] undefined!
ERROR: "usb_control_msg" [drivers/usb/serial/f81232.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/serial/f81232.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/serial/f81232.ko] undefined!
ERROR: "kfree" [drivers/usb/serial/f81232.ko] undefined!
ERROR: "mutex_unlock" [drivers/usb/serial/f81232.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/usb/serial/f81232.ko] undefined!
ERROR: "usb_serial_generic_unthrottle" [drivers/usb/serial/empeg.ko] undefined!
ERROR: "usb_serial_generic_throttle" [drivers/usb/serial/empeg.ko] undefined!
ERROR: "usb_serial_deregister_drivers" [drivers/usb/serial/empeg.ko] undefined!
ERROR: "usb_serial_register_drivers" [drivers/usb/serial/empeg.ko] undefined!
ERROR: "_dev_err" [drivers/usb/serial/empeg.ko] undefined!
ERROR: "usb_reset_configuration" [drivers/usb/serial/empeg.ko] undefined!
ERROR: "tty_encode_baud_rate" [drivers/usb/serial/empeg.ko] undefined!
ERROR: "usb_serial_deregister_drivers" [drivers/usb/serial/usb_debug.ko] undefined!
ERROR: "usb_serial_register_drivers" [drivers/usb/serial/usb_debug.ko] undefined!
ERROR: "usb_serial_generic_write" [drivers/usb/serial/usb_debug.ko] undefined!
ERROR: "usb_serial_handle_break" [drivers/usb/serial/usb_debug.ko] undefined!
ERROR: "usb_serial_generic_process_read_urb" [drivers/usb/serial/usb_debug.ko] undefined!
ERROR: "usb_serial_generic_tiocmiwait" [drivers/usb/serial/cypress_m8.ko] undefined!
ERROR: "param_ops_int" [drivers/usb/serial/cypress_m8.ko] undefined!
ERROR: "param_ops_bool" [drivers/usb/serial/cypress_m8.ko] undefined!
ERROR: "usb_serial_deregister_drivers" [drivers/usb/serial/cypress_m8.ko] undefined!
ERROR: "usb_serial_register_drivers" [drivers/usb/serial/cypress_m8.ko] undefined!
ERROR: "usb_clear_halt" [drivers/usb/serial/cypress_m8.ko] undefined!
ERROR: "tty_termios_baud_rate" [drivers/usb/serial/cypress_m8.ko] undefined!
ERROR: "__kfifo_in" [drivers/usb/serial/cypress_m8.ko] undefined!
ERROR: "__kfifo_out" [drivers/usb/serial/cypress_m8.ko] undefined!
ERROR: "usb_serial_port_softint" [drivers/usb/serial/cypress_m8.ko] undefined!
ERROR: "usb_control_msg" [drivers/usb/serial/cypress_m8.ko] undefined!
ERROR: "usb_reset_configuration" [drivers/usb/serial/cypress_m8.ko] undefined!
ERROR: "__kfifo_alloc" [drivers/usb/serial/cypress_m8.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/usb/serial/cypress_m8.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/serial/cypress_m8.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/serial/cypress_m8.ko] undefined!
ERROR: "kfree" [drivers/usb/serial/cypress_m8.ko] undefined!
ERROR: "__kfifo_free" [drivers/usb/serial/cypress_m8.ko] undefined!
ERROR: "_dev_info" [drivers/usb/serial/cypress_m8.ko] undefined!
ERROR: "usb_kill_urb" [drivers/usb/serial/cypress_m8.ko] undefined!
ERROR: "tty_encode_baud_rate" [drivers/usb/serial/cypress_m8.ko] undefined!
ERROR: "tty_hangup" [drivers/usb/serial/cypress_m8.ko] undefined!
ERROR: "tty_flip_buffer_push" [drivers/usb/serial/cypress_m8.ko] undefined!
ERROR: "tty_insert_flip_string_fixed_flag" [drivers/usb/serial/cypress_m8.ko] undefined!
ERROR: "__wake_up" [drivers/usb/serial/cypress_m8.ko] undefined!
ERROR: "tty_kref_put" [drivers/usb/serial/cypress_m8.ko] undefined!
ERROR: "tty_port_tty_get" [drivers/usb/serial/cypress_m8.ko] undefined!
ERROR: "usb_submit_urb" [drivers/usb/serial/cypress_m8.ko] undefined!
ERROR: "_dev_err" [drivers/usb/serial/cypress_m8.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/serial/cypress_m8.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/usb/serial/cypress_m8.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/usb/serial/cypress_m8.ko] undefined!
ERROR: "_raw_spin_unlock_irq" [drivers/usb/serial/cypress_m8.ko] undefined!
ERROR: "_raw_spin_lock_irq" [drivers/usb/serial/cypress_m8.ko] undefined!
ERROR: "usb_serial_deregister_drivers" [drivers/usb/serial/cyberjack.ko] undefined!
ERROR: "usb_serial_register_drivers" [drivers/usb/serial/cyberjack.ko] undefined!
ERROR: "tty_flip_buffer_push" [drivers/usb/serial/cyberjack.ko] undefined!
ERROR: "tty_insert_flip_string_fixed_flag" [drivers/usb/serial/cyberjack.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/usb/serial/cyberjack.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/serial/cyberjack.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/serial/cyberjack.ko] undefined!
ERROR: "kfree" [drivers/usb/serial/cyberjack.ko] undefined!
ERROR: "usb_clear_halt" [drivers/usb/serial/cyberjack.ko] undefined!
ERROR: "usb_kill_urb" [drivers/usb/serial/cyberjack.ko] undefined!
ERROR: "usb_serial_port_softint" [drivers/usb/serial/cyberjack.ko] undefined!
ERROR: "_dev_err" [drivers/usb/serial/cyberjack.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/serial/cyberjack.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/usb/serial/cyberjack.ko] undefined!
ERROR: "usb_submit_urb" [drivers/usb/serial/cyberjack.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/usb/serial/cyberjack.ko] undefined!
ERROR: "usb_serial_deregister_drivers" [drivers/usb/serial/belkin_sa.ko] undefined!
ERROR: "usb_serial_register_drivers" [drivers/usb/serial/belkin_sa.ko] undefined!
ERROR: "__tty_insert_flip_char" [drivers/usb/serial/belkin_sa.ko] undefined!
ERROR: "tty_flip_buffer_push" [drivers/usb/serial/belkin_sa.ko] undefined!
ERROR: "tty_insert_flip_string_fixed_flag" [drivers/usb/serial/belkin_sa.ko] undefined!
ERROR: "_dev_info" [drivers/usb/serial/belkin_sa.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/usb/serial/belkin_sa.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/serial/belkin_sa.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/serial/belkin_sa.ko] undefined!
ERROR: "kfree" [drivers/usb/serial/belkin_sa.ko] undefined!
ERROR: "usb_serial_generic_open" [drivers/usb/serial/belkin_sa.ko] undefined!
ERROR: "usb_submit_urb" [drivers/usb/serial/belkin_sa.ko] undefined!
ERROR: "usb_kill_urb" [drivers/usb/serial/belkin_sa.ko] undefined!
ERROR: "usb_serial_generic_close" [drivers/usb/serial/belkin_sa.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/serial/belkin_sa.ko] undefined!
ERROR: "tty_encode_baud_rate" [drivers/usb/serial/belkin_sa.ko] undefined!
ERROR: "tty_termios_baud_rate" [drivers/usb/serial/belkin_sa.ko] undefined!
ERROR: "_dev_err" [drivers/usb/serial/belkin_sa.ko] undefined!
ERROR: "usb_control_msg" [drivers/usb/serial/belkin_sa.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/usb/serial/belkin_sa.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/usb/serial/belkin_sa.ko] undefined!
ERROR: "usb_serial_generic_get_icount" [drivers/usb/serial/ark3116.ko] undefined!
ERROR: "usb_serial_generic_tiocmiwait" [drivers/usb/serial/ark3116.ko] undefined!
ERROR: "usb_serial_deregister_drivers" [drivers/usb/serial/ark3116.ko] undefined!
ERROR: "usb_serial_register_drivers" [drivers/usb/serial/ark3116.ko] undefined!
ERROR: "__tty_insert_flip_char" [drivers/usb/serial/ark3116.ko] undefined!
ERROR: "tty_flip_buffer_push" [drivers/usb/serial/ark3116.ko] undefined!
ERROR: "tty_insert_flip_string_fixed_flag" [drivers/usb/serial/ark3116.ko] undefined!
ERROR: "__wake_up" [drivers/usb/serial/ark3116.ko] undefined!
ERROR: "_dev_info" [drivers/usb/serial/ark3116.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/usb/serial/ark3116.ko] undefined!
ERROR: "__mutex_init" [drivers/usb/serial/ark3116.ko] undefined!
ERROR: "mutex_destroy" [drivers/usb/serial/ark3116.ko] undefined!
ERROR: "usb_submit_urb" [drivers/usb/serial/ark3116.ko] undefined!
ERROR: "kfree" [drivers/usb/serial/ark3116.ko] undefined!
ERROR: "usb_serial_generic_open" [drivers/usb/serial/ark3116.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/serial/ark3116.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/serial/ark3116.ko] undefined!
ERROR: "usb_kill_urb" [drivers/usb/serial/ark3116.ko] undefined!
ERROR: "usb_serial_generic_close" [drivers/usb/serial/ark3116.ko] undefined!
ERROR: "_dev_warn" [drivers/usb/serial/ark3116.ko] undefined!
ERROR: "tty_termios_encode_baud_rate" [drivers/usb/serial/ark3116.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/serial/ark3116.ko] undefined!
ERROR: "tty_termios_baud_rate" [drivers/usb/serial/ark3116.ko] undefined!
ERROR: "_dev_err" [drivers/usb/serial/ark3116.ko] undefined!
ERROR: "usb_control_msg" [drivers/usb/serial/ark3116.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/usb/serial/ark3116.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/usb/serial/ark3116.ko] undefined!
ERROR: "mutex_unlock" [drivers/usb/serial/ark3116.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/usb/serial/ark3116.ko] undefined!
ERROR: "usb_serial_generic_unthrottle" [drivers/usb/serial/aircable.ko] undefined!
ERROR: "usb_serial_generic_throttle" [drivers/usb/serial/aircable.ko] undefined!
ERROR: "usb_serial_deregister_drivers" [drivers/usb/serial/aircable.ko] undefined!
ERROR: "usb_serial_register_drivers" [drivers/usb/serial/aircable.ko] undefined!
ERROR: "tty_flip_buffer_push" [drivers/usb/serial/aircable.ko] undefined!
ERROR: "tty_insert_flip_string_fixed_flag" [drivers/usb/serial/aircable.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/serial/aircable.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/usb/serial/aircable.ko] undefined!
ERROR: "__kfifo_out" [drivers/usb/serial/aircable.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/usb/serial/aircable.ko] undefined!
ERROR: "tty_port_tty_get" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "system_wq" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "bus_register" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "__kmalloc" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "driver_register" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "__kfifo_out" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "__kfifo_alloc" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "handle_sysrq" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "seq_puts" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "tty_port_open" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "seq_printf" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "__warn_printk" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "tty_port_hangup" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "cancel_work_sync" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "usb_kill_urb" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "tty_register_driver" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "mutex_unlock" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "usb_autopm_get_interface" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "put_tty_driver" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "sprintf" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "jiffies" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "__might_sleep" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "tty_set_operations" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "_dev_warn" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "__tty_insert_flip_char" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "tty_port_close" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "idr_destroy" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "device_del" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "current_task" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "jiffies_to_msecs" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "usb_deregister" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "__mutex_init" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "printk" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "tty_ldisc_deref" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "tty_port_register_device" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "driver_unregister" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "usb_unpoison_urb" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "usb_poison_urb" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "seq_putc" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "tty_port_init" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "tty_insert_flip_string_fixed_flag" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "tty_port_destroy" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "tty_vhangup" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "tty_ldisc_ref" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "idr_alloc" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "device_add" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "_dev_err" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "bus_unregister" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "__list_add_valid" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "init_wait_entry" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "usb_store_new_id" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "usb_match_id" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "idr_remove" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "tty_port_tty_wakeup" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "tty_unregister_device" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "_dev_info" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "usb_submit_urb" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "tty_std_termios" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "usb_get_dev" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "put_device" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "refcount_warn_saturate" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "usb_put_dev" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "schedule" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "usb_get_intf" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "tty_termios_copy_hw" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "__kfifo_free" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "tty_unregister_driver" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "tty_hangup" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "usb_show_dynids" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "__wake_up" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "tty_standard_install" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "__tty_alloc_driver" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "usb_disabled" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "tty_termios_baud_rate" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "schedule_timeout_interruptible" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "kfree" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "device_initialize" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "usb_match_one_id" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "usb_register_driver" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "lockdep_init_map" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "tty_kref_put" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "find_first_bit" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "finish_wait" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "driver_attach" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "tty_flip_buffer_push" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "__kfifo_in" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "queue_work_on" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "snprintf" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "param_ops_ushort" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "dev_set_name" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "idr_find" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "usb_free_urb" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "usb_autopm_put_interface" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "usb_alloc_urb" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "usb_put_intf" [drivers/usb/serial/usbserial.ko] undefined!
ERROR: "__request_region" [drivers/usb/c67x00/c67x00.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/c67x00/c67x00.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/usb/c67x00/c67x00.ko] undefined!
ERROR: "usb_add_hcd" [drivers/usb/c67x00/c67x00.ko] undefined!
ERROR: "iomem_resource" [drivers/usb/c67x00/c67x00.ko] undefined!
ERROR: "usb_remove_hcd" [drivers/usb/c67x00/c67x00.ko] undefined!
ERROR: "usb_create_hcd" [drivers/usb/c67x00/c67x00.ko] undefined!
ERROR: "__tasklet_hi_schedule" [drivers/usb/c67x00/c67x00.ko] undefined!
ERROR: "__const_udelay" [drivers/usb/c67x00/c67x00.ko] undefined!
ERROR: "mutex_unlock" [drivers/usb/c67x00/c67x00.ko] undefined!
ERROR: "usb_hcd_giveback_urb" [drivers/usb/c67x00/c67x00.ko] undefined!
ERROR: "__platform_driver_register" [drivers/usb/c67x00/c67x00.ko] undefined!
ERROR: "usb_put_hcd" [drivers/usb/c67x00/c67x00.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/usb/c67x00/c67x00.ko] undefined!
ERROR: "_dev_warn" [drivers/usb/c67x00/c67x00.ko] undefined!
ERROR: "usb_hcd_link_urb_to_ep" [drivers/usb/c67x00/c67x00.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/usb/c67x00/c67x00.ko] undefined!
ERROR: "__mutex_init" [drivers/usb/c67x00/c67x00.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/usb/c67x00/c67x00.ko] undefined!
ERROR: "ioremap" [drivers/usb/c67x00/c67x00.ko] undefined!
ERROR: "platform_get_resource" [drivers/usb/c67x00/c67x00.ko] undefined!
ERROR: "tasklet_init" [drivers/usb/c67x00/c67x00.ko] undefined!
ERROR: "request_threaded_irq" [drivers/usb/c67x00/c67x00.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/usb/c67x00/c67x00.ko] undefined!
ERROR: "device_wakeup_enable" [drivers/usb/c67x00/c67x00.ko] undefined!
ERROR: "_dev_err" [drivers/usb/c67x00/c67x00.ko] undefined!
ERROR: "__list_add_valid" [drivers/usb/c67x00/c67x00.ko] undefined!
ERROR: "tasklet_kill" [drivers/usb/c67x00/c67x00.ko] undefined!
ERROR: "usb_hcd_check_unlink_urb" [drivers/usb/c67x00/c67x00.ko] undefined!
ERROR: "_dev_info" [drivers/usb/c67x00/c67x00.ko] undefined!
ERROR: "usb_get_dev" [drivers/usb/c67x00/c67x00.ko] undefined!
ERROR: "usb_put_dev" [drivers/usb/c67x00/c67x00.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/usb/c67x00/c67x00.ko] undefined!
ERROR: "__release_region" [drivers/usb/c67x00/c67x00.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/c67x00/c67x00.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/usb/c67x00/c67x00.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/c67x00/c67x00.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/usb/c67x00/c67x00.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/usb/c67x00/c67x00.ko] undefined!
ERROR: "usb_disabled" [drivers/usb/c67x00/c67x00.ko] undefined!
ERROR: "kfree" [drivers/usb/c67x00/c67x00.ko] undefined!
ERROR: "iounmap" [drivers/usb/c67x00/c67x00.ko] undefined!
ERROR: "complete" [drivers/usb/c67x00/c67x00.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/usb/c67x00/c67x00.ko] undefined!
ERROR: "usb_hcd_unlink_urb_from_ep" [drivers/usb/c67x00/c67x00.ko] undefined!
ERROR: "wait_for_completion_timeout" [drivers/usb/c67x00/c67x00.ko] undefined!
ERROR: "free_irq" [drivers/usb/c67x00/c67x00.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/usb/gadget/udc/udc-xilinx.ko] undefined!
ERROR: "__platform_driver_register" [drivers/usb/gadget/udc/udc-xilinx.ko] undefined!
ERROR: "usb_add_gadget_udc" [drivers/usb/gadget/udc/udc-xilinx.ko] undefined!
ERROR: "snprintf" [drivers/usb/gadget/udc/udc-xilinx.ko] undefined!
ERROR: "usb_ep_set_maxpacket_limit" [drivers/usb/gadget/udc/udc-xilinx.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/usb/gadget/udc/udc-xilinx.ko] undefined!
ERROR: "of_find_property" [drivers/usb/gadget/udc/udc-xilinx.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/usb/gadget/udc/udc-xilinx.ko] undefined!
ERROR: "platform_get_irq" [drivers/usb/gadget/udc/udc-xilinx.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/usb/gadget/udc/udc-xilinx.ko] undefined!
ERROR: "platform_get_resource" [drivers/usb/gadget/udc/udc-xilinx.ko] undefined!
ERROR: "devm_kmalloc" [drivers/usb/gadget/udc/udc-xilinx.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/gadget/udc/udc-xilinx.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/gadget/udc/udc-xilinx.ko] undefined!
ERROR: "usb_gadget_map_request" [drivers/usb/gadget/udc/udc-xilinx.ko] undefined!
ERROR: "__warn_printk" [drivers/usb/gadget/udc/udc-xilinx.ko] undefined!
ERROR: "dev_driver_string" [drivers/usb/gadget/udc/udc-xilinx.ko] undefined!
ERROR: "dma_ops" [drivers/usb/gadget/udc/udc-xilinx.ko] undefined!
ERROR: "__phys_addr" [drivers/usb/gadget/udc/udc-xilinx.ko] undefined!
ERROR: "kfree" [drivers/usb/gadget/udc/udc-xilinx.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/usb/gadget/udc/udc-xilinx.ko] undefined!
ERROR: "__list_add_valid" [drivers/usb/gadget/udc/udc-xilinx.ko] undefined!
ERROR: "__const_udelay" [drivers/usb/gadget/udc/udc-xilinx.ko] undefined!
ERROR: "usb_gadget_unmap_request" [drivers/usb/gadget/udc/udc-xilinx.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/usb/gadget/udc/udc-xilinx.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/usb/gadget/udc/udc-xilinx.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/usb/gadget/udc/udc-xilinx.ko] undefined!
ERROR: "iowrite32be" [drivers/usb/gadget/udc/udc-xilinx.ko] undefined!
ERROR: "ioread32be" [drivers/usb/gadget/udc/udc-xilinx.ko] undefined!
ERROR: "iowrite32" [drivers/usb/gadget/udc/udc-xilinx.ko] undefined!
ERROR: "ioread32" [drivers/usb/gadget/udc/udc-xilinx.ko] undefined!
ERROR: "_dev_err" [drivers/usb/gadget/udc/udc-xilinx.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/gadget/udc/udc-xilinx.ko] undefined!
ERROR: "usb_del_gadget_udc" [drivers/usb/gadget/udc/udc-xilinx.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/usb/gadget/udc/udc-xilinx.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/usb/gadget/udc/udc-xilinx.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/usb/gadget/udc/udc-xilinx.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/usb/gadget/udc/udc-xilinx.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/usb/gadget/udc/udc-xilinx.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/usb/gadget/udc/udc-xilinx.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/usb/gadget/udc/udc-xilinx.ko] undefined!
ERROR: "clk_unprepare" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "usb_gadget_map_request" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "clk_enable" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "clk_disable" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "__x86_indirect_thunk_eax" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "usb_del_gadget_udc" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "usb_gadget_giveback_request" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "__warn_printk" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "__const_udelay" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "dma_free_attrs" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "dma_pool_destroy" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "__platform_driver_register" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "wait_for_completion" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "usb_gadget_unmap_request" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "usb_gadget_udc_reset" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "strncpy" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "_raw_spin_unlock_irq" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "dma_direct_map_page" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "dma_alloc_attrs" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "mem_section" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "destroy_workqueue" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "platform_get_resource" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "dma_pool_free" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "_dev_err" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "__list_add_valid" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "flush_workqueue" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "_dev_info" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "devm_usb_get_phy" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "_raw_spin_lock_irq" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "clk_prepare" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "usb_ep_set_maxpacket_limit" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "dev_driver_string" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "dma_pool_alloc" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "devm_clk_get" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "__phys_addr" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "platform_get_resource_byname" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "usb_add_gadget_udc_release" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "kfree" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "devm_ioremap" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "lockdep_init_map" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "queue_work_on" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "complete" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "snprintf" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "devm_kmalloc" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "dma_pool_create" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "alloc_workqueue" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "dma_ops" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "is_vmalloc_addr" [drivers/usb/gadget/udc/mv_udc.ko] undefined!
ERROR: "param_ops_bool" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "single_release" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "seq_read" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "seq_lseek" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "__platform_driver_register" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "usb_gadget_set_state" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "_dev_info" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "dev_fwnode" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "usb_of_get_companion_dev" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "debugfs_create_file" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "debugfs_create_dir" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "usb_debug_root" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "usb_role_switch_register" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "device_property_present" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "device_create_file" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "usb_add_gadget_udc" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "devm_phy_optional_get" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "dma_alloc_attrs" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "devm_extcon_dev_register" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "devm_extcon_dev_allocate" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "lockdep_init_map" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "usb_ep_set_maxpacket_limit" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "snprintf" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "devm_platform_ioremap_resource" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "devm_kmalloc" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "platform_get_irq" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "soc_device_match" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "__list_add_valid" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "usb_gadget_unmap_request" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "usb_gadget_map_request" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "strncmp" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "_copy_from_user" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "seq_printf" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "single_open" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "ioread32_rep" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "iowrite32_rep" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "__const_udelay" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "usb_gadget_giveback_request" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "extcon_set_state_sync" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "_dev_err" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "device_release_driver" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "device_attach" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "usb_role_switch_set_role" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "usb_del_gadget_udc" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "usb_role_switch_unregister" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "device_remove_file" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "debugfs_remove_recursive" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "kfree" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "dma_free_attrs" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "sprintf" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "sysfs_streq" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "__pm_runtime_idle" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "phy_exit" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "phy_init" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "queue_work_on" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "system_wq" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "iowrite32" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "ioread32" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/usb/gadget/udc/renesas_usb3.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "__platform_driver_probe" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "usb_ep_clear_halt" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "usb_gadget_udc_reset" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "ioread32_rep" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "ioread16_rep" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "ioread32" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "usb_gadget_unmap_request" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "usb_gadget_giveback_request" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "usb_gadget_map_request" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "iowrite32_rep" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "iowrite16_rep" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "iowrite8" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "mod_timer" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "jiffies" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "_dev_info" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "clk_enable" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "clk_prepare" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "devm_clk_get" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "snprintf" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "usb_add_gadget_udc" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "__list_add_valid" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "usb_ep_set_maxpacket_limit" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "platform_get_resource_byname" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "init_timer_key" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "devm_kmalloc" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "platform_get_resource" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "devm_platform_ioremap_resource" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "printk" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "__const_udelay" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "iowrite16" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "iowrite32" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "clk_unprepare" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "clk_disable" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "del_timer" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "usb_del_gadget_udc" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "kfree" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "usb_ep_set_halt" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "_dev_err" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "ioread16" [drivers/usb/gadget/udc/r8a66597-udc.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/usb/gadget/udc/goku_udc.ko] undefined!
ERROR: "__pci_register_driver" [drivers/usb/gadget/udc/goku_udc.ko] undefined!
ERROR: "usb_add_gadget_udc_release" [drivers/usb/gadget/udc/goku_udc.ko] undefined!
ERROR: "proc_create_single_data" [drivers/usb/gadget/udc/goku_udc.ko] undefined!
ERROR: "pci_set_master" [drivers/usb/gadget/udc/goku_udc.ko] undefined!
ERROR: "request_threaded_irq" [drivers/usb/gadget/udc/goku_udc.ko] undefined!
ERROR: "ioremap" [drivers/usb/gadget/udc/goku_udc.ko] undefined!
ERROR: "__request_region" [drivers/usb/gadget/udc/goku_udc.ko] undefined!
ERROR: "pci_enable_device" [drivers/usb/gadget/udc/goku_udc.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/usb/gadget/udc/goku_udc.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/gadget/udc/goku_udc.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/gadget/udc/goku_udc.ko] undefined!
ERROR: "usb_gadget_map_request" [drivers/usb/gadget/udc/goku_udc.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/usb/gadget/udc/goku_udc.ko] undefined!
ERROR: "__list_add_valid" [drivers/usb/gadget/udc/goku_udc.ko] undefined!
ERROR: "usb_ep_set_maxpacket_limit" [drivers/usb/gadget/udc/goku_udc.ko] undefined!
ERROR: "usb_gadget_ep_match_desc" [drivers/usb/gadget/udc/goku_udc.ko] undefined!
ERROR: "usb_gadget_unmap_request" [drivers/usb/gadget/udc/goku_udc.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/usb/gadget/udc/goku_udc.ko] undefined!
ERROR: "usb_gadget_giveback_request" [drivers/usb/gadget/udc/goku_udc.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/usb/gadget/udc/goku_udc.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/usb/gadget/udc/goku_udc.ko] undefined!
ERROR: "seq_puts" [drivers/usb/gadget/udc/goku_udc.ko] undefined!
ERROR: "trace_hardirqs_on" [drivers/usb/gadget/udc/goku_udc.ko] undefined!
ERROR: "trace_hardirqs_off" [drivers/usb/gadget/udc/goku_udc.ko] undefined!
ERROR: "seq_printf" [drivers/usb/gadget/udc/goku_udc.ko] undefined!
ERROR: "kfree" [drivers/usb/gadget/udc/goku_udc.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/usb/gadget/udc/goku_udc.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/usb/gadget/udc/goku_udc.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/usb/gadget/udc/goku_udc.ko] undefined!
ERROR: "printk" [drivers/usb/gadget/udc/goku_udc.ko] undefined!
ERROR: "free_irq" [drivers/usb/gadget/udc/goku_udc.ko] undefined!
ERROR: "pci_disable_device" [drivers/usb/gadget/udc/goku_udc.ko] undefined!
ERROR: "__release_region" [drivers/usb/gadget/udc/goku_udc.ko] undefined!
ERROR: "iomem_resource" [drivers/usb/gadget/udc/goku_udc.ko] undefined!
ERROR: "iounmap" [drivers/usb/gadget/udc/goku_udc.ko] undefined!
ERROR: "__const_udelay" [drivers/usb/gadget/udc/goku_udc.ko] undefined!
ERROR: "remove_proc_entry" [drivers/usb/gadget/udc/goku_udc.ko] undefined!
ERROR: "usb_del_gadget_udc" [drivers/usb/gadget/udc/goku_udc.ko] undefined!
ERROR: "param_ops_bool" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "param_ops_uint" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "platform_device_unregister" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "platform_device_del" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "platform_device_add" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "__platform_driver_register" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "platform_device_add_data" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "platform_device_put" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "platform_device_alloc" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "printk" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "usb_disabled" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "usb_put_dev" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "usb_hcd_giveback_urb" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "usb_hcd_unlink_urb_from_ep" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "sg_miter_stop" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "sg_miter_next" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "sg_miter_start" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "init_timer_key" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "usb_hcd_is_primary_hcd" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "usb_get_dev" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "usb_hcd_link_urb_to_ep" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "usb_hcd_check_unlink_urb" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "usb_hcd_resume_root_hub" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "usb_create_shared_hcd" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "usb_add_hcd" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "usb_create_hcd" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "_dev_info" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "usb_put_hcd" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "usb_remove_hcd" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "_dev_warn" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "device_create_file" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "usb_add_gadget_udc" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "usb_ep_set_maxpacket_limit" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "__list_add_valid" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "usb_ep_type_string" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "strstr" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "trace_hardirqs_on" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "trace_hardirqs_off" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "ktime_get_ts64" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "mod_timer" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "jiffies" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "_dev_err" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "usleep_range" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "scnprintf" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "usb_del_gadget_udc" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "device_remove_file" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "_raw_spin_unlock_irq" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "_raw_spin_lock_irq" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "usb_gadget_udc_reset" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "usb_gadget_giveback_request" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "usb_hcd_poll_rh_status" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "kfree" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/usb/gadget/udc/dummy_hcd.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/misc/sisusbvga/sisusbvga.ko] undefined!
ERROR: "__might_fault" [drivers/usb/misc/sisusbvga/sisusbvga.ko] undefined!
ERROR: "usb_kill_urb" [drivers/usb/misc/sisusbvga/sisusbvga.ko] undefined!
ERROR: "usb_deregister_dev" [drivers/usb/misc/sisusbvga/sisusbvga.ko] undefined!
ERROR: "__get_user_4" [drivers/usb/misc/sisusbvga/sisusbvga.ko] undefined!
ERROR: "mutex_unlock" [drivers/usb/misc/sisusbvga/sisusbvga.ko] undefined!
ERROR: "__get_user_1" [drivers/usb/misc/sisusbvga/sisusbvga.ko] undefined!
ERROR: "__might_sleep" [drivers/usb/misc/sisusbvga/sisusbvga.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/usb/misc/sisusbvga/sisusbvga.ko] undefined!
ERROR: "_copy_to_user" [drivers/usb/misc/sisusbvga/sisusbvga.ko] undefined!
ERROR: "usb_deregister" [drivers/usb/misc/sisusbvga/sisusbvga.ko] undefined!
ERROR: "__mutex_init" [drivers/usb/misc/sisusbvga/sisusbvga.ko] undefined!
ERROR: "no_seek_end_llseek" [drivers/usb/misc/sisusbvga/sisusbvga.ko] undefined!
ERROR: "usb_register_dev" [drivers/usb/misc/sisusbvga/sisusbvga.ko] undefined!
ERROR: "__put_user_1" [drivers/usb/misc/sisusbvga/sisusbvga.ko] undefined!
ERROR: "_dev_err" [drivers/usb/misc/sisusbvga/sisusbvga.ko] undefined!
ERROR: "init_wait_entry" [drivers/usb/misc/sisusbvga/sisusbvga.ko] undefined!
ERROR: "_dev_info" [drivers/usb/misc/sisusbvga/sisusbvga.ko] undefined!
ERROR: "usb_submit_urb" [drivers/usb/misc/sisusbvga/sisusbvga.ko] undefined!
ERROR: "__put_user_4" [drivers/usb/misc/sisusbvga/sisusbvga.ko] undefined!
ERROR: "usb_get_dev" [drivers/usb/misc/sisusbvga/sisusbvga.ko] undefined!
ERROR: "refcount_warn_saturate" [drivers/usb/misc/sisusbvga/sisusbvga.ko] undefined!
ERROR: "usb_put_dev" [drivers/usb/misc/sisusbvga/sisusbvga.ko] undefined!
ERROR: "schedule_timeout" [drivers/usb/misc/sisusbvga/sisusbvga.ko] undefined!
ERROR: "kmalloc_order_trace" [drivers/usb/misc/sisusbvga/sisusbvga.ko] undefined!
ERROR: "usb_find_interface" [drivers/usb/misc/sisusbvga/sisusbvga.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/misc/sisusbvga/sisusbvga.ko] undefined!
ERROR: "__wake_up" [drivers/usb/misc/sisusbvga/sisusbvga.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/usb/misc/sisusbvga/sisusbvga.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/usb/misc/sisusbvga/sisusbvga.ko] undefined!
ERROR: "kfree" [drivers/usb/misc/sisusbvga/sisusbvga.ko] undefined!
ERROR: "usb_register_driver" [drivers/usb/misc/sisusbvga/sisusbvga.ko] undefined!
ERROR: "__put_user_2" [drivers/usb/misc/sisusbvga/sisusbvga.ko] undefined!
ERROR: "finish_wait" [drivers/usb/misc/sisusbvga/sisusbvga.ko] undefined!
ERROR: "__get_user_2" [drivers/usb/misc/sisusbvga/sisusbvga.ko] undefined!
ERROR: "_copy_from_user" [drivers/usb/misc/sisusbvga/sisusbvga.ko] undefined!
ERROR: "usb_free_urb" [drivers/usb/misc/sisusbvga/sisusbvga.ko] undefined!
ERROR: "usb_alloc_urb" [drivers/usb/misc/sisusbvga/sisusbvga.ko] undefined!
ERROR: "i2c_del_driver" [drivers/usb/misc/usb3503.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/usb/misc/usb3503.ko] undefined!
ERROR: "__platform_driver_register" [drivers/usb/misc/usb3503.ko] undefined!
ERROR: "printk" [drivers/usb/misc/usb3503.ko] undefined!
ERROR: "i2c_register_driver" [drivers/usb/misc/usb3503.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/usb/misc/usb3503.ko] undefined!
ERROR: "devm_kmalloc" [drivers/usb/misc/usb3503.ko] undefined!
ERROR: "of_get_property" [drivers/usb/misc/usb3503.ko] undefined!
ERROR: "clk_enable" [drivers/usb/misc/usb3503.ko] undefined!
ERROR: "clk_prepare" [drivers/usb/misc/usb3503.ko] undefined!
ERROR: "clk_set_rate" [drivers/usb/misc/usb3503.ko] undefined!
ERROR: "devm_clk_get_optional" [drivers/usb/misc/usb3503.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/usb/misc/usb3503.ko] undefined!
ERROR: "gpiod_set_consumer_name" [drivers/usb/misc/usb3503.ko] undefined!
ERROR: "devm_gpiod_get_optional" [drivers/usb/misc/usb3503.ko] undefined!
ERROR: "_dev_info" [drivers/usb/misc/usb3503.ko] undefined!
ERROR: "_dev_err" [drivers/usb/misc/usb3503.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/usb/misc/usb3503.ko] undefined!
ERROR: "regmap_write" [drivers/usb/misc/usb3503.ko] undefined!
ERROR: "usleep_range" [drivers/usb/misc/usb3503.ko] undefined!
ERROR: "gpiod_set_value_cansleep" [drivers/usb/misc/usb3503.ko] undefined!
ERROR: "clk_unprepare" [drivers/usb/misc/usb3503.ko] undefined!
ERROR: "clk_disable" [drivers/usb/misc/usb3503.ko] undefined!
ERROR: "i2c_del_driver" [drivers/usb/misc/usb251xb.ko] undefined!
ERROR: "i2c_register_driver" [drivers/usb/misc/usb251xb.ko] undefined!
ERROR: "gpiod_to_chip" [drivers/usb/misc/usb251xb.ko] undefined!
ERROR: "utf8s_to_utf16s" [drivers/usb/misc/usb251xb.ko] undefined!
ERROR: "strlen" [drivers/usb/misc/usb251xb.ko] undefined!
ERROR: "strlcpy" [drivers/usb/misc/usb251xb.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/usb/misc/usb251xb.ko] undefined!
ERROR: "of_property_read_variable_u16_array" [drivers/usb/misc/usb251xb.ko] undefined!
ERROR: "devm_regulator_get" [drivers/usb/misc/usb251xb.ko] undefined!
ERROR: "devm_gpiod_get_optional" [drivers/usb/misc/usb251xb.ko] undefined!
ERROR: "of_get_property" [drivers/usb/misc/usb251xb.ko] undefined!
ERROR: "of_match_device" [drivers/usb/misc/usb251xb.ko] undefined!
ERROR: "devm_kmalloc" [drivers/usb/misc/usb251xb.ko] undefined!
ERROR: "regulator_enable" [drivers/usb/misc/usb251xb.ko] undefined!
ERROR: "_dev_err" [drivers/usb/misc/usb251xb.ko] undefined!
ERROR: "_dev_info" [drivers/usb/misc/usb251xb.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/misc/usb251xb.ko] undefined!
ERROR: "i2c_smbus_write_i2c_block_data" [drivers/usb/misc/usb251xb.ko] undefined!
ERROR: "usleep_range" [drivers/usb/misc/usb251xb.ko] undefined!
ERROR: "gpiod_set_value_cansleep" [drivers/usb/misc/usb251xb.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/usb/misc/usb251xb.ko] undefined!
ERROR: "device_for_each_child" [drivers/usb/misc/usb251xb.ko] undefined!
ERROR: "i2c_adapter_type" [drivers/usb/misc/usb251xb.ko] undefined!
ERROR: "_dev_warn" [drivers/usb/misc/usb251xb.ko] undefined!
ERROR: "of_prop_next_u32" [drivers/usb/misc/usb251xb.ko] undefined!
ERROR: "of_find_property" [drivers/usb/misc/usb251xb.ko] undefined!
ERROR: "regulator_disable" [drivers/usb/misc/usb251xb.ko] undefined!
ERROR: "default_llseek" [drivers/usb/misc/yurex.ko] undefined!
ERROR: "usb_deregister" [drivers/usb/misc/yurex.ko] undefined!
ERROR: "usb_register_driver" [drivers/usb/misc/yurex.ko] undefined!
ERROR: "usb_poison_urb" [drivers/usb/misc/yurex.ko] undefined!
ERROR: "usb_deregister_dev" [drivers/usb/misc/yurex.ko] undefined!
ERROR: "printk" [drivers/usb/misc/yurex.ko] undefined!
ERROR: "usb_find_interface" [drivers/usb/misc/yurex.ko] undefined!
ERROR: "_dev_info" [drivers/usb/misc/yurex.ko] undefined!
ERROR: "refcount_warn_saturate" [drivers/usb/misc/yurex.ko] undefined!
ERROR: "usb_register_dev" [drivers/usb/misc/yurex.ko] undefined!
ERROR: "usb_alloc_coherent" [drivers/usb/misc/yurex.ko] undefined!
ERROR: "usb_alloc_urb" [drivers/usb/misc/yurex.ko] undefined!
ERROR: "usb_find_common_endpoints" [drivers/usb/misc/yurex.ko] undefined!
ERROR: "usb_get_intf" [drivers/usb/misc/yurex.ko] undefined!
ERROR: "usb_get_dev" [drivers/usb/misc/yurex.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/usb/misc/yurex.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/usb/misc/yurex.ko] undefined!
ERROR: "__mutex_init" [drivers/usb/misc/yurex.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/misc/yurex.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/misc/yurex.ko] undefined!
ERROR: "simple_read_from_buffer" [drivers/usb/misc/yurex.ko] undefined!
ERROR: "snprintf" [drivers/usb/misc/yurex.ko] undefined!
ERROR: "schedule_timeout" [drivers/usb/misc/yurex.ko] undefined!
ERROR: "finish_wait" [drivers/usb/misc/yurex.ko] undefined!
ERROR: "prepare_to_wait" [drivers/usb/misc/yurex.ko] undefined!
ERROR: "simple_strtoull" [drivers/usb/misc/yurex.ko] undefined!
ERROR: "mutex_unlock" [drivers/usb/misc/yurex.ko] undefined!
ERROR: "_copy_from_user" [drivers/usb/misc/yurex.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/usb/misc/yurex.ko] undefined!
ERROR: "autoremove_wake_function" [drivers/usb/misc/yurex.ko] undefined!
ERROR: "current_task" [drivers/usb/misc/yurex.ko] undefined!
ERROR: "kill_fasync" [drivers/usb/misc/yurex.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/usb/misc/yurex.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/usb/misc/yurex.ko] undefined!
ERROR: "__wake_up" [drivers/usb/misc/yurex.ko] undefined!
ERROR: "_dev_err" [drivers/usb/misc/yurex.ko] undefined!
ERROR: "usb_submit_urb" [drivers/usb/misc/yurex.ko] undefined!
ERROR: "fasync_helper" [drivers/usb/misc/yurex.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/misc/yurex.ko] undefined!
ERROR: "usb_put_dev" [drivers/usb/misc/yurex.ko] undefined!
ERROR: "usb_put_intf" [drivers/usb/misc/yurex.ko] undefined!
ERROR: "usb_free_urb" [drivers/usb/misc/yurex.ko] undefined!
ERROR: "usb_free_coherent" [drivers/usb/misc/yurex.ko] undefined!
ERROR: "kfree" [drivers/usb/misc/yurex.ko] undefined!
ERROR: "usb_kill_urb" [drivers/usb/misc/yurex.ko] undefined!
ERROR: "usb_deregister" [drivers/usb/misc/ehset.ko] undefined!
ERROR: "usb_register_driver" [drivers/usb/misc/ehset.ko] undefined!
ERROR: "kfree" [drivers/usb/misc/ehset.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/misc/ehset.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/misc/ehset.ko] undefined!
ERROR: "msleep" [drivers/usb/misc/ehset.ko] undefined!
ERROR: "_dev_err" [drivers/usb/misc/ehset.ko] undefined!
ERROR: "usb_control_msg" [drivers/usb/misc/ehset.ko] undefined!
ERROR: "param_ops_int" [drivers/usb/misc/legousbtower.ko] undefined!
ERROR: "usb_deregister" [drivers/usb/misc/legousbtower.ko] undefined!
ERROR: "usb_register_driver" [drivers/usb/misc/legousbtower.ko] undefined!
ERROR: "usb_register_dev" [drivers/usb/misc/legousbtower.ko] undefined!
ERROR: "usb_alloc_urb" [drivers/usb/misc/legousbtower.ko] undefined!
ERROR: "__kmalloc" [drivers/usb/misc/legousbtower.ko] undefined!
ERROR: "usb_find_common_endpoints_reverse" [drivers/usb/misc/legousbtower.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/usb/misc/legousbtower.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/usb/misc/legousbtower.ko] undefined!
ERROR: "usb_get_dev" [drivers/usb/misc/legousbtower.ko] undefined!
ERROR: "__mutex_init" [drivers/usb/misc/legousbtower.ko] undefined!
ERROR: "usb_kill_urb" [drivers/usb/misc/legousbtower.ko] undefined!
ERROR: "_dev_info" [drivers/usb/misc/legousbtower.ko] undefined!
ERROR: "usb_put_dev" [drivers/usb/misc/legousbtower.ko] undefined!
ERROR: "usb_free_urb" [drivers/usb/misc/legousbtower.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/usb/misc/legousbtower.ko] undefined!
ERROR: "usb_poison_urb" [drivers/usb/misc/legousbtower.ko] undefined!
ERROR: "usb_deregister_dev" [drivers/usb/misc/legousbtower.ko] undefined!
ERROR: "schedule" [drivers/usb/misc/legousbtower.ko] undefined!
ERROR: "_copy_from_user" [drivers/usb/misc/legousbtower.ko] undefined!
ERROR: "kasprintf" [drivers/usb/misc/legousbtower.ko] undefined!
ERROR: "_copy_to_user" [drivers/usb/misc/legousbtower.ko] undefined!
ERROR: "schedule_timeout" [drivers/usb/misc/legousbtower.ko] undefined!
ERROR: "finish_wait" [drivers/usb/misc/legousbtower.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/usb/misc/legousbtower.ko] undefined!
ERROR: "init_wait_entry" [drivers/usb/misc/legousbtower.ko] undefined!
ERROR: "__might_sleep" [drivers/usb/misc/legousbtower.ko] undefined!
ERROR: "__msecs_to_jiffies" [drivers/usb/misc/legousbtower.ko] undefined!
ERROR: "usb_control_msg" [drivers/usb/misc/legousbtower.ko] undefined!
ERROR: "kfree" [drivers/usb/misc/legousbtower.ko] undefined!
ERROR: "mutex_unlock" [drivers/usb/misc/legousbtower.ko] undefined!
ERROR: "mutex_lock_interruptible_nested" [drivers/usb/misc/legousbtower.ko] undefined!
ERROR: "usb_find_interface" [drivers/usb/misc/legousbtower.ko] undefined!
ERROR: "nonseekable_open" [drivers/usb/misc/legousbtower.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/misc/legousbtower.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/misc/legousbtower.ko] undefined!
ERROR: "_dev_err" [drivers/usb/misc/legousbtower.ko] undefined!
ERROR: "printk" [drivers/usb/misc/legousbtower.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/usb/misc/legousbtower.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/usb/misc/legousbtower.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/misc/legousbtower.ko] undefined!
ERROR: "__wake_up" [drivers/usb/misc/legousbtower.ko] undefined!
ERROR: "usb_submit_urb" [drivers/usb/misc/legousbtower.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/usb/misc/legousbtower.ko] undefined!
ERROR: "jiffies" [drivers/usb/misc/legousbtower.ko] undefined!
ERROR: "_raw_spin_unlock_irq" [drivers/usb/misc/legousbtower.ko] undefined!
ERROR: "_raw_spin_lock_irq" [drivers/usb/misc/legousbtower.ko] undefined!
ERROR: "usb_deregister" [drivers/usb/misc/emi26.ko] undefined!
ERROR: "usb_register_driver" [drivers/usb/misc/emi26.ko] undefined!
ERROR: "msleep" [drivers/usb/misc/emi26.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/misc/emi26.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/misc/emi26.ko] undefined!
ERROR: "_dev_info" [drivers/usb/misc/emi26.ko] undefined!
ERROR: "kfree" [drivers/usb/misc/emi26.ko] undefined!
ERROR: "usb_control_msg" [drivers/usb/misc/emi26.ko] undefined!
ERROR: "kmemdup" [drivers/usb/misc/emi26.ko] undefined!
ERROR: "release_firmware" [drivers/usb/misc/emi26.ko] undefined!
ERROR: "_dev_err" [drivers/usb/misc/emi26.ko] undefined!
ERROR: "request_firmware" [drivers/usb/misc/emi26.ko] undefined!
ERROR: "usb_deregister" [drivers/usb/misc/cytherm.ko] undefined!
ERROR: "usb_register_driver" [drivers/usb/misc/cytherm.ko] undefined!
ERROR: "usb_get_dev" [drivers/usb/misc/cytherm.ko] undefined!
ERROR: "_dev_info" [drivers/usb/misc/cytherm.ko] undefined!
ERROR: "usb_put_dev" [drivers/usb/misc/cytherm.ko] undefined!
ERROR: "sprintf" [drivers/usb/misc/cytherm.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/misc/cytherm.ko] undefined!
ERROR: "kfree" [drivers/usb/misc/cytherm.ko] undefined!
ERROR: "usb_control_msg" [drivers/usb/misc/cytherm.ko] undefined!
ERROR: "simple_strtoul" [drivers/usb/misc/cytherm.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/misc/cytherm.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/misc/cytherm.ko] undefined!
ERROR: "usb_deregister" [drivers/usb/misc/cypress_cy7c63.ko] undefined!
ERROR: "usb_register_driver" [drivers/usb/misc/cypress_cy7c63.ko] undefined!
ERROR: "sprintf" [drivers/usb/misc/cypress_cy7c63.ko] undefined!
ERROR: "sscanf" [drivers/usb/misc/cypress_cy7c63.ko] undefined!
ERROR: "usb_get_dev" [drivers/usb/misc/cypress_cy7c63.ko] undefined!
ERROR: "_dev_info" [drivers/usb/misc/cypress_cy7c63.ko] undefined!
ERROR: "usb_put_dev" [drivers/usb/misc/cypress_cy7c63.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/misc/cypress_cy7c63.ko] undefined!
ERROR: "kfree" [drivers/usb/misc/cypress_cy7c63.ko] undefined!
ERROR: "usb_control_msg" [drivers/usb/misc/cypress_cy7c63.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/misc/cypress_cy7c63.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/misc/cypress_cy7c63.ko] undefined!
ERROR: "noop_llseek" [drivers/usb/misc/adutux.ko] undefined!
ERROR: "usb_deregister" [drivers/usb/misc/adutux.ko] undefined!
ERROR: "usb_register_driver" [drivers/usb/misc/adutux.ko] undefined!
ERROR: "_copy_to_user" [drivers/usb/misc/adutux.ko] undefined!
ERROR: "_dev_info" [drivers/usb/misc/adutux.ko] undefined!
ERROR: "usb_register_dev" [drivers/usb/misc/adutux.ko] undefined!
ERROR: "usb_string" [drivers/usb/misc/adutux.ko] undefined!
ERROR: "usb_alloc_urb" [drivers/usb/misc/adutux.ko] undefined!
ERROR: "__kmalloc" [drivers/usb/misc/adutux.ko] undefined!
ERROR: "usb_find_common_endpoints_reverse" [drivers/usb/misc/adutux.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/usb/misc/adutux.ko] undefined!
ERROR: "usb_get_dev" [drivers/usb/misc/adutux.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/usb/misc/adutux.ko] undefined!
ERROR: "__mutex_init" [drivers/usb/misc/adutux.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/misc/adutux.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/misc/adutux.ko] undefined!
ERROR: "finish_wait" [drivers/usb/misc/adutux.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/usb/misc/adutux.ko] undefined!
ERROR: "init_wait_entry" [drivers/usb/misc/adutux.ko] undefined!
ERROR: "usb_kill_urb" [drivers/usb/misc/adutux.ko] undefined!
ERROR: "__might_sleep" [drivers/usb/misc/adutux.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/usb/misc/adutux.ko] undefined!
ERROR: "usb_poison_urb" [drivers/usb/misc/adutux.ko] undefined!
ERROR: "usb_deregister_dev" [drivers/usb/misc/adutux.ko] undefined!
ERROR: "usb_put_dev" [drivers/usb/misc/adutux.ko] undefined!
ERROR: "kfree" [drivers/usb/misc/adutux.ko] undefined!
ERROR: "usb_free_urb" [drivers/usb/misc/adutux.ko] undefined!
ERROR: "_dev_err" [drivers/usb/misc/adutux.ko] undefined!
ERROR: "_copy_from_user" [drivers/usb/misc/adutux.ko] undefined!
ERROR: "remove_wait_queue" [drivers/usb/misc/adutux.ko] undefined!
ERROR: "schedule_timeout" [drivers/usb/misc/adutux.ko] undefined!
ERROR: "add_wait_queue" [drivers/usb/misc/adutux.ko] undefined!
ERROR: "default_wake_function" [drivers/usb/misc/adutux.ko] undefined!
ERROR: "current_task" [drivers/usb/misc/adutux.ko] undefined!
ERROR: "__wake_up" [drivers/usb/misc/adutux.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/usb/misc/adutux.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/usb/misc/adutux.ko] undefined!
ERROR: "printk" [drivers/usb/misc/adutux.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/misc/adutux.ko] undefined!
ERROR: "mutex_unlock" [drivers/usb/misc/adutux.ko] undefined!
ERROR: "usb_submit_urb" [drivers/usb/misc/adutux.ko] undefined!
ERROR: "usb_find_interface" [drivers/usb/misc/adutux.ko] undefined!
ERROR: "mutex_lock_interruptible_nested" [drivers/usb/misc/adutux.ko] undefined!
ERROR: "idr_destroy" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "usb_deregister" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "printk" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "put_tty_driver" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "tty_unregister_driver" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "usb_register_driver" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "tty_register_driver" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "tty_set_operations" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "tty_std_termios" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "__tty_alloc_driver" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "refcount_warn_saturate" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "tty_standard_install" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "idr_find" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "tty_port_register_device" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "usb_driver_claim_interface" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "_dev_info" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "usb_find_common_endpoints" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "_dev_warn" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "__kmalloc" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "device_create_file" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "usb_alloc_urb" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "usb_alloc_coherent" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "__mutex_init" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "lockdep_init_map" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "idr_alloc" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "usb_get_intf" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "tty_port_init" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "usb_ifnum_to_if" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "cdc_parse_cdc_header" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "tty_port_tty_wakeup" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "usb_clear_halt" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "tty_flip_buffer_push" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "tty_insert_flip_string_fixed_flag" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "ktime_get_mono_fast_ns" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "tty_port_open" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "tty_port_close" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "usb_anchor_urb" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "usb_autopm_get_interface_async" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "remove_wait_queue" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "schedule" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "add_wait_queue" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "default_wake_function" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "current_task" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "tty_port_hangup" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "capable" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "tty_termios_baud_rate" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "usb_control_msg" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "usb_autopm_get_interface" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "usb_autopm_put_interface" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "usb_autopm_get_interface_no_resume" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "usb_put_intf" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "idr_remove" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "queue_work_on" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "system_wq" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "sprintf" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "tty_port_put" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "usb_driver_release_interface" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "kfree" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "usb_free_urb" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "tty_unregister_device" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "tty_kref_put" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "tty_vhangup" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "tty_port_tty_get" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "mutex_unlock" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "__wake_up" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "device_remove_file" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "usb_free_coherent" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "cancel_work_sync" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "usb_kill_urb" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "tty_port_tty_hangup" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "usb_get_from_anchor" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "_raw_spin_unlock_irq" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "_raw_spin_lock_irq" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "usb_autopm_put_interface_async" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "_dev_err" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "usb_submit_urb" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/usb/class/cdc-acm.ko] undefined!
ERROR: "param_ops_uint" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "param_ops_int" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "default_llseek" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "debugfs_remove" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "__platform_driver_register" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "usb_debug_root" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "usb_hcds_loaded" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "printk" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "clk_enable" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "clk_prepare" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "device_wakeup_enable" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "usb_add_hcd" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "ioread32" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "iowrite32" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "clk_get" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "usb_create_hcd" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "platform_get_resource" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "usb_disabled" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "dma_alloc_attrs" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "dma_pool_create" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "hrtimer_init" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "__kmalloc" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "usb_hcd_link_urb_to_ep" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "usb_hcd_resume_root_hub" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "usb_hc_died" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "usb_hcd_poll_rh_status" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "usb_calc_bus_time" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "debugfs_remove_recursive" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "device_remove_file" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "hrtimer_cancel" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "dbgp_external_startup" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "dbgp_reset_prep" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "device_create_file" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "debugfs_create_file" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "debugfs_create_dir" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "ktime_get_with_offset" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "up_write" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "usleep_range" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "down_write" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "ehci_cf_port_reset_rwsem" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "mod_timer" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "usb_hcd_check_unlink_urb" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "__warn_printk" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "sg_next" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "__list_add_valid" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "schedule_timeout_uninterruptible" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "find_next_bit" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "find_first_bit" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "strlen" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "snprintf" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "vmalloc" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "simple_read_from_buffer" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "mutex_unlock" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "__mutex_init" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "vfree" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "dma_free_attrs" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "dma_pool_destroy" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "_dev_warn" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "_dev_info" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "kstrtouint" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "dma_pool_alloc" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "kfree" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "dma_pool_free" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "usb_hcd_giveback_urb" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "usb_hcd_unlink_urb_from_ep" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "usb_hub_clear_tt_buffer" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "synchronize_irq" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "scnprintf" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "_raw_spin_unlock_irq" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "_raw_spin_lock_irq" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "__const_udelay" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "hrtimer_start_range_ns" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "ktime_get" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "_dev_err" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "clk_put" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "clk_unprepare" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "clk_disable" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "usb_put_hcd" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "usb_remove_hcd" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "jiffies" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/usb/host/fotg210-hcd.ko] undefined!
ERROR: "usb_hcd_platform_shutdown" [drivers/usb/host/ehci-fsl.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/usb/host/ehci-fsl.ko] undefined!
ERROR: "__platform_driver_register" [drivers/usb/host/ehci-fsl.ko] undefined!
ERROR: "ehci_init_driver" [drivers/usb/host/ehci-fsl.ko] undefined!
ERROR: "printk" [drivers/usb/host/ehci-fsl.ko] undefined!
ERROR: "usb_disabled" [drivers/usb/host/ehci-fsl.ko] undefined!
ERROR: "ehci_setup" [drivers/usb/host/ehci-fsl.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/usb/host/ehci-fsl.ko] undefined!
ERROR: "device_wakeup_enable" [drivers/usb/host/ehci-fsl.ko] undefined!
ERROR: "usb_add_hcd" [drivers/usb/host/ehci-fsl.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/usb/host/ehci-fsl.ko] undefined!
ERROR: "__usb_create_hcd" [drivers/usb/host/ehci-fsl.ko] undefined!
ERROR: "platform_get_resource" [drivers/usb/host/ehci-fsl.ko] undefined!
ERROR: "usb_put_hcd" [drivers/usb/host/ehci-fsl.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/usb/host/ehci-fsl.ko] undefined!
ERROR: "usb_remove_hcd" [drivers/usb/host/ehci-fsl.ko] undefined!
ERROR: "usb_put_phy" [drivers/usb/host/ehci-fsl.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/usb/host/ehci-fsl.ko] undefined!
ERROR: "_dev_warn" [drivers/usb/host/ehci-fsl.ko] undefined!
ERROR: "_dev_err" [drivers/usb/host/ehci-fsl.ko] undefined!
ERROR: "__const_udelay" [drivers/usb/host/ehci-fsl.ko] undefined!
ERROR: "iowrite32be" [drivers/usb/host/ehci-fsl.ko] undefined!
ERROR: "ioread32be" [drivers/usb/host/ehci-fsl.ko] undefined!
ERROR: "ehci_adjust_port_wakeup_flags" [drivers/usb/host/ehci-fsl.ko] undefined!
ERROR: "of_device_is_compatible" [drivers/usb/host/ehci-fsl.ko] undefined!
ERROR: "usb_root_hub_lost_power" [drivers/usb/host/ehci-fsl.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/usb/host/fsl-mph-dr-of.ko] undefined!
ERROR: "__platform_driver_register" [drivers/usb/host/fsl-mph-dr-of.ko] undefined!
ERROR: "printk" [drivers/usb/host/fsl-mph-dr-of.ko] undefined!
ERROR: "_dev_warn" [drivers/usb/host/fsl-mph-dr-of.ko] undefined!
ERROR: "_dev_err" [drivers/usb/host/fsl-mph-dr-of.ko] undefined!
ERROR: "platform_device_put" [drivers/usb/host/fsl-mph-dr-of.ko] undefined!
ERROR: "platform_device_add" [drivers/usb/host/fsl-mph-dr-of.ko] undefined!
ERROR: "platform_device_add_resources" [drivers/usb/host/fsl-mph-dr-of.ko] undefined!
ERROR: "platform_device_add_data" [drivers/usb/host/fsl-mph-dr-of.ko] undefined!
ERROR: "dma_set_mask" [drivers/usb/host/fsl-mph-dr-of.ko] undefined!
ERROR: "platform_device_alloc" [drivers/usb/host/fsl-mph-dr-of.ko] undefined!
ERROR: "of_find_property" [drivers/usb/host/fsl-mph-dr-of.ko] undefined!
ERROR: "strcasecmp" [drivers/usb/host/fsl-mph-dr-of.ko] undefined!
ERROR: "of_device_is_compatible" [drivers/usb/host/fsl-mph-dr-of.ko] undefined!
ERROR: "strcmp" [drivers/usb/host/fsl-mph-dr-of.ko] undefined!
ERROR: "of_get_property" [drivers/usb/host/fsl-mph-dr-of.ko] undefined!
ERROR: "of_match_device" [drivers/usb/host/fsl-mph-dr-of.ko] undefined!
ERROR: "of_device_is_available" [drivers/usb/host/fsl-mph-dr-of.ko] undefined!
ERROR: "platform_device_unregister" [drivers/usb/host/fsl-mph-dr-of.ko] undefined!
ERROR: "device_for_each_child" [drivers/usb/host/fsl-mph-dr-of.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "__platform_driver_register" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "_dev_info" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "usb_hcd_link_urb_to_ep" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "ioread16_rep" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "ioread32" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "ioread32_rep" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "usb_hcd_check_unlink_urb" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "__list_add_valid" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "strlen" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "iowrite16_rep" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "iowrite8" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "iowrite32_rep" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "usb_hcd_resume_root_hub" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "usb_hcd_poll_rh_status" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "_dev_err" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "clk_get" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "snprintf" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "device_wakeup_enable" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "usb_add_hcd" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "init_timer_key" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "usb_create_hcd" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "ioremap" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "platform_get_resource" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "usb_disabled" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "usb_root_hub_lost_power" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "clk_enable" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "clk_prepare" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "clk_unprepare" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "clk_disable" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "msleep" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "iowrite16" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "mutex_unlock" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "idr_find" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "usb_bus_idr" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "usb_bus_idr_lock" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "usb_hub_find_child" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "__msecs_to_jiffies" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "mod_timer" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "jiffies" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "usb_hcd_giveback_urb" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "usb_hcd_unlink_urb_from_ep" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "__phys_addr" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "kfree" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "clk_put" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "usb_put_hcd" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "iounmap" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "usb_remove_hcd" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "del_timer" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "printk" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "__const_udelay" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "ioread16" [drivers/usb/host/r8a66597-hcd.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/usb/host/xhci-mtk.ko] undefined!
ERROR: "__platform_driver_register" [drivers/usb/host/xhci-mtk.ko] undefined!
ERROR: "xhci_init_driver" [drivers/usb/host/xhci-mtk.ko] undefined!
ERROR: "usb_add_hcd" [drivers/usb/host/xhci-mtk.ko] undefined!
ERROR: "usb_create_shared_hcd" [drivers/usb/host/xhci-mtk.ko] undefined!
ERROR: "device_property_read_u32_array" [drivers/usb/host/xhci-mtk.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/usb/host/xhci-mtk.ko] undefined!
ERROR: "platform_get_resource_byname" [drivers/usb/host/xhci-mtk.ko] undefined!
ERROR: "usb_create_hcd" [drivers/usb/host/xhci-mtk.ko] undefined!
ERROR: "platform_get_irq" [drivers/usb/host/xhci-mtk.ko] undefined!
ERROR: "regulator_enable" [drivers/usb/host/xhci-mtk.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/usb/host/xhci-mtk.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/usb/host/xhci-mtk.ko] undefined!
ERROR: "_dev_info" [drivers/usb/host/xhci-mtk.ko] undefined!
ERROR: "of_node_put" [drivers/usb/host/xhci-mtk.ko] undefined!
ERROR: "syscon_node_to_regmap" [drivers/usb/host/xhci-mtk.ko] undefined!
ERROR: "of_parse_phandle_with_fixed_args" [drivers/usb/host/xhci-mtk.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/usb/host/xhci-mtk.ko] undefined!
ERROR: "of_find_property" [drivers/usb/host/xhci-mtk.ko] undefined!
ERROR: "devm_clk_get_optional" [drivers/usb/host/xhci-mtk.ko] undefined!
ERROR: "devm_clk_get" [drivers/usb/host/xhci-mtk.ko] undefined!
ERROR: "devm_regulator_get" [drivers/usb/host/xhci-mtk.ko] undefined!
ERROR: "devm_kmalloc" [drivers/usb/host/xhci-mtk.ko] undefined!
ERROR: "usb_disabled" [drivers/usb/host/xhci-mtk.ko] undefined!
ERROR: "usb_hcd_poll_rh_status" [drivers/usb/host/xhci-mtk.ko] undefined!
ERROR: "clk_enable" [drivers/usb/host/xhci-mtk.ko] undefined!
ERROR: "clk_prepare" [drivers/usb/host/xhci-mtk.ko] undefined!
ERROR: "__const_udelay" [drivers/usb/host/xhci-mtk.ko] undefined!
ERROR: "xhci_mtk_sch_init" [drivers/usb/host/xhci-mtk.ko] undefined!
ERROR: "xhci_gen_setup" [drivers/usb/host/xhci-mtk.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/usb/host/xhci-mtk.ko] undefined!
ERROR: "__pm_runtime_idle" [drivers/usb/host/xhci-mtk.ko] undefined!
ERROR: "regulator_disable" [drivers/usb/host/xhci-mtk.ko] undefined!
ERROR: "xhci_mtk_sch_exit" [drivers/usb/host/xhci-mtk.ko] undefined!
ERROR: "usb_put_hcd" [drivers/usb/host/xhci-mtk.ko] undefined!
ERROR: "device_init_wakeup" [drivers/usb/host/xhci-mtk.ko] undefined!
ERROR: "usb_remove_hcd" [drivers/usb/host/xhci-mtk.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/host/xhci-mtk.ko] undefined!
ERROR: "del_timer" [drivers/usb/host/xhci-mtk.ko] undefined!
ERROR: "usb_hcd_is_primary_hcd" [drivers/usb/host/xhci-mtk.ko] undefined!
ERROR: "_dev_err" [drivers/usb/host/xhci-mtk.ko] undefined!
ERROR: "usleep_range" [drivers/usb/host/xhci-mtk.ko] undefined!
ERROR: "__might_sleep" [drivers/usb/host/xhci-mtk.ko] undefined!
ERROR: "ktime_get" [drivers/usb/host/xhci-mtk.ko] undefined!
ERROR: "clk_unprepare" [drivers/usb/host/xhci-mtk.ko] undefined!
ERROR: "clk_disable" [drivers/usb/host/xhci-mtk.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/usb/host/xhci-mtk.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/usb/host/xhci-histb.ko] undefined!
ERROR: "__platform_driver_register" [drivers/usb/host/xhci-histb.ko] undefined!
ERROR: "xhci_init_driver" [drivers/usb/host/xhci-histb.ko] undefined!
ERROR: "pm_runtime_forbid" [drivers/usb/host/xhci-histb.ko] undefined!
ERROR: "usb_add_hcd" [drivers/usb/host/xhci-histb.ko] undefined!
ERROR: "device_property_read_u32_array" [drivers/usb/host/xhci-histb.ko] undefined!
ERROR: "device_property_present" [drivers/usb/host/xhci-histb.ko] undefined!
ERROR: "usb_create_shared_hcd" [drivers/usb/host/xhci-histb.ko] undefined!
ERROR: "device_wakeup_enable" [drivers/usb/host/xhci-histb.ko] undefined!
ERROR: "usb_create_hcd" [drivers/usb/host/xhci-histb.ko] undefined!
ERROR: "dma_set_coherent_mask" [drivers/usb/host/xhci-histb.ko] undefined!
ERROR: "dma_set_mask" [drivers/usb/host/xhci-histb.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/usb/host/xhci-histb.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/usb/host/xhci-histb.ko] undefined!
ERROR: "__devm_reset_control_get" [drivers/usb/host/xhci-histb.ko] undefined!
ERROR: "devm_clk_get" [drivers/usb/host/xhci-histb.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/usb/host/xhci-histb.ko] undefined!
ERROR: "platform_get_resource" [drivers/usb/host/xhci-histb.ko] undefined!
ERROR: "platform_get_irq" [drivers/usb/host/xhci-histb.ko] undefined!
ERROR: "devm_kmalloc" [drivers/usb/host/xhci-histb.ko] undefined!
ERROR: "usb_disabled" [drivers/usb/host/xhci-histb.ko] undefined!
ERROR: "xhci_resume" [drivers/usb/host/xhci-histb.ko] undefined!
ERROR: "reset_control_deassert" [drivers/usb/host/xhci-histb.ko] undefined!
ERROR: "clk_enable" [drivers/usb/host/xhci-histb.ko] undefined!
ERROR: "_dev_err" [drivers/usb/host/xhci-histb.ko] undefined!
ERROR: "clk_prepare" [drivers/usb/host/xhci-histb.ko] undefined!
ERROR: "xhci_gen_setup" [drivers/usb/host/xhci-histb.ko] undefined!
ERROR: "of_property_match_string" [drivers/usb/host/xhci-histb.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/usb/host/xhci-histb.ko] undefined!
ERROR: "__pm_runtime_idle" [drivers/usb/host/xhci-histb.ko] undefined!
ERROR: "usb_put_hcd" [drivers/usb/host/xhci-histb.ko] undefined!
ERROR: "device_wakeup_disable" [drivers/usb/host/xhci-histb.ko] undefined!
ERROR: "usb_remove_hcd" [drivers/usb/host/xhci-histb.ko] undefined!
ERROR: "xhci_suspend" [drivers/usb/host/xhci-histb.ko] undefined!
ERROR: "usb_hcd_is_primary_hcd" [drivers/usb/host/xhci-histb.ko] undefined!
ERROR: "clk_unprepare" [drivers/usb/host/xhci-histb.ko] undefined!
ERROR: "clk_disable" [drivers/usb/host/xhci-histb.ko] undefined!
ERROR: "reset_control_assert" [drivers/usb/host/xhci-histb.ko] undefined!
ERROR: "clk_unprepare" [drivers/usb/host/xhci-plat-hcd.ko] undefined!
ERROR: "pci_bus_type" [drivers/usb/host/xhci-plat-hcd.ko] undefined!
ERROR: "clk_enable" [drivers/usb/host/xhci-plat-hcd.ko] undefined!
ERROR: "usb_add_hcd" [drivers/usb/host/xhci-plat-hcd.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/usb/host/xhci-plat-hcd.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/usb/host/xhci-plat-hcd.ko] undefined!
ERROR: "usb_remove_hcd" [drivers/usb/host/xhci-plat-hcd.ko] undefined!
ERROR: "dma_set_mask" [drivers/usb/host/xhci-plat-hcd.ko] undefined!
ERROR: "__usb_create_hcd" [drivers/usb/host/xhci-plat-hcd.ko] undefined!
ERROR: "clk_disable" [drivers/usb/host/xhci-plat-hcd.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/usb/host/xhci-plat-hcd.ko] undefined!
ERROR: "pm_runtime_forbid" [drivers/usb/host/xhci-plat-hcd.ko] undefined!
ERROR: "devm_clk_get_optional" [drivers/usb/host/xhci-plat-hcd.ko] undefined!
ERROR: "dma_set_coherent_mask" [drivers/usb/host/xhci-plat-hcd.ko] undefined!
ERROR: "__platform_driver_register" [drivers/usb/host/xhci-plat-hcd.ko] undefined!
ERROR: "usb_put_hcd" [drivers/usb/host/xhci-plat-hcd.ko] undefined!
ERROR: "xhci_init_driver" [drivers/usb/host/xhci-plat-hcd.ko] undefined!
ERROR: "usb_hcd_is_primary_hcd" [drivers/usb/host/xhci-plat-hcd.ko] undefined!
ERROR: "xhci_run" [drivers/usb/host/xhci-plat-hcd.ko] undefined!
ERROR: "xhci_resume" [drivers/usb/host/xhci-plat-hcd.ko] undefined!
ERROR: "ioremap" [drivers/usb/host/xhci-plat-hcd.ko] undefined!
ERROR: "platform_get_resource" [drivers/usb/host/xhci-plat-hcd.ko] undefined!
ERROR: "device_wakeup_enable" [drivers/usb/host/xhci-plat-hcd.ko] undefined!
ERROR: "device_property_read_u32_array" [drivers/usb/host/xhci-plat-hcd.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/usb/host/xhci-plat-hcd.ko] undefined!
ERROR: "clk_prepare" [drivers/usb/host/xhci-plat-hcd.ko] undefined!
ERROR: "__pm_runtime_set_status" [drivers/usb/host/xhci-plat-hcd.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/usb/host/xhci-plat-hcd.ko] undefined!
ERROR: "usb_disabled" [drivers/usb/host/xhci-plat-hcd.ko] undefined!
ERROR: "devm_usb_get_phy_by_phandle" [drivers/usb/host/xhci-plat-hcd.ko] undefined!
ERROR: "of_usb_host_tpl_support" [drivers/usb/host/xhci-plat-hcd.ko] undefined!
ERROR: "iounmap" [drivers/usb/host/xhci-plat-hcd.ko] undefined!
ERROR: "xhci_gen_setup" [drivers/usb/host/xhci-plat-hcd.ko] undefined!
ERROR: "platform_get_irq" [drivers/usb/host/xhci-plat-hcd.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/usb/host/xhci-plat-hcd.ko] undefined!
ERROR: "xhci_suspend" [drivers/usb/host/xhci-plat-hcd.ko] undefined!
ERROR: "of_fwnode_ops" [drivers/usb/host/xhci-plat-hcd.ko] undefined!
ERROR: "is_acpi_device_node" [drivers/usb/host/xhci-plat-hcd.ko] undefined!
ERROR: "device_property_present" [drivers/usb/host/xhci-plat-hcd.ko] undefined!
ERROR: "usb_hcd_pci_pm_ops" [drivers/usb/host/xhci-pci.ko] undefined!
ERROR: "usb_hcd_pci_shutdown" [drivers/usb/host/xhci-pci.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/usb/host/xhci-pci.ko] undefined!
ERROR: "__pci_register_driver" [drivers/usb/host/xhci-pci.ko] undefined!
ERROR: "xhci_init_driver" [drivers/usb/host/xhci-pci.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/host/xhci-pci.ko] undefined!
ERROR: "pci_set_mwi" [drivers/usb/host/xhci-pci.ko] undefined!
ERROR: "pci_read_config_byte" [drivers/usb/host/xhci-pci.ko] undefined!
ERROR: "xhci_gen_setup" [drivers/usb/host/xhci-pci.ko] undefined!
ERROR: "lockdep_rcu_suspicious" [drivers/usb/host/xhci-pci.ko] undefined!
ERROR: "rcu_read_lock_sched_held" [drivers/usb/host/xhci-pci.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/usb/host/xhci-pci.ko] undefined!
ERROR: "debug_lockdep_rcu_enabled" [drivers/usb/host/xhci-pci.ko] undefined!
ERROR: "__preempt_count" [drivers/usb/host/xhci-pci.ko] undefined!
ERROR: "__tracepoint_xhci_dbg_quirks" [drivers/usb/host/xhci-pci.ko] undefined!
ERROR: "usb_amd_quirk_pll_check" [drivers/usb/host/xhci-pci.ko] undefined!
ERROR: "xhci_dbg_trace" [drivers/usb/host/xhci-pci.ko] undefined!
ERROR: "pci_d3cold_disable" [drivers/usb/host/xhci-pci.ko] undefined!
ERROR: "xhci_suspend" [drivers/usb/host/xhci-pci.ko] undefined!
ERROR: "usb_enable_intel_xhci_ports" [drivers/usb/host/xhci-pci.ko] undefined!
ERROR: "xhci_resume" [drivers/usb/host/xhci-pci.ko] undefined!
ERROR: "xhci_shutdown" [drivers/usb/host/xhci-pci.ko] undefined!
ERROR: "kfree" [drivers/usb/host/xhci-pci.ko] undefined!
ERROR: "acpi_evaluate_dsm" [drivers/usb/host/xhci-pci.ko] undefined!
ERROR: "is_acpi_device_node" [drivers/usb/host/xhci-pci.ko] undefined!
ERROR: "pm_runtime_allow" [drivers/usb/host/xhci-pci.ko] undefined!
ERROR: "usb_add_hcd" [drivers/usb/host/xhci-pci.ko] undefined!
ERROR: "xhci_ext_cap_init" [drivers/usb/host/xhci-pci.ko] undefined!
ERROR: "usb_create_shared_hcd" [drivers/usb/host/xhci-pci.ko] undefined!
ERROR: "usb_hcd_pci_probe" [drivers/usb/host/xhci-pci.ko] undefined!
ERROR: "pci_set_power_state" [drivers/usb/host/xhci-pci.ko] undefined!
ERROR: "pm_runtime_forbid" [drivers/usb/host/xhci-pci.ko] undefined!
ERROR: "usb_hcd_pci_remove" [drivers/usb/host/xhci-pci.ko] undefined!
ERROR: "usb_put_hcd" [drivers/usb/host/xhci-pci.ko] undefined!
ERROR: "usb_remove_hcd" [drivers/usb/host/xhci-pci.ko] undefined!
ERROR: "usb_hcd_is_primary_hcd" [drivers/usb/host/xhci-pci.ko] undefined!
ERROR: "system_wq" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "usb_root_hub_lost_power" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "sg_pcopy_to_buffer" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "__kmalloc" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "msleep" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "platform_device_add_properties" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "trace_handle_return" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "debugfs_create_dir" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "single_open" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "param_ops_int" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "del_timer" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "strlen" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "schedule_timeout_uninterruptible" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "usb_debug_root" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "dma_set_mask" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "single_release" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "usb_disable_xhci_ports" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "usb_acpi_set_power_state" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "usb_hcd_poll_rh_status" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "find_next_bit" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "delayed_work_timer_fn" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "seq_printf" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "__warn_printk" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "ktime_get" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "sg_next" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "sg_pcopy_from_buffer" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "__const_udelay" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "init_timer_key" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "cancel_delayed_work_sync" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "mutex_unlock" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "usb_hcd_giveback_urb" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "trace_event_buffer_reserve" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "pm_runtime_allow" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "dma_free_attrs" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "debugfs_create_file" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "pm_runtime_forbid" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "__preempt_count" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "dma_pool_destroy" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "sprintf" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "debugfs_remove_recursive" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "seq_read" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "bpf_trace_run3" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "usb_amd_dev_put" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "dma_set_coherent_mask" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "jiffies" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "usb_hub_clear_tt_buffer" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "strcmp" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "usb_acpi_power_manageable" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "complete_all" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "usb_amd_quirk_pll_enable" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "wait_for_completion" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "radix_tree_maybe_preload" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "usb_hcd_is_primary_hcd" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "_dev_warn" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "cancel_delayed_work" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "usb_hcd_link_urb_to_ep" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "bpf_trace_run1" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "debug_lockdep_rcu_enabled" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "__mutex_init" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "usb_amd_quirk_pll_disable" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "mod_delayed_work_on" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "platform_device_alloc" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "trace_event_reg" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "platform_device_add" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "_raw_spin_unlock_irq" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "strncmp" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "dma_direct_map_page" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "dma_alloc_attrs" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "mem_section" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "mod_timer" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "platform_device_unregister" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "dma_pool_free" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "add_timer" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "request_threaded_irq" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "usb_hcd_end_port_resume" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "_dev_err" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "perf_trace_run_bpf_submit" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "perf_trace_buf_alloc" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "__list_add_valid" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "rcu_read_lock_sched_held" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "radix_tree_delete" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "synchronize_irq" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "usb_hcd_check_unlink_urb" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "platform_device_add_resources" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "devm_add_action" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "_dev_info" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "debugfs_create_regset32" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "usb_hcd_irq" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "usleep_range" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "trace_event_ignore_this_pid" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "kmalloc_order_trace" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "___ratelimit" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "usb_hcd_map_urb_for_dma" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "_raw_spin_lock_irq" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "trace_event_buffer_commit" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "dev_driver_string" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "dma_pool_alloc" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "__phys_addr" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "vsnprintf" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "event_triggers_call" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "bpf_trace_run2" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "usb_disabled" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "seq_lseek" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "kfree" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "trace_event_raw_init" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "usb_wakeup_notification" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "scnprintf" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "lockdep_init_map" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "__sw_hweight32" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "find_first_bit" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "radix_tree_lookup" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "trace_raw_output_prep" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "complete" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "snprintf" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "trace_seq_printf" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "usb_hc_died" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "usb_amd_pt_check_port" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "usb_hcd_start_port_resume" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "usb_hcd_unlink_urb_from_ep" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "usb_hcd_resume_root_hub" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "wait_for_completion_timeout" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "_copy_from_user" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "radix_tree_insert" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "dma_pool_create" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "dma_ops" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "usb_asmedia_modifyflowcontrol" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "is_vmalloc_addr" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "lockdep_rcu_suspicious" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "free_irq" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "platform_device_put" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "param_ops_ullong" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "param_ops_bool" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "param_ops_int" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "usb_hcd_pci_pm_ops" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "usb_hcd_pci_remove" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "usb_hcd_pci_probe" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "kmem_cache_destroy" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "__pci_register_driver" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "kmem_cache_create" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "debugfs_create_dir" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "usb_debug_root" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "usb_hcds_loaded" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "usb_disabled" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "dma_pool_create" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "dma_alloc_attrs" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "debugfs_create_file" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "init_timer_key" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "kmem_cache_alloc" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "usb_hcd_link_urb_to_ep" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "sg_next" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "usb_hc_died" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "_dev_err" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "dma_free_attrs" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "dma_pool_destroy" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "debugfs_remove" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "usb_hcd_resume_root_hub" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "kmalloc_order_trace" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "usb_hcd_check_unlink_urb" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "usb_hcd_giveback_urb" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "usb_hcd_unlink_urb_from_ep" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "_dev_info" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "device_set_wakeup_capable" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "uhci_reset_hc" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "uhci_check_and_reset_hc" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "no_seek_end_llseek_size" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "simple_read_from_buffer" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "pci_write_config_byte" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "pci_write_config_word" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "synchronize_irq" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "usb_root_hub_lost_power" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "usb_hcd_poll_rh_status" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "kfree" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "usb_calc_bus_time" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "dma_pool_alloc" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "finish_wait" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "schedule" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "init_wait_entry" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "__might_sleep" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "usb_hcd_start_port_resume" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "usb_hcd_end_port_resume" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "del_timer" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "__wake_up" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "kmem_cache_free" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "printk" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "strchr" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "sprintf" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "dma_pool_free" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "__warn_printk" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "dev_driver_string" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "__list_add_valid" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "_dev_warn" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "__const_udelay" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "_raw_spin_lock_irq" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "msleep" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "_raw_spin_unlock_irq" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "mod_timer" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "jiffies" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/usb/host/uhci-hcd.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/usb/host/ohci-nxp.ko] undefined!
ERROR: "__platform_driver_register" [drivers/usb/host/ohci-nxp.ko] undefined!
ERROR: "ohci_init_driver" [drivers/usb/host/ohci-nxp.ko] undefined!
ERROR: "device_wakeup_enable" [drivers/usb/host/ohci-nxp.ko] undefined!
ERROR: "usb_add_hcd" [drivers/usb/host/ohci-nxp.ko] undefined!
ERROR: "_dev_info" [drivers/usb/host/ohci-nxp.ko] undefined!
ERROR: "_dev_err" [drivers/usb/host/ohci-nxp.ko] undefined!
ERROR: "platform_get_irq" [drivers/usb/host/ohci-nxp.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/host/ohci-nxp.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/usb/host/ohci-nxp.ko] undefined!
ERROR: "platform_get_resource" [drivers/usb/host/ohci-nxp.ko] undefined!
ERROR: "usb_create_hcd" [drivers/usb/host/ohci-nxp.ko] undefined!
ERROR: "printk" [drivers/usb/host/ohci-nxp.ko] undefined!
ERROR: "i2c_smbus_read_word_data" [drivers/usb/host/ohci-nxp.ko] undefined!
ERROR: "clk_enable" [drivers/usb/host/ohci-nxp.ko] undefined!
ERROR: "clk_prepare" [drivers/usb/host/ohci-nxp.ko] undefined!
ERROR: "devm_clk_get" [drivers/usb/host/ohci-nxp.ko] undefined!
ERROR: "usb_disabled" [drivers/usb/host/ohci-nxp.ko] undefined!
ERROR: "dma_set_coherent_mask" [drivers/usb/host/ohci-nxp.ko] undefined!
ERROR: "dma_set_mask" [drivers/usb/host/ohci-nxp.ko] undefined!
ERROR: "isp1301_get_client" [drivers/usb/host/ohci-nxp.ko] undefined!
ERROR: "of_parse_phandle" [drivers/usb/host/ohci-nxp.ko] undefined!
ERROR: "clk_unprepare" [drivers/usb/host/ohci-nxp.ko] undefined!
ERROR: "clk_disable" [drivers/usb/host/ohci-nxp.ko] undefined!
ERROR: "usb_put_hcd" [drivers/usb/host/ohci-nxp.ko] undefined!
ERROR: "usb_remove_hcd" [drivers/usb/host/ohci-nxp.ko] undefined!
ERROR: "iounmap" [drivers/usb/host/ohci-nxp.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/usb/host/ohci-nxp.ko] undefined!
ERROR: "ioremap" [drivers/usb/host/ohci-nxp.ko] undefined!
ERROR: "usb_hcd_platform_shutdown" [drivers/usb/host/ohci-st.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/usb/host/ohci-st.ko] undefined!
ERROR: "__platform_driver_register" [drivers/usb/host/ohci-st.ko] undefined!
ERROR: "ohci_init_driver" [drivers/usb/host/ohci-st.ko] undefined!
ERROR: "printk" [drivers/usb/host/ohci-st.ko] undefined!
ERROR: "_dev_info" [drivers/usb/host/ohci-st.ko] undefined!
ERROR: "_dev_err" [drivers/usb/host/ohci-st.ko] undefined!
ERROR: "device_wakeup_enable" [drivers/usb/host/ohci-st.ko] undefined!
ERROR: "usb_add_hcd" [drivers/usb/host/ohci-st.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/usb/host/ohci-st.ko] undefined!
ERROR: "__devm_reset_control_get" [drivers/usb/host/ohci-st.ko] undefined!
ERROR: "devm_clk_get" [drivers/usb/host/ohci-st.ko] undefined!
ERROR: "of_clk_get" [drivers/usb/host/ohci-st.ko] undefined!
ERROR: "devm_phy_get" [drivers/usb/host/ohci-st.ko] undefined!
ERROR: "usb_create_hcd" [drivers/usb/host/ohci-st.ko] undefined!
ERROR: "platform_get_resource" [drivers/usb/host/ohci-st.ko] undefined!
ERROR: "platform_get_irq" [drivers/usb/host/ohci-st.ko] undefined!
ERROR: "usb_disabled" [drivers/usb/host/ohci-st.ko] undefined!
ERROR: "phy_power_on" [drivers/usb/host/ohci-st.ko] undefined!
ERROR: "phy_init" [drivers/usb/host/ohci-st.ko] undefined!
ERROR: "clk_enable" [drivers/usb/host/ohci-st.ko] undefined!
ERROR: "clk_prepare" [drivers/usb/host/ohci-st.ko] undefined!
ERROR: "clk_set_rate" [drivers/usb/host/ohci-st.ko] undefined!
ERROR: "reset_control_deassert" [drivers/usb/host/ohci-st.ko] undefined!
ERROR: "clk_unprepare" [drivers/usb/host/ohci-st.ko] undefined!
ERROR: "clk_disable" [drivers/usb/host/ohci-st.ko] undefined!
ERROR: "phy_exit" [drivers/usb/host/ohci-st.ko] undefined!
ERROR: "phy_power_off" [drivers/usb/host/ohci-st.ko] undefined!
ERROR: "reset_control_assert" [drivers/usb/host/ohci-st.ko] undefined!
ERROR: "usb_put_hcd" [drivers/usb/host/ohci-st.ko] undefined!
ERROR: "clk_put" [drivers/usb/host/ohci-st.ko] undefined!
ERROR: "usb_remove_hcd" [drivers/usb/host/ohci-st.ko] undefined!
ERROR: "ohci_suspend" [drivers/usb/host/ohci-st.ko] undefined!
ERROR: "ohci_resume" [drivers/usb/host/ohci-st.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/usb/host/ohci-st.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/usb/host/ohci-spear.ko] undefined!
ERROR: "__platform_driver_register" [drivers/usb/host/ohci-spear.ko] undefined!
ERROR: "ohci_init_driver" [drivers/usb/host/ohci-spear.ko] undefined!
ERROR: "printk" [drivers/usb/host/ohci-spear.ko] undefined!
ERROR: "usb_disabled" [drivers/usb/host/ohci-spear.ko] undefined!
ERROR: "ohci_resume" [drivers/usb/host/ohci-spear.ko] undefined!
ERROR: "clk_enable" [drivers/usb/host/ohci-spear.ko] undefined!
ERROR: "device_wakeup_enable" [drivers/usb/host/ohci-spear.ko] undefined!
ERROR: "usb_add_hcd" [drivers/usb/host/ohci-spear.ko] undefined!
ERROR: "clk_prepare" [drivers/usb/host/ohci-spear.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/usb/host/ohci-spear.ko] undefined!
ERROR: "platform_get_resource" [drivers/usb/host/ohci-spear.ko] undefined!
ERROR: "usb_create_hcd" [drivers/usb/host/ohci-spear.ko] undefined!
ERROR: "devm_clk_get" [drivers/usb/host/ohci-spear.ko] undefined!
ERROR: "dma_set_coherent_mask" [drivers/usb/host/ohci-spear.ko] undefined!
ERROR: "_dev_err" [drivers/usb/host/ohci-spear.ko] undefined!
ERROR: "dma_set_mask" [drivers/usb/host/ohci-spear.ko] undefined!
ERROR: "platform_get_irq" [drivers/usb/host/ohci-spear.ko] undefined!
ERROR: "usb_put_hcd" [drivers/usb/host/ohci-spear.ko] undefined!
ERROR: "usb_remove_hcd" [drivers/usb/host/ohci-spear.ko] undefined!
ERROR: "msleep" [drivers/usb/host/ohci-spear.ko] undefined!
ERROR: "clk_unprepare" [drivers/usb/host/ohci-spear.ko] undefined!
ERROR: "clk_disable" [drivers/usb/host/ohci-spear.ko] undefined!
ERROR: "ohci_suspend" [drivers/usb/host/ohci-spear.ko] undefined!
ERROR: "jiffies" [drivers/usb/host/ohci-spear.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/usb/host/ohci-exynos.ko] undefined!
ERROR: "__platform_driver_register" [drivers/usb/host/ohci-exynos.ko] undefined!
ERROR: "ohci_init_driver" [drivers/usb/host/ohci-exynos.ko] undefined!
ERROR: "printk" [drivers/usb/host/ohci-exynos.ko] undefined!
ERROR: "usb_disabled" [drivers/usb/host/ohci-exynos.ko] undefined!
ERROR: "ohci_resume" [drivers/usb/host/ohci-exynos.ko] undefined!
ERROR: "_dev_err" [drivers/usb/host/ohci-exynos.ko] undefined!
ERROR: "of_node_put" [drivers/usb/host/ohci-exynos.ko] undefined!
ERROR: "device_wakeup_enable" [drivers/usb/host/ohci-exynos.ko] undefined!
ERROR: "usb_add_hcd" [drivers/usb/host/ohci-exynos.ko] undefined!
ERROR: "platform_get_irq" [drivers/usb/host/ohci-exynos.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/usb/host/ohci-exynos.ko] undefined!
ERROR: "platform_get_resource" [drivers/usb/host/ohci-exynos.ko] undefined!
ERROR: "clk_enable" [drivers/usb/host/ohci-exynos.ko] undefined!
ERROR: "clk_prepare" [drivers/usb/host/ohci-exynos.ko] undefined!
ERROR: "devm_clk_get" [drivers/usb/host/ohci-exynos.ko] undefined!
ERROR: "devm_of_phy_get" [drivers/usb/host/ohci-exynos.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/usb/host/ohci-exynos.ko] undefined!
ERROR: "of_get_next_available_child" [drivers/usb/host/ohci-exynos.ko] undefined!
ERROR: "devm_of_phy_get_by_index" [drivers/usb/host/ohci-exynos.ko] undefined!
ERROR: "of_count_phandle_with_args" [drivers/usb/host/ohci-exynos.ko] undefined!
ERROR: "usb_create_hcd" [drivers/usb/host/ohci-exynos.ko] undefined!
ERROR: "dma_set_coherent_mask" [drivers/usb/host/ohci-exynos.ko] undefined!
ERROR: "dma_set_mask" [drivers/usb/host/ohci-exynos.ko] undefined!
ERROR: "usb_put_hcd" [drivers/usb/host/ohci-exynos.ko] undefined!
ERROR: "usb_remove_hcd" [drivers/usb/host/ohci-exynos.ko] undefined!
ERROR: "clk_unprepare" [drivers/usb/host/ohci-exynos.ko] undefined!
ERROR: "clk_disable" [drivers/usb/host/ohci-exynos.ko] undefined!
ERROR: "ohci_suspend" [drivers/usb/host/ohci-exynos.ko] undefined!
ERROR: "phy_power_off" [drivers/usb/host/ohci-exynos.ko] undefined!
ERROR: "phy_power_on" [drivers/usb/host/ohci-exynos.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/usb/host/ohci-exynos.ko] undefined!
ERROR: "usb_hcd_platform_shutdown" [drivers/usb/host/ohci-platform.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/usb/host/ohci-platform.ko] undefined!
ERROR: "__platform_driver_register" [drivers/usb/host/ohci-platform.ko] undefined!
ERROR: "ohci_init_driver" [drivers/usb/host/ohci-platform.ko] undefined!
ERROR: "printk" [drivers/usb/host/ohci-platform.ko] undefined!
ERROR: "_dev_err" [drivers/usb/host/ohci-platform.ko] undefined!
ERROR: "reset_control_deassert" [drivers/usb/host/ohci-platform.ko] undefined!
ERROR: "devm_reset_control_array_get" [drivers/usb/host/ohci-platform.ko] undefined!
ERROR: "of_clk_get" [drivers/usb/host/ohci-platform.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/usb/host/ohci-platform.ko] undefined!
ERROR: "of_find_property" [drivers/usb/host/ohci-platform.ko] undefined!
ERROR: "device_wakeup_enable" [drivers/usb/host/ohci-platform.ko] undefined!
ERROR: "usb_add_hcd" [drivers/usb/host/ohci-platform.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/usb/host/ohci-platform.ko] undefined!
ERROR: "platform_get_resource" [drivers/usb/host/ohci-platform.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/usb/host/ohci-platform.ko] undefined!
ERROR: "__pm_runtime_set_status" [drivers/usb/host/ohci-platform.ko] undefined!
ERROR: "usb_create_hcd" [drivers/usb/host/ohci-platform.ko] undefined!
ERROR: "platform_get_irq" [drivers/usb/host/ohci-platform.ko] undefined!
ERROR: "dma_set_coherent_mask" [drivers/usb/host/ohci-platform.ko] undefined!
ERROR: "dma_set_mask" [drivers/usb/host/ohci-platform.ko] undefined!
ERROR: "usb_disabled" [drivers/usb/host/ohci-platform.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/usb/host/ohci-platform.ko] undefined!
ERROR: "__pm_runtime_idle" [drivers/usb/host/ohci-platform.ko] undefined!
ERROR: "usb_put_hcd" [drivers/usb/host/ohci-platform.ko] undefined!
ERROR: "clk_put" [drivers/usb/host/ohci-platform.ko] undefined!
ERROR: "reset_control_assert" [drivers/usb/host/ohci-platform.ko] undefined!
ERROR: "usb_remove_hcd" [drivers/usb/host/ohci-platform.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/usb/host/ohci-platform.ko] undefined!
ERROR: "clk_enable" [drivers/usb/host/ohci-platform.ko] undefined!
ERROR: "clk_prepare" [drivers/usb/host/ohci-platform.ko] undefined!
ERROR: "clk_unprepare" [drivers/usb/host/ohci-platform.ko] undefined!
ERROR: "clk_disable" [drivers/usb/host/ohci-platform.ko] undefined!
ERROR: "ohci_suspend" [drivers/usb/host/ohci-platform.ko] undefined!
ERROR: "ohci_resume" [drivers/usb/host/ohci-platform.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/usb/host/ohci-platform.ko] undefined!
ERROR: "usb_hcd_pci_pm_ops" [drivers/usb/host/ohci-pci.ko] undefined!
ERROR: "usb_hcd_pci_shutdown" [drivers/usb/host/ohci-pci.ko] undefined!
ERROR: "usb_hcd_pci_remove" [drivers/usb/host/ohci-pci.ko] undefined!
ERROR: "usb_hcd_pci_probe" [drivers/usb/host/ohci-pci.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/usb/host/ohci-pci.ko] undefined!
ERROR: "__pci_register_driver" [drivers/usb/host/ohci-pci.ko] undefined!
ERROR: "ohci_resume" [drivers/usb/host/ohci-pci.ko] undefined!
ERROR: "ohci_suspend" [drivers/usb/host/ohci-pci.ko] undefined!
ERROR: "ohci_init_driver" [drivers/usb/host/ohci-pci.ko] undefined!
ERROR: "printk" [drivers/usb/host/ohci-pci.ko] undefined!
ERROR: "usb_disabled" [drivers/usb/host/ohci-pci.ko] undefined!
ERROR: "pci_dev_put" [drivers/usb/host/ohci-pci.ko] undefined!
ERROR: "pci_get_slot" [drivers/usb/host/ohci-pci.ko] undefined!
ERROR: "_dev_err" [drivers/usb/host/ohci-pci.ko] undefined!
ERROR: "ohci_restart" [drivers/usb/host/ohci-pci.ko] undefined!
ERROR: "lockdep_init_map" [drivers/usb/host/ohci-pci.ko] undefined!
ERROR: "device_init_wakeup" [drivers/usb/host/ohci-pci.ko] undefined!
ERROR: "usb_amd_prefetch_quirk" [drivers/usb/host/ohci-pci.ko] undefined!
ERROR: "usb_amd_quirk_pll_check" [drivers/usb/host/ohci-pci.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/host/ohci-pci.ko] undefined!
ERROR: "ohci_setup" [drivers/usb/host/ohci-pci.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/usb/host/ohci-pci.ko] undefined!
ERROR: "pci_match_id" [drivers/usb/host/ohci-pci.ko] undefined!
ERROR: "default_llseek" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "param_ops_bool" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "usb_hcd_platform_shutdown" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "debugfs_remove" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "__platform_driver_register" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "usb_debug_root" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "usb_hcds_loaded" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "printk" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "usb_disabled" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "synchronize_irq" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "queue_work_on" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "system_wq" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "usb_hcd_poll_rh_status" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "usb_hcd_resume_root_hub" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "usb_root_hub_lost_power" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "usb_amd_quirk_pll_disable" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "usb_hcd_link_urb_to_ep" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "usb_calc_bus_time" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "__kmalloc" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "sg_next" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "device_set_wakeup_capable" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "dma_pool_create" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "dma_alloc_attrs" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "debugfs_create_file" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "debugfs_create_dir" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "gen_pool_dma_alloc_align" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "init_timer_key" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "flush_work" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "usb_amd_dev_put" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "dma_free_attrs" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "dma_pool_destroy" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "debugfs_remove_recursive" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "free_irq" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "usb_hc_died" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "mod_timer" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "device_wakeup_enable" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "iounmap" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "usb_add_hcd" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "usb_hcd_setup_local_mem" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "ioremap" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "usb_create_hcd" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "__request_region" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "platform_get_irq" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "sm501_unit_power" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "sm501_modify_reg" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "platform_get_resource" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "usb_put_hcd" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "__release_region" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "iomem_resource" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "usb_remove_hcd" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "__list_add_valid" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "dma_pool_alloc" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "gen_pool_dma_zalloc_align" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "usb_hcd_check_unlink_urb" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "_dev_warn" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "schedule_timeout_uninterruptible" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "get_zeroed_page" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "simple_read_from_buffer" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "mutex_unlock" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "__mutex_init" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "free_pages" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "del_timer" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "scnprintf" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "jiffies" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "_raw_spin_lock_irq" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "msleep" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "_raw_spin_unlock_irq" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "__const_udelay" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "usb_amd_quirk_pll_enable" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "sb800_prefetch" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "usb_hcd_giveback_urb" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "usb_hcd_unlink_urb_from_ep" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "kfree" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "dma_pool_free" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "gen_pool_free_owner" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "_dev_err" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/host/ohci-hcd.ko] undefined!
ERROR: "param_ops_int" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "param_ops_uint" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "param_ops_bool" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "platform_bus_type" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "__platform_driver_register" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "schedule" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "usb_calc_bus_time" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "usb_hcd_resume_root_hub" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "usb_hcd_poll_rh_status" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "schedule_timeout_uninterruptible" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "__kmalloc" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "init_timer_key" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "del_timer" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "kfree" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "usb_hcd_giveback_urb" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "refcount_warn_saturate" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "usb_hc_died" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "__udelay" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "__list_add_valid" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "scnprintf" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "mod_timer" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "_dev_info" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "devm_kmalloc" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "irq_set_irq_type" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "platform_get_resource" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "usb_disabled" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "__phys_addr" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "msleep" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "_raw_spin_unlock_irq" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "_raw_spin_lock_irq" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "__const_udelay" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "device_wakeup_enable" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "usb_add_hcd" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "usb_create_hcd" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "_dev_err" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "usb_put_hcd" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "usb_remove_hcd" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "jiffies" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/usb/host/oxu210hp-hcd.ko] undefined!
ERROR: "usb_hcd_platform_shutdown" [drivers/usb/host/ehci-atmel.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/usb/host/ehci-atmel.ko] undefined!
ERROR: "__platform_driver_register" [drivers/usb/host/ehci-atmel.ko] undefined!
ERROR: "ehci_init_driver" [drivers/usb/host/ehci-atmel.ko] undefined!
ERROR: "printk" [drivers/usb/host/ehci-atmel.ko] undefined!
ERROR: "_dev_err" [drivers/usb/host/ehci-atmel.ko] undefined!
ERROR: "device_wakeup_enable" [drivers/usb/host/ehci-atmel.ko] undefined!
ERROR: "usb_add_hcd" [drivers/usb/host/ehci-atmel.ko] undefined!
ERROR: "devm_clk_get" [drivers/usb/host/ehci-atmel.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/usb/host/ehci-atmel.ko] undefined!
ERROR: "platform_get_resource" [drivers/usb/host/ehci-atmel.ko] undefined!
ERROR: "usb_create_hcd" [drivers/usb/host/ehci-atmel.ko] undefined!
ERROR: "dma_set_coherent_mask" [drivers/usb/host/ehci-atmel.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/usb/host/ehci-atmel.ko] undefined!
ERROR: "dma_set_mask" [drivers/usb/host/ehci-atmel.ko] undefined!
ERROR: "platform_get_irq" [drivers/usb/host/ehci-atmel.ko] undefined!
ERROR: "usb_disabled" [drivers/usb/host/ehci-atmel.ko] undefined!
ERROR: "clk_enable" [drivers/usb/host/ehci-atmel.ko] undefined!
ERROR: "clk_prepare" [drivers/usb/host/ehci-atmel.ko] undefined!
ERROR: "ehci_resume" [drivers/usb/host/ehci-atmel.ko] undefined!
ERROR: "usb_put_hcd" [drivers/usb/host/ehci-atmel.ko] undefined!
ERROR: "usb_remove_hcd" [drivers/usb/host/ehci-atmel.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/host/ehci-atmel.ko] undefined!
ERROR: "ehci_suspend" [drivers/usb/host/ehci-atmel.ko] undefined!
ERROR: "clk_unprepare" [drivers/usb/host/ehci-atmel.ko] undefined!
ERROR: "clk_disable" [drivers/usb/host/ehci-atmel.ko] undefined!
ERROR: "usb_hcd_platform_shutdown" [drivers/usb/host/ehci-exynos.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/usb/host/ehci-exynos.ko] undefined!
ERROR: "__platform_driver_register" [drivers/usb/host/ehci-exynos.ko] undefined!
ERROR: "ehci_init_driver" [drivers/usb/host/ehci-exynos.ko] undefined!
ERROR: "printk" [drivers/usb/host/ehci-exynos.ko] undefined!
ERROR: "usb_disabled" [drivers/usb/host/ehci-exynos.ko] undefined!
ERROR: "ehci_resume" [drivers/usb/host/ehci-exynos.ko] undefined!
ERROR: "_dev_err" [drivers/usb/host/ehci-exynos.ko] undefined!
ERROR: "of_node_put" [drivers/usb/host/ehci-exynos.ko] undefined!
ERROR: "device_wakeup_enable" [drivers/usb/host/ehci-exynos.ko] undefined!
ERROR: "usb_add_hcd" [drivers/usb/host/ehci-exynos.ko] undefined!
ERROR: "platform_get_irq" [drivers/usb/host/ehci-exynos.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/usb/host/ehci-exynos.ko] undefined!
ERROR: "platform_get_resource" [drivers/usb/host/ehci-exynos.ko] undefined!
ERROR: "clk_enable" [drivers/usb/host/ehci-exynos.ko] undefined!
ERROR: "clk_prepare" [drivers/usb/host/ehci-exynos.ko] undefined!
ERROR: "devm_clk_get" [drivers/usb/host/ehci-exynos.ko] undefined!
ERROR: "devm_of_phy_get" [drivers/usb/host/ehci-exynos.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/usb/host/ehci-exynos.ko] undefined!
ERROR: "of_get_next_available_child" [drivers/usb/host/ehci-exynos.ko] undefined!
ERROR: "devm_gpio_request_one" [drivers/usb/host/ehci-exynos.ko] undefined!
ERROR: "devm_of_phy_get_by_index" [drivers/usb/host/ehci-exynos.ko] undefined!
ERROR: "of_count_phandle_with_args" [drivers/usb/host/ehci-exynos.ko] undefined!
ERROR: "usb_create_hcd" [drivers/usb/host/ehci-exynos.ko] undefined!
ERROR: "of_get_named_gpio_flags" [drivers/usb/host/ehci-exynos.ko] undefined!
ERROR: "dma_set_coherent_mask" [drivers/usb/host/ehci-exynos.ko] undefined!
ERROR: "dma_set_mask" [drivers/usb/host/ehci-exynos.ko] undefined!
ERROR: "usb_put_hcd" [drivers/usb/host/ehci-exynos.ko] undefined!
ERROR: "usb_remove_hcd" [drivers/usb/host/ehci-exynos.ko] undefined!
ERROR: "clk_unprepare" [drivers/usb/host/ehci-exynos.ko] undefined!
ERROR: "clk_disable" [drivers/usb/host/ehci-exynos.ko] undefined!
ERROR: "ehci_suspend" [drivers/usb/host/ehci-exynos.ko] undefined!
ERROR: "phy_power_off" [drivers/usb/host/ehci-exynos.ko] undefined!
ERROR: "phy_power_on" [drivers/usb/host/ehci-exynos.ko] undefined!
ERROR: "platform_bus_type" [drivers/usb/host/ehci-spear.ko] undefined!
ERROR: "usb_hcd_platform_shutdown" [drivers/usb/host/ehci-spear.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/usb/host/ehci-spear.ko] undefined!
ERROR: "__platform_driver_register" [drivers/usb/host/ehci-spear.ko] undefined!
ERROR: "ehci_init_driver" [drivers/usb/host/ehci-spear.ko] undefined!
ERROR: "printk" [drivers/usb/host/ehci-spear.ko] undefined!
ERROR: "clk_enable" [drivers/usb/host/ehci-spear.ko] undefined!
ERROR: "device_wakeup_enable" [drivers/usb/host/ehci-spear.ko] undefined!
ERROR: "usb_add_hcd" [drivers/usb/host/ehci-spear.ko] undefined!
ERROR: "clk_prepare" [drivers/usb/host/ehci-spear.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/usb/host/ehci-spear.ko] undefined!
ERROR: "platform_get_resource" [drivers/usb/host/ehci-spear.ko] undefined!
ERROR: "usb_create_hcd" [drivers/usb/host/ehci-spear.ko] undefined!
ERROR: "devm_clk_get" [drivers/usb/host/ehci-spear.ko] undefined!
ERROR: "dma_set_coherent_mask" [drivers/usb/host/ehci-spear.ko] undefined!
ERROR: "_dev_err" [drivers/usb/host/ehci-spear.ko] undefined!
ERROR: "dma_set_mask" [drivers/usb/host/ehci-spear.ko] undefined!
ERROR: "platform_get_irq" [drivers/usb/host/ehci-spear.ko] undefined!
ERROR: "usb_disabled" [drivers/usb/host/ehci-spear.ko] undefined!
ERROR: "usb_put_hcd" [drivers/usb/host/ehci-spear.ko] undefined!
ERROR: "clk_unprepare" [drivers/usb/host/ehci-spear.ko] undefined!
ERROR: "clk_disable" [drivers/usb/host/ehci-spear.ko] undefined!
ERROR: "usb_remove_hcd" [drivers/usb/host/ehci-spear.ko] undefined!
ERROR: "ehci_suspend" [drivers/usb/host/ehci-spear.ko] undefined!
ERROR: "ehci_resume" [drivers/usb/host/ehci-spear.ko] undefined!
ERROR: "usb_hcd_platform_shutdown" [drivers/usb/host/ehci-orion.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/usb/host/ehci-orion.ko] undefined!
ERROR: "__platform_driver_register" [drivers/usb/host/ehci-orion.ko] undefined!
ERROR: "ehci_init_driver" [drivers/usb/host/ehci-orion.ko] undefined!
ERROR: "printk" [drivers/usb/host/ehci-orion.ko] undefined!
ERROR: "_dev_err" [drivers/usb/host/ehci-orion.ko] undefined!
ERROR: "_dev_warn" [drivers/usb/host/ehci-orion.ko] undefined!
ERROR: "clk_enable" [drivers/usb/host/ehci-orion.ko] undefined!
ERROR: "clk_prepare" [drivers/usb/host/ehci-orion.ko] undefined!
ERROR: "device_wakeup_enable" [drivers/usb/host/ehci-orion.ko] undefined!
ERROR: "usb_add_hcd" [drivers/usb/host/ehci-orion.ko] undefined!
ERROR: "devm_phy_optional_get" [drivers/usb/host/ehci-orion.ko] undefined!
ERROR: "devm_clk_get" [drivers/usb/host/ehci-orion.ko] undefined!
ERROR: "usb_create_hcd" [drivers/usb/host/ehci-orion.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/usb/host/ehci-orion.ko] undefined!
ERROR: "platform_get_resource" [drivers/usb/host/ehci-orion.ko] undefined!
ERROR: "dma_set_coherent_mask" [drivers/usb/host/ehci-orion.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/usb/host/ehci-orion.ko] undefined!
ERROR: "dma_set_mask" [drivers/usb/host/ehci-orion.ko] undefined!
ERROR: "platform_get_irq" [drivers/usb/host/ehci-orion.ko] undefined!
ERROR: "usb_disabled" [drivers/usb/host/ehci-orion.ko] undefined!
ERROR: "of_device_is_compatible" [drivers/usb/host/ehci-orion.ko] undefined!
ERROR: "ehci_setup" [drivers/usb/host/ehci-orion.ko] undefined!
ERROR: "clk_unprepare" [drivers/usb/host/ehci-orion.ko] undefined!
ERROR: "clk_disable" [drivers/usb/host/ehci-orion.ko] undefined!
ERROR: "usb_put_hcd" [drivers/usb/host/ehci-orion.ko] undefined!
ERROR: "usb_remove_hcd" [drivers/usb/host/ehci-orion.ko] undefined!
ERROR: "ehci_suspend" [drivers/usb/host/ehci-orion.ko] undefined!
ERROR: "ehci_resume" [drivers/usb/host/ehci-orion.ko] undefined!
ERROR: "platform_bus_type" [drivers/usb/host/ehci-npcm7xx.ko] undefined!
ERROR: "usb_hcd_platform_shutdown" [drivers/usb/host/ehci-npcm7xx.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/usb/host/ehci-npcm7xx.ko] undefined!
ERROR: "__platform_driver_register" [drivers/usb/host/ehci-npcm7xx.ko] undefined!
ERROR: "ehci_init_driver" [drivers/usb/host/ehci-npcm7xx.ko] undefined!
ERROR: "printk" [drivers/usb/host/ehci-npcm7xx.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/host/ehci-npcm7xx.ko] undefined!
ERROR: "device_wakeup_enable" [drivers/usb/host/ehci-npcm7xx.ko] undefined!
ERROR: "usb_add_hcd" [drivers/usb/host/ehci-npcm7xx.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/usb/host/ehci-npcm7xx.ko] undefined!
ERROR: "platform_get_resource" [drivers/usb/host/ehci-npcm7xx.ko] undefined!
ERROR: "usb_create_hcd" [drivers/usb/host/ehci-npcm7xx.ko] undefined!
ERROR: "dma_set_coherent_mask" [drivers/usb/host/ehci-npcm7xx.ko] undefined!
ERROR: "_dev_err" [drivers/usb/host/ehci-npcm7xx.ko] undefined!
ERROR: "dma_set_mask" [drivers/usb/host/ehci-npcm7xx.ko] undefined!
ERROR: "platform_get_irq" [drivers/usb/host/ehci-npcm7xx.ko] undefined!
ERROR: "usb_disabled" [drivers/usb/host/ehci-npcm7xx.ko] undefined!
ERROR: "__const_udelay" [drivers/usb/host/ehci-npcm7xx.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/usb/host/ehci-npcm7xx.ko] undefined!
ERROR: "syscon_regmap_lookup_by_compatible" [drivers/usb/host/ehci-npcm7xx.ko] undefined!
ERROR: "usb_put_hcd" [drivers/usb/host/ehci-npcm7xx.ko] undefined!
ERROR: "usb_remove_hcd" [drivers/usb/host/ehci-npcm7xx.ko] undefined!
ERROR: "ehci_suspend" [drivers/usb/host/ehci-npcm7xx.ko] undefined!
ERROR: "ehci_resume" [drivers/usb/host/ehci-npcm7xx.ko] undefined!
ERROR: "usb_hcd_platform_shutdown" [drivers/usb/host/ehci-platform.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/usb/host/ehci-platform.ko] undefined!
ERROR: "__platform_driver_register" [drivers/usb/host/ehci-platform.ko] undefined!
ERROR: "ehci_init_driver" [drivers/usb/host/ehci-platform.ko] undefined!
ERROR: "printk" [drivers/usb/host/ehci-platform.ko] undefined!
ERROR: "ehci_setup" [drivers/usb/host/ehci-platform.ko] undefined!
ERROR: "device_wakeup_enable" [drivers/usb/host/ehci-platform.ko] undefined!
ERROR: "usb_add_hcd" [drivers/usb/host/ehci-platform.ko] undefined!
ERROR: "of_clk_get" [drivers/usb/host/ehci-platform.ko] undefined!
ERROR: "of_find_property" [drivers/usb/host/ehci-platform.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/usb/host/ehci-platform.ko] undefined!
ERROR: "platform_get_resource" [drivers/usb/host/ehci-platform.ko] undefined!
ERROR: "reset_control_deassert" [drivers/usb/host/ehci-platform.ko] undefined!
ERROR: "devm_reset_control_array_get" [drivers/usb/host/ehci-platform.ko] undefined!
ERROR: "usb_create_hcd" [drivers/usb/host/ehci-platform.ko] undefined!
ERROR: "platform_get_irq" [drivers/usb/host/ehci-platform.ko] undefined!
ERROR: "dma_set_coherent_mask" [drivers/usb/host/ehci-platform.ko] undefined!
ERROR: "_dev_err" [drivers/usb/host/ehci-platform.ko] undefined!
ERROR: "dma_set_mask" [drivers/usb/host/ehci-platform.ko] undefined!
ERROR: "usb_disabled" [drivers/usb/host/ehci-platform.ko] undefined!
ERROR: "clk_enable" [drivers/usb/host/ehci-platform.ko] undefined!
ERROR: "clk_prepare" [drivers/usb/host/ehci-platform.ko] undefined!
ERROR: "clk_unprepare" [drivers/usb/host/ehci-platform.ko] undefined!
ERROR: "clk_disable" [drivers/usb/host/ehci-platform.ko] undefined!
ERROR: "usb_put_hcd" [drivers/usb/host/ehci-platform.ko] undefined!
ERROR: "clk_put" [drivers/usb/host/ehci-platform.ko] undefined!
ERROR: "reset_control_assert" [drivers/usb/host/ehci-platform.ko] undefined!
ERROR: "usb_remove_hcd" [drivers/usb/host/ehci-platform.ko] undefined!
ERROR: "ehci_suspend" [drivers/usb/host/ehci-platform.ko] undefined!
ERROR: "ehci_resume" [drivers/usb/host/ehci-platform.ko] undefined!
ERROR: "put_device" [drivers/usb/host/ehci-platform.ko] undefined!
ERROR: "device_pm_wait_for_dev" [drivers/usb/host/ehci-platform.ko] undefined!
ERROR: "usb_of_get_companion_dev" [drivers/usb/host/ehci-platform.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/usb/host/ehci-platform.ko] undefined!
ERROR: "usb_hcd_pci_pm_ops" [drivers/usb/host/ehci-pci.ko] undefined!
ERROR: "usb_hcd_pci_shutdown" [drivers/usb/host/ehci-pci.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/usb/host/ehci-pci.ko] undefined!
ERROR: "__pci_register_driver" [drivers/usb/host/ehci-pci.ko] undefined!
ERROR: "ehci_suspend" [drivers/usb/host/ehci-pci.ko] undefined!
ERROR: "ehci_init_driver" [drivers/usb/host/ehci-pci.ko] undefined!
ERROR: "printk" [drivers/usb/host/ehci-pci.ko] undefined!
ERROR: "usb_disabled" [drivers/usb/host/ehci-pci.ko] undefined!
ERROR: "_dev_info" [drivers/usb/host/ehci-pci.ko] undefined!
ERROR: "device_set_wakeup_capable" [drivers/usb/host/ehci-pci.ko] undefined!
ERROR: "_dev_warn" [drivers/usb/host/ehci-pci.ko] undefined!
ERROR: "dma_set_coherent_mask" [drivers/usb/host/ehci-pci.ko] undefined!
ERROR: "usb_amd_hang_symptom_quirk" [drivers/usb/host/ehci-pci.ko] undefined!
ERROR: "usb_amd_quirk_pll_check" [drivers/usb/host/ehci-pci.ko] undefined!
ERROR: "pci_read_config_dword" [drivers/usb/host/ehci-pci.ko] undefined!
ERROR: "pci_read_config_word" [drivers/usb/host/ehci-pci.ko] undefined!
ERROR: "pci_write_config_byte" [drivers/usb/host/ehci-pci.ko] undefined!
ERROR: "pci_read_config_byte" [drivers/usb/host/ehci-pci.ko] undefined!
ERROR: "ehci_setup" [drivers/usb/host/ehci-pci.ko] undefined!
ERROR: "pci_find_capability" [drivers/usb/host/ehci-pci.ko] undefined!
ERROR: "ehci_resume" [drivers/usb/host/ehci-pci.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/host/ehci-pci.ko] undefined!
ERROR: "pci_set_mwi" [drivers/usb/host/ehci-pci.ko] undefined!
ERROR: "usb_hcd_pci_probe" [drivers/usb/host/ehci-pci.ko] undefined!
ERROR: "pci_match_id" [drivers/usb/host/ehci-pci.ko] undefined!
ERROR: "usb_hcd_pci_remove" [drivers/usb/host/ehci-pci.ko] undefined!
ERROR: "pci_clear_mwi" [drivers/usb/host/ehci-pci.ko] undefined!
ERROR: "param_ops_int" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "param_ops_uint" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "param_ops_bool" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "default_llseek" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "debugfs_remove" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "usb_debug_root" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "usb_hcds_loaded" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "printk" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "usb_disabled" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "usb_root_hub_lost_power" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "usb_amd_dev_put" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "debugfs_remove_recursive" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "device_remove_file" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "dma_alloc_attrs" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "dma_pool_create" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "hrtimer_init" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "strcat" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "sprintf" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "usb_amd_quirk_pll_disable" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "usb_hcd_link_urb_to_ep" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "usb_hcd_resume_root_hub" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "usb_hc_died" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "usb_hcd_poll_rh_status" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "usb_hcd_check_unlink_urb" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "schedule_timeout_uninterruptible" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "__warn_printk" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "usb_amd_quirk_pll_enable" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "device_create_file" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "debugfs_create_file" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "debugfs_create_dir" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "ktime_get_with_offset" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "up_write" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "down_write" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "ehci_cf_port_reset_rwsem" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "usb_calc_bus_time" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "__kmalloc" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "pci_read_config_dword" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "pci_bus_type" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "dbgp_external_startup" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "dbgp_reset_prep" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "usb_for_each_dev" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "usleep_range" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "usb_hcd_start_port_resume" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "_dev_err" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "usb_hcd_end_port_resume" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "sg_next" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "strlen" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "vmalloc" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "simple_read_from_buffer" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "mutex_unlock" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "__mutex_init" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "vfree" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "sscanf" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "_dev_warn" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "_dev_info" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "kstrtouint" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "hrtimer_cancel" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "dma_free_attrs" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "dma_pool_destroy" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "kmalloc_caches" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "dma_pool_alloc" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "find_next_bit" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "find_first_bit" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "hrtimer_start_range_ns" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "ktime_get" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "kfree" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "__list_add_valid" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "dma_pool_free" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "usb_hcd_giveback_urb" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "usb_hcd_unlink_urb_from_ep" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "usb_hub_clear_tt_buffer" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "synchronize_irq" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "mod_timer" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "jiffies" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "msleep" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "scnprintf" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "_raw_spin_unlock_irq" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "_raw_spin_lock_irq" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "__const_udelay" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/usb/host/ehci-hcd.ko] undefined!
ERROR: "bus_find_device" [drivers/usb/phy/phy-isp1301.ko] undefined!
ERROR: "i2c_bus_type" [drivers/usb/phy/phy-isp1301.ko] undefined!
ERROR: "i2c_del_driver" [drivers/usb/phy/phy-isp1301.ko] undefined!
ERROR: "i2c_register_driver" [drivers/usb/phy/phy-isp1301.ko] undefined!
ERROR: "usb_add_phy_dev" [drivers/usb/phy/phy-isp1301.ko] undefined!
ERROR: "__mutex_init" [drivers/usb/phy/phy-isp1301.ko] undefined!
ERROR: "devm_kmalloc" [drivers/usb/phy/phy-isp1301.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/usb/phy/phy-isp1301.ko] undefined!
ERROR: "usb_remove_phy" [drivers/usb/phy/phy-isp1301.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/usb/phy/phy-tegra-usb.ko] undefined!
ERROR: "__platform_driver_register" [drivers/usb/phy/phy-tegra-usb.ko] undefined!
ERROR: "reset_control_deassert" [drivers/usb/phy/phy-tegra-usb.ko] undefined!
ERROR: "regulator_enable" [drivers/usb/phy/phy-tegra-usb.ko] undefined!
ERROR: "clk_get_rate" [drivers/usb/phy/phy-tegra-usb.ko] undefined!
ERROR: "clk_get_parent" [drivers/usb/phy/phy-tegra-usb.ko] undefined!
ERROR: "regulator_disable" [drivers/usb/phy/phy-tegra-usb.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/usb/phy/phy-tegra-usb.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/usb/phy/phy-tegra-usb.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/usb/phy/phy-tegra-usb.ko] undefined!
ERROR: "gpiod_set_value_cansleep" [drivers/usb/phy/phy-tegra-usb.ko] undefined!
ERROR: "clk_unprepare" [drivers/usb/phy/phy-tegra-usb.ko] undefined!
ERROR: "clk_disable" [drivers/usb/phy/phy-tegra-usb.ko] undefined!
ERROR: "__const_udelay" [drivers/usb/phy/phy-tegra-usb.ko] undefined!
ERROR: "reset_control_assert" [drivers/usb/phy/phy-tegra-usb.ko] undefined!
ERROR: "clk_enable" [drivers/usb/phy/phy-tegra-usb.ko] undefined!
ERROR: "clk_prepare" [drivers/usb/phy/phy-tegra-usb.ko] undefined!
ERROR: "usleep_range" [drivers/usb/phy/phy-tegra-usb.ko] undefined!
ERROR: "__might_sleep" [drivers/usb/phy/phy-tegra-usb.ko] undefined!
ERROR: "ktime_get" [drivers/usb/phy/phy-tegra-usb.ko] undefined!
ERROR: "usb_add_phy_dev" [drivers/usb/phy/phy-tegra-usb.ko] undefined!
ERROR: "devm_otg_ulpi_create" [drivers/usb/phy/phy-tegra-usb.ko] undefined!
ERROR: "ulpi_viewport_access_ops" [drivers/usb/phy/phy-tegra-usb.ko] undefined!
ERROR: "devm_gpiod_get_from_of_node" [drivers/usb/phy/phy-tegra-usb.ko] undefined!
ERROR: "__devm_reset_control_get" [drivers/usb/phy/phy-tegra-usb.ko] undefined!
ERROR: "of_usb_get_phy_mode" [drivers/usb/phy/phy-tegra-usb.ko] undefined!
ERROR: "devm_clk_get" [drivers/usb/phy/phy-tegra-usb.ko] undefined!
ERROR: "devm_regulator_get" [drivers/usb/phy/phy-tegra-usb.ko] undefined!
ERROR: "usb_get_dr_mode" [drivers/usb/phy/phy-tegra-usb.ko] undefined!
ERROR: "of_find_property" [drivers/usb/phy/phy-tegra-usb.ko] undefined!
ERROR: "devm_ioremap" [drivers/usb/phy/phy-tegra-usb.ko] undefined!
ERROR: "platform_get_resource" [drivers/usb/phy/phy-tegra-usb.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/usb/phy/phy-tegra-usb.ko] undefined!
ERROR: "devm_kmalloc" [drivers/usb/phy/phy-tegra-usb.ko] undefined!
ERROR: "_dev_err" [drivers/usb/phy/phy-tegra-usb.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/usb/phy/phy-tegra-usb.ko] undefined!
ERROR: "usb_remove_phy" [drivers/usb/phy/phy-tegra-usb.ko] undefined!
ERROR: "sys_imageblit" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "sys_copyarea" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "sys_fillrect" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "fb_sys_write" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "fb_sys_read" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "i2c_del_driver" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "i2c_register_driver" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "i2c_smbus_write_i2c_block_data" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "_dev_warn" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "devm_backlight_device_register" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "input_register_device" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "matrix_keypad_build_keymap" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "matrix_keypad_parse_properties" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "of_get_property" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "devm_input_allocate_device" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "register_framebuffer" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "init_timer_key" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "delayed_work_timer_fn" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "lockdep_init_map" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "fb_bl_default_curve" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "framebuffer_alloc" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "get_zeroed_page" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "i2c_smbus_write_block_data" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "devm_kmalloc" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "queue_delayed_work_on" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "system_wq" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "disable_irq" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "__wake_up" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "enable_irq" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "_dev_err" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "schedule_timeout" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "finish_wait" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "init_wait_entry" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "find_next_bit" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "input_event" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "find_first_bit" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "i2c_smbus_read_i2c_block_data" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "__might_sleep" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "__msecs_to_jiffies" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "i2c_smbus_write_byte" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "vm_map_pages_zero" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "mem_section" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "__phys_addr" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "free_pages" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "framebuffer_release" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "unregister_framebuffer" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "cancel_delayed_work_sync" [drivers/auxdisplay/ht16k33.ko] undefined!
ERROR: "kmalloc_caches" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "pci_write_config_dword" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "__kmalloc" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "msleep" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "fw_core_handle_bus_reset" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "pci_release_region" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "param_ops_int" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "ktime_get_seconds" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "pci_disable_device" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "__warn_printk" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "cancel_work_sync" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "__const_udelay" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "fw_card_initialize" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "param_ops_bool" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "mutex_unlock" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "fw_schedule_bus_reset" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "dma_free_attrs" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "_dev_notice" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "sprintf" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "__alloc_pages_nodemask" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "fw_fill_response" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "fw_core_handle_response" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "pci_set_master" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "__default_kernel_pte_mask" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "pci_restore_state" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "pci_iounmap" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "__mutex_init" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "vmap" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "__tasklet_schedule" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "_raw_spin_unlock_irq" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "dma_direct_map_page" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "dma_alloc_attrs" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "mem_section" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "destroy_workqueue" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "tasklet_init" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "request_threaded_irq" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "_dev_err" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "__list_add_valid" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "fw_core_remove_card" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "tasklet_kill" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "__free_pages" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "__get_free_pages" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "_raw_spin_lock_irq" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "dump_stack" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "fw_core_handle_request" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "dev_driver_string" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "fw_card_add" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "__phys_addr" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "free_pages" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "pci_set_power_state" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "kfree" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "vunmap" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "__printk_ratelimit" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "__pci_register_driver" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "lockdep_init_map" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "__sw_hweight32" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "queue_work_on" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "snprintf" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "pci_choose_state" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "memmove" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "pci_iomap" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "pci_enable_device" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "alloc_workqueue" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "pci_request_region" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "dma_ops" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "is_vmalloc_addr" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "free_irq" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "pci_save_state" [drivers/firewire/firewire-ohci.ko] undefined!
ERROR: "rcu_lock_map" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "__unregister_chrdev" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "system_wq" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "bus_register" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "kmalloc_caches" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "__kmalloc" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "msleep" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "up_read" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "vm_map_pages_zero" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "del_timer" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "crc_itu_t" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "no_llseek" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "__might_fault" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "kobject_uevent" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "delayed_work_timer_fn" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "__warn_printk" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "__get_user_4" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "kmemdup" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "__register_chrdev" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "init_timer_key" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "mutex_unlock" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "__preempt_count" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "idr_for_each" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "sprintf" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "get_jiffies_64" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "trace_hardirqs_on" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "__alloc_pages_nodemask" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "nonseekable_open" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "jiffies" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "__might_sleep" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "down_read" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "lock_release" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "_copy_to_user" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "wait_for_completion" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "lock_acquire" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "cancel_delayed_work" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "idr_destroy" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "device_register" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "_ctype" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "debug_lockdep_rcu_enabled" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "current_task" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "__mutex_init" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "device_find_child" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "printk" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "memcmp" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "ktime_get_real_ts64" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "ktime_get_raw_ts64" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "_raw_spin_unlock_irq" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "dma_direct_map_page" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "destroy_workqueue" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "idr_preload" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "mod_timer" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "idr_alloc" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "device_add" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "synchronize_rcu" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "up_write" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "down_write" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "bus_unregister" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "__list_add_valid" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "init_wait_entry" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "idr_remove" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "__free_pages" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "put_device" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "queue_delayed_work_on" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "refcount_warn_saturate" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "schedule" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "kmalloc_order_trace" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "_raw_spin_lock_irq" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "add_device_randomness" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "get_device" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "__wake_up" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "__copy_user_ll" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "device_for_each_child" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "kfree" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "device_initialize" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "lockdep_init_map" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "finish_wait" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "device_unregister" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "complete" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "snprintf" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "dev_set_name" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "ktime_get_ts64" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "wait_for_completion_timeout" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "_copy_from_user" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "trace_hardirqs_off" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "idr_find" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "alloc_workqueue" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "dma_ops" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "strcpy" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "add_uevent_var" [drivers/firewire/firewire-core.ko] undefined!
ERROR: "ethtool_op_get_ts_info" [drivers/net/tun.ko] undefined!
ERROR: "ethtool_op_get_link" [drivers/net/tun.ko] undefined!
ERROR: "eth_validate_addr" [drivers/net/tun.ko] undefined!
ERROR: "eth_mac_addr" [drivers/net/tun.ko] undefined!
ERROR: "passthru_features_check" [drivers/net/tun.ko] undefined!
ERROR: "no_llseek" [drivers/net/tun.ko] undefined!
ERROR: "unregister_netdevice_notifier" [drivers/net/tun.ko] undefined!
ERROR: "rtnl_link_unregister" [drivers/net/tun.ko] undefined!
ERROR: "misc_deregister" [drivers/net/tun.ko] undefined!
ERROR: "register_netdevice_notifier" [drivers/net/tun.ko] undefined!
ERROR: "misc_register" [drivers/net/tun.ko] undefined!
ERROR: "rtnl_link_register" [drivers/net/tun.ko] undefined!
ERROR: "__page_frag_cache_drain" [drivers/net/tun.ko] undefined!
ERROR: "dump_page" [drivers/net/tun.ko] undefined!
ERROR: "xdp_do_flush" [drivers/net/tun.ko] undefined!
ERROR: "__put_page" [drivers/net/tun.ko] undefined!
ERROR: "eth_type_trans" [drivers/net/tun.ko] undefined!
ERROR: "napi_gro_frags" [drivers/net/tun.ko] undefined!
ERROR: "eth_get_headlen" [drivers/net/tun.ko] undefined!
ERROR: "netif_receive_skb" [drivers/net/tun.ko] undefined!
ERROR: "do_xdp_generic" [drivers/net/tun.ko] undefined!
ERROR: "__skb_flow_dissect" [drivers/net/tun.ko] undefined!
ERROR: "flow_keys_basic_dissector" [drivers/net/tun.ko] undefined!
ERROR: "skb_copy_datagram_from_iter" [drivers/net/tun.ko] undefined!
ERROR: "pskb_expand_head" [drivers/net/tun.ko] undefined!
ERROR: "__napi_schedule" [drivers/net/tun.ko] undefined!
ERROR: "napi_schedule_prep" [drivers/net/tun.ko] undefined!
ERROR: "mutex_unlock" [drivers/net/tun.ko] undefined!
ERROR: "mem_section" [drivers/net/tun.ko] undefined!
ERROR: "__phys_addr" [drivers/net/tun.ko] undefined!
ERROR: "netdev_alloc_frag" [drivers/net/tun.ko] undefined!
ERROR: "iov_iter_single_seg_count" [drivers/net/tun.ko] undefined!
ERROR: "napi_get_frags" [drivers/net/tun.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/net/tun.ko] undefined!
ERROR: "skb_partial_csum_set" [drivers/net/tun.ko] undefined!
ERROR: "zerocopy_sg_from_iter" [drivers/net/tun.ko] undefined!
ERROR: "sock_alloc_send_pskb" [drivers/net/tun.ko] undefined!
ERROR: "skb_set_owner_w" [drivers/net/tun.ko] undefined!
ERROR: "skb_put" [drivers/net/tun.ko] undefined!
ERROR: "build_skb" [drivers/net/tun.ko] undefined!
ERROR: "__local_bh_enable_ip" [drivers/net/tun.ko] undefined!
ERROR: "bpf_dispatcher_xdpfunc" [drivers/net/tun.ko] undefined!
ERROR: "__local_bh_disable_ip" [drivers/net/tun.ko] undefined!
ERROR: "copy_page_from_iter" [drivers/net/tun.ko] undefined!
ERROR: "page_address" [drivers/net/tun.ko] undefined!
ERROR: "skb_page_frag_refill" [drivers/net/tun.ko] undefined!
ERROR: "iov_iter_npages" [drivers/net/tun.ko] undefined!
ERROR: "_copy_from_iter_full" [drivers/net/tun.ko] undefined!
ERROR: "__kmalloc" [drivers/net/tun.ko] undefined!
ERROR: "__skb_get_hash_symmetric" [drivers/net/tun.ko] undefined!
ERROR: "___pskb_trim" [drivers/net/tun.ko] undefined!
ERROR: "skb_tstamp_tx" [drivers/net/tun.ko] undefined!
ERROR: "skb_copy_ubufs" [drivers/net/tun.ko] undefined!
ERROR: "sched_clock" [drivers/net/tun.ko] undefined!
ERROR: "skb_tx_error" [drivers/net/tun.ko] undefined!
ERROR: "bpf_stats_enabled_key" [drivers/net/tun.ko] undefined!
ERROR: "__cant_sleep" [drivers/net/tun.ko] undefined!
ERROR: "sk_filter_trim_cap" [drivers/net/tun.ko] undefined!
ERROR: "xdp_convert_zc_to_xdp_frame" [drivers/net/tun.ko] undefined!
ERROR: "rcu_read_lock_sched_held" [drivers/net/tun.ko] undefined!
ERROR: "__tracepoint_xdp_exception" [drivers/net/tun.ko] undefined!
ERROR: "bpf_warn_invalid_xdp_action" [drivers/net/tun.ko] undefined!
ERROR: "xdp_do_redirect" [drivers/net/tun.ko] undefined!
ERROR: "xdp_return_frame_rx_napi" [drivers/net/tun.ko] undefined!
ERROR: "byte_rev_table" [drivers/net/tun.ko] undefined!
ERROR: "crc32_le" [drivers/net/tun.ko] undefined!
ERROR: "memdup_user" [drivers/net/tun.ko] undefined!
ERROR: "free_netdev" [drivers/net/tun.ko] undefined!
ERROR: "__get_user_4" [drivers/net/tun.ko] undefined!
ERROR: "netdev_update_features" [drivers/net/tun.ko] undefined!
ERROR: "register_netdevice" [drivers/net/tun.ko] undefined!
ERROR: "init_timer_key" [drivers/net/tun.ko] undefined!
ERROR: "get_random_bytes" [drivers/net/tun.ko] undefined!
ERROR: "ether_setup" [drivers/net/tun.ko] undefined!
ERROR: "__alloc_percpu_gfp" [drivers/net/tun.ko] undefined!
ERROR: "alloc_netdev_mqs" [drivers/net/tun.ko] undefined!
ERROR: "netif_tx_wake_queue" [drivers/net/tun.ko] undefined!
ERROR: "in_egroup_p" [drivers/net/tun.ko] undefined!
ERROR: "_copy_to_user" [drivers/net/tun.ko] undefined!
ERROR: "__dev_get_by_name" [drivers/net/tun.ko] undefined!
ERROR: "capable" [drivers/net/tun.ko] undefined!
ERROR: "netdev_state_change" [drivers/net/tun.ko] undefined!
ERROR: "dev_set_mac_address" [drivers/net/tun.ko] undefined!
ERROR: "open_related_ns" [drivers/net/tun.ko] undefined!
ERROR: "get_net_ns" [drivers/net/tun.ko] undefined!
ERROR: "ns_capable" [drivers/net/tun.ko] undefined!
ERROR: "init_net" [drivers/net/tun.ko] undefined!
ERROR: "__put_user_4" [drivers/net/tun.ko] undefined!
ERROR: "__might_fault" [drivers/net/tun.ko] undefined!
ERROR: "unregister_netdevice_queue" [drivers/net/tun.ko] undefined!
ERROR: "__list_add_valid" [drivers/net/tun.ko] undefined!
ERROR: "sock_recv_errqueue" [drivers/net/tun.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/net/tun.ko] undefined!
ERROR: "seq_printf" [drivers/net/tun.ko] undefined!
ERROR: "rtnl_unlock" [drivers/net/tun.ko] undefined!
ERROR: "strcpy" [drivers/net/tun.ko] undefined!
ERROR: "rtnl_lock" [drivers/net/tun.ko] undefined!
ERROR: "rcu_read_lock_held" [drivers/net/tun.ko] undefined!
ERROR: "lock_release" [drivers/net/tun.ko] undefined!
ERROR: "lock_acquire" [drivers/net/tun.ko] undefined!
ERROR: "rcu_lock_map" [drivers/net/tun.ko] undefined!
ERROR: "netif_napi_del" [drivers/net/tun.ko] undefined!
ERROR: "synchronize_net" [drivers/net/tun.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/net/tun.ko] undefined!
ERROR: "napi_disable" [drivers/net/tun.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/net/tun.ko] undefined!
ERROR: "print_hex_dump" [drivers/net/tun.ko] undefined!
ERROR: "printk" [drivers/net/tun.ko] undefined!
ERROR: "schedule" [drivers/net/tun.ko] undefined!
ERROR: "remove_wait_queue" [drivers/net/tun.ko] undefined!
ERROR: "add_wait_queue" [drivers/net/tun.ko] undefined!
ERROR: "default_wake_function" [drivers/net/tun.ko] undefined!
ERROR: "consume_skb" [drivers/net/tun.ko] undefined!
ERROR: "skb_copy_datagram_iter" [drivers/net/tun.ko] undefined!
ERROR: "iov_iter_advance" [drivers/net/tun.ko] undefined!
ERROR: "_copy_to_iter" [drivers/net/tun.ko] undefined!
ERROR: "skb_queue_purge" [drivers/net/tun.ko] undefined!
ERROR: "xdp_rxq_info_unreg" [drivers/net/tun.ko] undefined!
ERROR: "refcount_warn_saturate" [drivers/net/tun.ko] undefined!
ERROR: "kvfree" [drivers/net/tun.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/net/tun.ko] undefined!
ERROR: "sk_attach_filter" [drivers/net/tun.ko] undefined!
ERROR: "netif_napi_add" [drivers/net/tun.ko] undefined!
ERROR: "xdp_rxq_info_reg_mem_model" [drivers/net/tun.ko] undefined!
ERROR: "xdp_rxq_info_reg" [drivers/net/tun.ko] undefined!
ERROR: "netif_set_real_num_rx_queues" [drivers/net/tun.ko] undefined!
ERROR: "netif_set_real_num_tx_queues" [drivers/net/tun.ko] undefined!
ERROR: "xdp_rxq_info_is_reg" [drivers/net/tun.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/net/tun.ko] undefined!
ERROR: "sk_free" [drivers/net/tun.ko] undefined!
ERROR: "sock_init_data" [drivers/net/tun.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/net/tun.ko] undefined!
ERROR: "__mutex_init" [drivers/net/tun.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/net/tun.ko] undefined!
ERROR: "kvmalloc_node" [drivers/net/tun.ko] undefined!
ERROR: "sk_alloc" [drivers/net/tun.ko] undefined!
ERROR: "bpf_prog_put" [drivers/net/tun.ko] undefined!
ERROR: "bpf_prog_get_type_dev" [drivers/net/tun.ko] undefined!
ERROR: "_copy_from_user" [drivers/net/tun.ko] undefined!
ERROR: "lockdep_rtnl_is_held" [drivers/net/tun.ko] undefined!
ERROR: "release_sock" [drivers/net/tun.ko] undefined!
ERROR: "sk_detach_filter" [drivers/net/tun.ko] undefined!
ERROR: "lock_sock_nested" [drivers/net/tun.ko] undefined!
ERROR: "del_timer" [drivers/net/tun.ko] undefined!
ERROR: "free_percpu" [drivers/net/tun.ko] undefined!
ERROR: "netif_tx_stop_all_queues" [drivers/net/tun.ko] undefined!
ERROR: "strlcpy" [drivers/net/tun.ko] undefined!
ERROR: "lockdep_rcu_suspicious" [drivers/net/tun.ko] undefined!
ERROR: "lock_is_held_type" [drivers/net/tun.ko] undefined!
ERROR: "debug_lockdep_rcu_enabled" [drivers/net/tun.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/net/tun.ko] undefined!
ERROR: "kmalloc_caches" [drivers/net/tun.ko] undefined!
ERROR: "kfree" [drivers/net/tun.ko] undefined!
ERROR: "bpf_prog_destroy" [drivers/net/tun.ko] undefined!
ERROR: "nla_put" [drivers/net/tun.ko] undefined!
ERROR: "sprintf" [drivers/net/tun.ko] undefined!
ERROR: "netif_carrier_off" [drivers/net/tun.ko] undefined!
ERROR: "netif_carrier_on" [drivers/net/tun.ko] undefined!
ERROR: "napi_complete_done" [drivers/net/tun.ko] undefined!
ERROR: "napi_gro_receive" [drivers/net/tun.ko] undefined!
ERROR: "mod_timer" [drivers/net/tun.ko] undefined!
ERROR: "round_jiffies_up" [drivers/net/tun.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/net/tun.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/net/tun.ko] undefined!
ERROR: "jiffies" [drivers/net/tun.ko] undefined!
ERROR: "kill_fasync" [drivers/net/tun.ko] undefined!
ERROR: "__wake_up_sync_key" [drivers/net/tun.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/net/tun.ko] undefined!
ERROR: "_raw_spin_unlock_bh" [drivers/net/tun.ko] undefined!
ERROR: "_raw_spin_lock_bh" [drivers/net/tun.ko] undefined!
ERROR: "call_rcu" [drivers/net/tun.ko] undefined!
ERROR: "__f_setown" [drivers/net/tun.ko] undefined!
ERROR: "current_task" [drivers/net/tun.ko] undefined!
ERROR: "fasync_helper" [drivers/net/tun.ko] undefined!
ERROR: "kfree_skb" [drivers/net/tun.ko] undefined!
ERROR: "xdp_return_frame" [drivers/net/tun.ko] undefined!
ERROR: "__preempt_count" [drivers/net/tun.ko] undefined!
  CC      arch/x86/boot/compressed/acpi.o
  CC      arch/x86/boot/compressed/early_serial_console.o
ERROR: "msleep" [drivers/nfc/s3fwrn5/s3fwrn5_i2c.ko] undefined!
ERROR: "s3fwrn5_recv_frame" [drivers/nfc/s3fwrn5/s3fwrn5_i2c.ko] undefined!
ERROR: "i2c_del_driver" [drivers/nfc/s3fwrn5/s3fwrn5_i2c.ko] undefined!
ERROR: "gpio_to_desc" [drivers/nfc/s3fwrn5/s3fwrn5_i2c.ko] undefined!
ERROR: "mutex_unlock" [drivers/nfc/s3fwrn5/s3fwrn5_i2c.ko] undefined!
ERROR: "__mutex_init" [drivers/nfc/s3fwrn5/s3fwrn5_i2c.ko] undefined!
ERROR: "devm_gpio_request_one" [drivers/nfc/s3fwrn5/s3fwrn5_i2c.ko] undefined!
ERROR: "i2c_register_driver" [drivers/nfc/s3fwrn5/s3fwrn5_i2c.ko] undefined!
ERROR: "__alloc_skb" [drivers/nfc/s3fwrn5/s3fwrn5_i2c.ko] undefined!
ERROR: "usleep_range" [drivers/nfc/s3fwrn5/s3fwrn5_i2c.ko] undefined!
ERROR: "kfree_skb" [drivers/nfc/s3fwrn5/s3fwrn5_i2c.ko] undefined!
ERROR: "s3fwrn5_remove" [drivers/nfc/s3fwrn5/s3fwrn5_i2c.ko] undefined!
ERROR: "of_get_named_gpio_flags" [drivers/nfc/s3fwrn5/s3fwrn5_i2c.ko] undefined!
ERROR: "s3fwrn5_probe" [drivers/nfc/s3fwrn5/s3fwrn5_i2c.ko] undefined!
ERROR: "i2c_transfer_buffer_flags" [drivers/nfc/s3fwrn5/s3fwrn5_i2c.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/nfc/s3fwrn5/s3fwrn5_i2c.ko] undefined!
ERROR: "gpiod_set_raw_value" [drivers/nfc/s3fwrn5/s3fwrn5_i2c.ko] undefined!
ERROR: "skb_put" [drivers/nfc/s3fwrn5/s3fwrn5_i2c.ko] undefined!
ERROR: "devm_kmalloc" [drivers/nfc/s3fwrn5/s3fwrn5_i2c.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/nfc/s3fwrn5/s3fwrn5_i2c.ko] undefined!
ERROR: "nci_req_complete" [drivers/nfc/s3fwrn5/s3fwrn5.ko] undefined!
ERROR: "crypto_alloc_shash" [drivers/nfc/s3fwrn5/s3fwrn5.ko] undefined!
ERROR: "nci_recv_frame" [drivers/nfc/s3fwrn5/s3fwrn5.ko] undefined!
ERROR: "mutex_unlock" [drivers/nfc/s3fwrn5/s3fwrn5.ko] undefined!
ERROR: "nci_core_init" [drivers/nfc/s3fwrn5/s3fwrn5.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/nfc/s3fwrn5/s3fwrn5.ko] undefined!
ERROR: "nci_unregister_device" [drivers/nfc/s3fwrn5/s3fwrn5.ko] undefined!
ERROR: "__mutex_init" [drivers/nfc/s3fwrn5/s3fwrn5.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/nfc/s3fwrn5/s3fwrn5.ko] undefined!
ERROR: "nci_prop_cmd" [drivers/nfc/s3fwrn5/s3fwrn5.ko] undefined!
ERROR: "nci_core_reset" [drivers/nfc/s3fwrn5/s3fwrn5.ko] undefined!
ERROR: "crypto_shash_digest" [drivers/nfc/s3fwrn5/s3fwrn5.ko] undefined!
ERROR: "_dev_err" [drivers/nfc/s3fwrn5/s3fwrn5.ko] undefined!
ERROR: "_dev_info" [drivers/nfc/s3fwrn5/s3fwrn5.ko] undefined!
ERROR: "__alloc_skb" [drivers/nfc/s3fwrn5/s3fwrn5.ko] undefined!
ERROR: "kfree_skb" [drivers/nfc/s3fwrn5/s3fwrn5.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/nfc/s3fwrn5/s3fwrn5.ko] undefined!
ERROR: "wait_for_completion_interruptible_timeout" [drivers/nfc/s3fwrn5/s3fwrn5.ko] undefined!
ERROR: "crypto_destroy_tfm" [drivers/nfc/s3fwrn5/s3fwrn5.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/nfc/s3fwrn5/s3fwrn5.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/nfc/s3fwrn5/s3fwrn5.ko] undefined!
ERROR: "request_firmware" [drivers/nfc/s3fwrn5/s3fwrn5.ko] undefined!
ERROR: "complete" [drivers/nfc/s3fwrn5/s3fwrn5.ko] undefined!
ERROR: "skb_put" [drivers/nfc/s3fwrn5/s3fwrn5.ko] undefined!
ERROR: "devm_kmalloc" [drivers/nfc/s3fwrn5/s3fwrn5.ko] undefined!
ERROR: "nci_register_device" [drivers/nfc/s3fwrn5/s3fwrn5.ko] undefined!
ERROR: "release_firmware" [drivers/nfc/s3fwrn5/s3fwrn5.ko] undefined!
ERROR: "nci_allocate_device" [drivers/nfc/s3fwrn5/s3fwrn5.ko] undefined!
ERROR: "nci_free_device" [drivers/nfc/s3fwrn5/s3fwrn5.ko] undefined!
ERROR: "strcpy" [drivers/nfc/s3fwrn5/s3fwrn5.ko] undefined!
ERROR: "msleep" [drivers/nfc/nxp-nci/nxp-nci_i2c.ko] undefined!
ERROR: "i2c_del_driver" [drivers/nfc/nxp-nci/nxp-nci_i2c.ko] undefined!
ERROR: "nci_recv_frame" [drivers/nfc/nxp-nci/nxp-nci_i2c.ko] undefined!
ERROR: "devm_gpiod_get" [drivers/nfc/nxp-nci/nxp-nci_i2c.ko] undefined!
ERROR: "mutex_unlock" [drivers/nfc/nxp-nci/nxp-nci_i2c.ko] undefined!
ERROR: "nxp_nci_probe" [drivers/nfc/nxp-nci/nxp-nci_i2c.ko] undefined!
ERROR: "request_threaded_irq" [drivers/nfc/nxp-nci/nxp-nci_i2c.ko] undefined!
ERROR: "_dev_err" [drivers/nfc/nxp-nci/nxp-nci_i2c.ko] undefined!
ERROR: "devm_acpi_dev_add_driver_gpios" [drivers/nfc/nxp-nci/nxp-nci_i2c.ko] undefined!
ERROR: "i2c_register_driver" [drivers/nfc/nxp-nci/nxp-nci_i2c.ko] undefined!
ERROR: "__alloc_skb" [drivers/nfc/nxp-nci/nxp-nci_i2c.ko] undefined!
ERROR: "usleep_range" [drivers/nfc/nxp-nci/nxp-nci_i2c.ko] undefined!
ERROR: "kfree_skb" [drivers/nfc/nxp-nci/nxp-nci_i2c.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/nfc/nxp-nci/nxp-nci_i2c.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/nfc/nxp-nci/nxp-nci_i2c.ko] undefined!
ERROR: "i2c_transfer_buffer_flags" [drivers/nfc/nxp-nci/nxp-nci_i2c.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/nfc/nxp-nci/nxp-nci_i2c.ko] undefined!
ERROR: "nxp_nci_remove" [drivers/nfc/nxp-nci/nxp-nci_i2c.ko] undefined!
ERROR: "nxp_nci_fw_recv_frame" [drivers/nfc/nxp-nci/nxp-nci_i2c.ko] undefined!
ERROR: "gpiod_set_value" [drivers/nfc/nxp-nci/nxp-nci_i2c.ko] undefined!
ERROR: "skb_put" [drivers/nfc/nxp-nci/nxp-nci_i2c.ko] undefined!
ERROR: "devm_kmalloc" [drivers/nfc/nxp-nci/nxp-nci_i2c.ko] undefined!
ERROR: "free_irq" [drivers/nfc/nxp-nci/nxp-nci_i2c.ko] undefined!
ERROR: "system_wq" [drivers/nfc/nxp-nci/nxp-nci.ko] undefined!
ERROR: "cancel_work_sync" [drivers/nfc/nxp-nci/nxp-nci.ko] undefined!
ERROR: "mutex_unlock" [drivers/nfc/nxp-nci/nxp-nci.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/nfc/nxp-nci/nxp-nci.ko] undefined!
ERROR: "nci_unregister_device" [drivers/nfc/nxp-nci/nxp-nci.ko] undefined!
ERROR: "__mutex_init" [drivers/nfc/nxp-nci/nxp-nci.ko] undefined!
ERROR: "skb_pull" [drivers/nfc/nxp-nci/nxp-nci.ko] undefined!
ERROR: "__alloc_skb" [drivers/nfc/nxp-nci/nxp-nci.ko] undefined!
ERROR: "kfree_skb" [drivers/nfc/nxp-nci/nxp-nci.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/nfc/nxp-nci/nxp-nci.ko] undefined!
ERROR: "wait_for_completion_interruptible_timeout" [drivers/nfc/nxp-nci/nxp-nci.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/nfc/nxp-nci/nxp-nci.ko] undefined!
ERROR: "nfc_fw_download_done" [drivers/nfc/nxp-nci/nxp-nci.ko] undefined!
ERROR: "lockdep_init_map" [drivers/nfc/nxp-nci/nxp-nci.ko] undefined!
ERROR: "request_firmware" [drivers/nfc/nxp-nci/nxp-nci.ko] undefined!
ERROR: "queue_work_on" [drivers/nfc/nxp-nci/nxp-nci.ko] undefined!
ERROR: "complete" [drivers/nfc/nxp-nci/nxp-nci.ko] undefined!
ERROR: "skb_put" [drivers/nfc/nxp-nci/nxp-nci.ko] undefined!
ERROR: "devm_kmalloc" [drivers/nfc/nxp-nci/nxp-nci.ko] undefined!
ERROR: "nci_register_device" [drivers/nfc/nxp-nci/nxp-nci.ko] undefined!
ERROR: "release_firmware" [drivers/nfc/nxp-nci/nxp-nci.ko] undefined!
ERROR: "nci_allocate_device" [drivers/nfc/nxp-nci/nxp-nci.ko] undefined!
ERROR: "nci_free_device" [drivers/nfc/nxp-nci/nxp-nci.ko] undefined!
ERROR: "strcpy" [drivers/nfc/nxp-nci/nxp-nci.ko] undefined!
ERROR: "ndlc_probe" [drivers/nfc/st-nci/st-nci_i2c.ko] undefined!
ERROR: "disable_irq_nosync" [drivers/nfc/st-nci/st-nci_i2c.ko] undefined!
ERROR: "i2c_del_driver" [drivers/nfc/st-nci/st-nci_i2c.ko] undefined!
ERROR: "devm_gpiod_get" [drivers/nfc/st-nci/st-nci_i2c.ko] undefined!
ERROR: "ndlc_recv" [drivers/nfc/st-nci/st-nci_i2c.ko] undefined!
ERROR: "_dev_err" [drivers/nfc/st-nci/st-nci_i2c.ko] undefined!
ERROR: "devm_acpi_dev_add_driver_gpios" [drivers/nfc/st-nci/st-nci_i2c.ko] undefined!
ERROR: "i2c_register_driver" [drivers/nfc/st-nci/st-nci_i2c.ko] undefined!
ERROR: "__alloc_skb" [drivers/nfc/st-nci/st-nci_i2c.ko] undefined!
ERROR: "usleep_range" [drivers/nfc/st-nci/st-nci_i2c.ko] undefined!
ERROR: "kfree_skb" [drivers/nfc/st-nci/st-nci_i2c.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/nfc/st-nci/st-nci_i2c.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/nfc/st-nci/st-nci_i2c.ko] undefined!
ERROR: "i2c_transfer_buffer_flags" [drivers/nfc/st-nci/st-nci_i2c.ko] undefined!
ERROR: "enable_irq" [drivers/nfc/st-nci/st-nci_i2c.ko] undefined!
ERROR: "ndlc_remove" [drivers/nfc/st-nci/st-nci_i2c.ko] undefined!
ERROR: "gpiod_set_value" [drivers/nfc/st-nci/st-nci_i2c.ko] undefined!
ERROR: "skb_put" [drivers/nfc/st-nci/st-nci_i2c.ko] undefined!
ERROR: "devm_kmalloc" [drivers/nfc/st-nci/st-nci_i2c.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/nfc/st-nci/st-nci_i2c.ko] undefined!
ERROR: "device_property_present" [drivers/nfc/st-nci/st-nci_i2c.ko] undefined!
ERROR: "system_wq" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "skb_queue_head" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "kmalloc_caches" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "msleep" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "nci_req_complete" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "nci_hci_set_param" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "del_timer" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "nci_hci_dev_session_init" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "nci_recv_frame" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "nfc_vendor_cmd_reply" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "nci_hci_send_cmd" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "init_timer_key" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "nfc_se_connectivity" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "jiffies" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "nci_hci_clear_all_pipes" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "nci_hci_send_event" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "skb_dequeue_tail" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "skb_queue_purge" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "nci_unregister_device" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "nci_nfcc_loopback" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "printk" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "nci_core_conn_create" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "nci_prop_cmd" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "wait_for_completion_interruptible" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "nla_put" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "skb_push" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "mod_timer" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "nci_hci_connect_gate" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "skb_pull" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "_dev_err" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "nfc_se_transaction" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "find_first_zero_bit" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "print_hex_dump" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "skb_queue_tail" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "usleep_range" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "kfree_skb" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "nci_hci_get_param" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "nci_nfcee_mode_set" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "nfc_remove_se" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "kfree" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "scnprintf" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "lockdep_init_map" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "skb_dequeue" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "nfc_add_se" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "queue_work_on" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "complete" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "__msecs_to_jiffies" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "__nfc_alloc_vendor_cmd_reply_skb" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "devm_kmalloc" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "nci_register_device" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "nci_allocate_device" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "nci_free_device" [drivers/nfc/st-nci/st-nci.ko] undefined!
ERROR: "nfcmrvl_nci_unregister_dev" [drivers/nfc/nfcmrvl/nfcmrvl_uart.ko] undefined!
ERROR: "nfcmrvl_nci_recv_frame" [drivers/nfc/nfcmrvl/nfcmrvl_uart.ko] undefined!
ERROR: "param_ops_int" [drivers/nfc/nfcmrvl/nfcmrvl_uart.ko] undefined!
ERROR: "nci_uart_set_config" [drivers/nfc/nfcmrvl/nfcmrvl_uart.ko] undefined!
ERROR: "nfcmrvl_parse_dt" [drivers/nfc/nfcmrvl/nfcmrvl_uart.ko] undefined!
ERROR: "printk" [drivers/nfc/nfcmrvl/nfcmrvl_uart.ko] undefined!
ERROR: "of_find_property" [drivers/nfc/nfcmrvl/nfcmrvl_uart.ko] undefined!
ERROR: "usleep_range" [drivers/nfc/nfcmrvl/nfcmrvl_uart.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/nfc/nfcmrvl/nfcmrvl_uart.ko] undefined!
ERROR: "nfcmrvl_nci_register_dev" [drivers/nfc/nfcmrvl/nfcmrvl_uart.ko] undefined!
ERROR: "nci_uart_unregister" [drivers/nfc/nfcmrvl/nfcmrvl_uart.ko] undefined!
ERROR: "nci_uart_register" [drivers/nfc/nfcmrvl/nfcmrvl_uart.ko] undefined!
ERROR: "of_get_compatible_child" [drivers/nfc/nfcmrvl/nfcmrvl_uart.ko] undefined!
ERROR: "of_node_put" [drivers/nfc/nfcmrvl/nfcmrvl_uart.ko] undefined!
ERROR: "param_ops_uint" [drivers/nfc/nfcmrvl/nfcmrvl_uart.ko] undefined!
ERROR: "system_wq" [drivers/nfc/nfcmrvl/nfcmrvl_usb.ko] undefined!
ERROR: "kmalloc_caches" [drivers/nfc/nfcmrvl/nfcmrvl_usb.ko] undefined!
ERROR: "nfcmrvl_nci_unregister_dev" [drivers/nfc/nfcmrvl/nfcmrvl_usb.ko] undefined!
ERROR: "nfcmrvl_nci_recv_frame" [drivers/nfc/nfcmrvl/nfcmrvl_usb.ko] undefined!
ERROR: "usb_get_from_anchor" [drivers/nfc/nfcmrvl/nfcmrvl_usb.ko] undefined!
ERROR: "cancel_work_sync" [drivers/nfc/nfcmrvl/nfcmrvl_usb.ko] undefined!
ERROR: "usb_scuttle_anchored_urbs" [drivers/nfc/nfcmrvl/nfcmrvl_usb.ko] undefined!
ERROR: "usb_autopm_get_interface" [drivers/nfc/nfcmrvl/nfcmrvl_usb.ko] undefined!
ERROR: "usb_unanchor_urb" [drivers/nfc/nfcmrvl/nfcmrvl_usb.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/nfc/nfcmrvl/nfcmrvl_usb.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/nfc/nfcmrvl/nfcmrvl_usb.ko] undefined!
ERROR: "usb_deregister" [drivers/nfc/nfcmrvl/nfcmrvl_usb.ko] undefined!
ERROR: "_raw_spin_unlock_irq" [drivers/nfc/nfcmrvl/nfcmrvl_usb.ko] undefined!
ERROR: "_dev_err" [drivers/nfc/nfcmrvl/nfcmrvl_usb.ko] undefined!
ERROR: "_dev_info" [drivers/nfc/nfcmrvl/nfcmrvl_usb.ko] undefined!
ERROR: "usb_submit_urb" [drivers/nfc/nfcmrvl/nfcmrvl_usb.ko] undefined!
ERROR: "__alloc_skb" [drivers/nfc/nfcmrvl/nfcmrvl_usb.ko] undefined!
ERROR: "usb_kill_anchored_urbs" [drivers/nfc/nfcmrvl/nfcmrvl_usb.ko] undefined!
ERROR: "kfree_skb" [drivers/nfc/nfcmrvl/nfcmrvl_usb.ko] undefined!
ERROR: "_raw_spin_lock_irq" [drivers/nfc/nfcmrvl/nfcmrvl_usb.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/nfc/nfcmrvl/nfcmrvl_usb.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/nfc/nfcmrvl/nfcmrvl_usb.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/nfc/nfcmrvl/nfcmrvl_usb.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/nfc/nfcmrvl/nfcmrvl_usb.ko] undefined!
ERROR: "nfcmrvl_nci_register_dev" [drivers/nfc/nfcmrvl/nfcmrvl_usb.ko] undefined!
ERROR: "kfree" [drivers/nfc/nfcmrvl/nfcmrvl_usb.ko] undefined!
ERROR: "usb_register_driver" [drivers/nfc/nfcmrvl/nfcmrvl_usb.ko] undefined!
ERROR: "lockdep_init_map" [drivers/nfc/nfcmrvl/nfcmrvl_usb.ko] undefined!
ERROR: "queue_work_on" [drivers/nfc/nfcmrvl/nfcmrvl_usb.ko] undefined!
ERROR: "ktime_get_mono_fast_ns" [drivers/nfc/nfcmrvl/nfcmrvl_usb.ko] undefined!
ERROR: "skb_put" [drivers/nfc/nfcmrvl/nfcmrvl_usb.ko] undefined!
ERROR: "devm_kmalloc" [drivers/nfc/nfcmrvl/nfcmrvl_usb.ko] undefined!
ERROR: "usb_free_urb" [drivers/nfc/nfcmrvl/nfcmrvl_usb.ko] undefined!
ERROR: "usb_autopm_put_interface" [drivers/nfc/nfcmrvl/nfcmrvl_usb.ko] undefined!
ERROR: "usb_anchor_urb" [drivers/nfc/nfcmrvl/nfcmrvl_usb.ko] undefined!
ERROR: "usb_alloc_urb" [drivers/nfc/nfcmrvl/nfcmrvl_usb.ko] undefined!
ERROR: "kmalloc_caches" [drivers/nfc/nfcmrvl/nfcmrvl.ko] undefined!
ERROR: "nfc_send_to_raw_sock" [drivers/nfc/nfcmrvl/nfcmrvl.ko] undefined!
ERROR: "nci_send_cmd" [drivers/nfc/nfcmrvl/nfcmrvl.ko] undefined!
ERROR: "del_timer" [drivers/nfc/nfcmrvl/nfcmrvl.ko] undefined!
ERROR: "nci_recv_frame" [drivers/nfc/nfcmrvl/nfcmrvl.ko] undefined!
ERROR: "gpio_to_desc" [drivers/nfc/nfcmrvl/nfcmrvl.ko] undefined!
ERROR: "gpio_request_one" [drivers/nfc/nfcmrvl/nfcmrvl.ko] undefined!
ERROR: "init_timer_key" [drivers/nfc/nfcmrvl/nfcmrvl.ko] undefined!
ERROR: "jiffies" [drivers/nfc/nfcmrvl/nfcmrvl.ko] undefined!
ERROR: "nci_send_frame" [drivers/nfc/nfcmrvl/nfcmrvl.ko] undefined!
ERROR: "nci_set_config" [drivers/nfc/nfcmrvl/nfcmrvl.ko] undefined!
ERROR: "nci_unregister_device" [drivers/nfc/nfcmrvl/nfcmrvl.ko] undefined!
ERROR: "printk" [drivers/nfc/nfcmrvl/nfcmrvl.ko] undefined!
ERROR: "of_find_property" [drivers/nfc/nfcmrvl/nfcmrvl.ko] undefined!
ERROR: "skb_push" [drivers/nfc/nfcmrvl/nfcmrvl.ko] undefined!
ERROR: "destroy_workqueue" [drivers/nfc/nfcmrvl/nfcmrvl.ko] undefined!
ERROR: "mod_timer" [drivers/nfc/nfcmrvl/nfcmrvl.ko] undefined!
ERROR: "skb_pull" [drivers/nfc/nfcmrvl/nfcmrvl.ko] undefined!
ERROR: "_dev_err" [drivers/nfc/nfcmrvl/nfcmrvl.ko] undefined!
ERROR: "skb_queue_tail" [drivers/nfc/nfcmrvl/nfcmrvl.ko] undefined!
ERROR: "_dev_info" [drivers/nfc/nfcmrvl/nfcmrvl.ko] undefined!
ERROR: "__alloc_skb" [drivers/nfc/nfcmrvl/nfcmrvl.ko] undefined!
ERROR: "usleep_range" [drivers/nfc/nfcmrvl/nfcmrvl.ko] undefined!
ERROR: "kfree_skb" [drivers/nfc/nfcmrvl/nfcmrvl.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/nfc/nfcmrvl/nfcmrvl.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/nfc/nfcmrvl/nfcmrvl.ko] undefined!
ERROR: "of_get_named_gpio_flags" [drivers/nfc/nfcmrvl/nfcmrvl.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/nfc/nfcmrvl/nfcmrvl.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/nfc/nfcmrvl/nfcmrvl.ko] undefined!
ERROR: "gpio_free" [drivers/nfc/nfcmrvl/nfcmrvl.ko] undefined!
ERROR: "nfc_fw_download_done" [drivers/nfc/nfcmrvl/nfcmrvl.ko] undefined!
ERROR: "kfree" [drivers/nfc/nfcmrvl/nfcmrvl.ko] undefined!
ERROR: "gpiod_set_raw_value" [drivers/nfc/nfcmrvl/nfcmrvl.ko] undefined!
ERROR: "lockdep_init_map" [drivers/nfc/nfcmrvl/nfcmrvl.ko] undefined!
ERROR: "request_firmware" [drivers/nfc/nfcmrvl/nfcmrvl.ko] undefined!
ERROR: "skb_dequeue" [drivers/nfc/nfcmrvl/nfcmrvl.ko] undefined!
ERROR: "queue_work_on" [drivers/nfc/nfcmrvl/nfcmrvl.ko] undefined!
ERROR: "snprintf" [drivers/nfc/nfcmrvl/nfcmrvl.ko] undefined!
ERROR: "skb_put" [drivers/nfc/nfcmrvl/nfcmrvl.ko] undefined!
ERROR: "nci_register_device" [drivers/nfc/nfcmrvl/nfcmrvl.ko] undefined!
ERROR: "alloc_workqueue" [drivers/nfc/nfcmrvl/nfcmrvl.ko] undefined!
ERROR: "release_firmware" [drivers/nfc/nfcmrvl/nfcmrvl.ko] undefined!
ERROR: "nci_allocate_device" [drivers/nfc/nfcmrvl/nfcmrvl.ko] undefined!
ERROR: "nci_free_device" [drivers/nfc/nfcmrvl/nfcmrvl.ko] undefined!
ERROR: "strcpy" [drivers/nfc/nfcmrvl/nfcmrvl.ko] undefined!
ERROR: "mei_cldev_set_drvdata" [drivers/nfc/mei_phy.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/nfc/mei_phy.ko] undefined!
ERROR: "mei_cldev_register_rx_cb" [drivers/nfc/mei_phy.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/nfc/mei_phy.ko] undefined!
ERROR: "kmalloc_caches" [drivers/nfc/mei_phy.ko] undefined!
ERROR: "mei_cldev_enable" [drivers/nfc/mei_phy.ko] undefined!
ERROR: "kfree" [drivers/nfc/mei_phy.ko] undefined!
ERROR: "finish_wait" [drivers/nfc/mei_phy.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/nfc/mei_phy.ko] undefined!
ERROR: "schedule_timeout" [drivers/nfc/mei_phy.ko] undefined!
ERROR: "init_wait_entry" [drivers/nfc/mei_phy.ko] undefined!
ERROR: "__might_sleep" [drivers/nfc/mei_phy.ko] undefined!
ERROR: "mei_cldev_send" [drivers/nfc/mei_phy.ko] undefined!
ERROR: "__kmalloc" [drivers/nfc/mei_phy.ko] undefined!
ERROR: "print_hex_dump" [drivers/nfc/mei_phy.ko] undefined!
ERROR: "kfree_skb" [drivers/nfc/mei_phy.ko] undefined!
ERROR: "__wake_up" [drivers/nfc/mei_phy.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/nfc/mei_phy.ko] undefined!
ERROR: "nfc_hci_recv_frame" [drivers/nfc/mei_phy.ko] undefined!
ERROR: "skb_pull" [drivers/nfc/mei_phy.ko] undefined!
ERROR: "skb_put" [drivers/nfc/mei_phy.ko] undefined!
ERROR: "mei_cldev_recv" [drivers/nfc/mei_phy.ko] undefined!
ERROR: "__alloc_skb" [drivers/nfc/mei_phy.ko] undefined!
ERROR: "mei_cldev_get_drvdata" [drivers/nfc/mei_phy.ko] undefined!
ERROR: "mei_cldev_disable" [drivers/nfc/mei_phy.ko] undefined!
ERROR: "printk" [drivers/nfc/mei_phy.ko] undefined!
ERROR: "nfc_register_device" [drivers/nfc/pn533/pn533_i2c.ko] undefined!
ERROR: "pn533_recv_frame" [drivers/nfc/pn533/pn533_i2c.ko] undefined!
ERROR: "pn533_finalize_setup" [drivers/nfc/pn533/pn533_i2c.ko] undefined!
ERROR: "i2c_del_driver" [drivers/nfc/pn533/pn533_i2c.ko] undefined!
ERROR: "pn532_i2c_nfc_alloc" [drivers/nfc/pn533/pn533_i2c.ko] undefined!
ERROR: "skb_trim" [drivers/nfc/pn533/pn533_i2c.ko] undefined!
ERROR: "pn53x_unregister_nfc" [drivers/nfc/pn533/pn533_i2c.ko] undefined!
ERROR: "request_threaded_irq" [drivers/nfc/pn533/pn533_i2c.ko] undefined!
ERROR: "skb_pull" [drivers/nfc/pn533/pn533_i2c.ko] undefined!
ERROR: "_dev_err" [drivers/nfc/pn533/pn533_i2c.ko] undefined!
ERROR: "i2c_register_driver" [drivers/nfc/pn533/pn533_i2c.ko] undefined!
ERROR: "print_hex_dump" [drivers/nfc/pn533/pn533_i2c.ko] undefined!
ERROR: "__alloc_skb" [drivers/nfc/pn533/pn533_i2c.ko] undefined!
ERROR: "pn53x_common_clean" [drivers/nfc/pn533/pn533_i2c.ko] undefined!
ERROR: "usleep_range" [drivers/nfc/pn533/pn533_i2c.ko] undefined!
ERROR: "put_device" [drivers/nfc/pn533/pn533_i2c.ko] undefined!
ERROR: "kfree_skb" [drivers/nfc/pn533/pn533_i2c.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/nfc/pn533/pn533_i2c.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/nfc/pn533/pn533_i2c.ko] undefined!
ERROR: "i2c_transfer_buffer_flags" [drivers/nfc/pn533/pn533_i2c.ko] undefined!
ERROR: "pn53x_common_init" [drivers/nfc/pn533/pn533_i2c.ko] undefined!
ERROR: "skb_put" [drivers/nfc/pn533/pn533_i2c.ko] undefined!
ERROR: "devm_kmalloc" [drivers/nfc/pn533/pn533_i2c.ko] undefined!
ERROR: "free_irq" [drivers/nfc/pn533/pn533_i2c.ko] undefined!
ERROR: "kmalloc_caches" [drivers/nfc/pn533/pn533_usb.ko] undefined!
ERROR: "pn533_recv_frame" [drivers/nfc/pn533/pn533_usb.ko] undefined!
ERROR: "pn533_finalize_setup" [drivers/nfc/pn533/pn533_usb.ko] undefined!
ERROR: "pn533_rx_frame_is_ack" [drivers/nfc/pn533/pn533_usb.ko] undefined!
ERROR: "usb_kill_urb" [drivers/nfc/pn533/pn533_usb.ko] undefined!
ERROR: "kmemdup" [drivers/nfc/pn533/pn533_usb.ko] undefined!
ERROR: "usb_unlink_urb" [drivers/nfc/pn533/pn533_usb.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/nfc/pn533/pn533_usb.ko] undefined!
ERROR: "wait_for_completion" [drivers/nfc/pn533/pn533_usb.ko] undefined!
ERROR: "usb_deregister" [drivers/nfc/pn533/pn533_usb.ko] undefined!
ERROR: "pn53x_unregister_nfc" [drivers/nfc/pn533/pn533_usb.ko] undefined!
ERROR: "_dev_err" [drivers/nfc/pn533/pn533_usb.ko] undefined!
ERROR: "pn53x_register_nfc" [drivers/nfc/pn533/pn533_usb.ko] undefined!
ERROR: "print_hex_dump" [drivers/nfc/pn533/pn533_usb.ko] undefined!
ERROR: "_dev_info" [drivers/nfc/pn533/pn533_usb.ko] undefined!
ERROR: "usb_submit_urb" [drivers/nfc/pn533/pn533_usb.ko] undefined!
ERROR: "__alloc_skb" [drivers/nfc/pn533/pn533_usb.ko] undefined!
ERROR: "usb_get_dev" [drivers/nfc/pn533/pn533_usb.ko] undefined!
ERROR: "pn53x_common_clean" [drivers/nfc/pn533/pn533_usb.ko] undefined!
ERROR: "usb_bulk_msg" [drivers/nfc/pn533/pn533_usb.ko] undefined!
ERROR: "usb_put_dev" [drivers/nfc/pn533/pn533_usb.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/nfc/pn533/pn533_usb.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/nfc/pn533/pn533_usb.ko] undefined!
ERROR: "pn53x_common_init" [drivers/nfc/pn533/pn533_usb.ko] undefined!
ERROR: "kfree" [drivers/nfc/pn533/pn533_usb.ko] undefined!
ERROR: "usb_register_driver" [drivers/nfc/pn533/pn533_usb.ko] undefined!
ERROR: "queue_work_on" [drivers/nfc/pn533/pn533_usb.ko] undefined!
ERROR: "complete" [drivers/nfc/pn533/pn533_usb.ko] undefined!
ERROR: "skb_put" [drivers/nfc/pn533/pn533_usb.ko] undefined!
ERROR: "devm_kmalloc" [drivers/nfc/pn533/pn533_usb.ko] undefined!
ERROR: "usb_free_urb" [drivers/nfc/pn533/pn533_usb.ko] undefined!
ERROR: "usb_alloc_urb" [drivers/nfc/pn533/pn533_usb.ko] undefined!
ERROR: "nfc_unregister_device" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "put_device" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "nfc_register_device" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "nfc_allocate_device" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "destroy_workqueue" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "alloc_workqueue" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "init_timer_key" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "delayed_work_timer_fn" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "lockdep_init_map" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "__mutex_init" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "_dev_info" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "printk" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "print_hex_dump" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "nfc_tm_activated" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "flush_delayed_work" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "del_timer" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "skb_trim" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "nfc_tm_data_received" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "skb_queue_tail" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "skb_pull" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "skb_queue_purge" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "skb_dequeue" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "nfc_tm_deactivated" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "nfc_dep_link_is_up" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "nfc_targets_found" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "nfc_set_remote_general_bytes" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "mod_timer" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "jiffies" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "nfc_get_local_general_bytes" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "get_random_bytes" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "queue_delayed_work_on" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "wait_for_completion" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "__list_add_valid" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "mutex_unlock" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "queue_work_on" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "kfree" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "kmalloc_caches" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "skb_put" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "skb_push" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "complete" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "__alloc_skb" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "_dev_err" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "consume_skb" [drivers/nfc/pn533/pn533.ko] undefined!
ERROR: "nfc_hci_recv_frame" [drivers/nfc/microread/microread_i2c.ko] undefined!
ERROR: "i2c_del_driver" [drivers/nfc/microread/microread_i2c.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/nfc/microread/microread_i2c.ko] undefined!
ERROR: "skb_trim" [drivers/nfc/microread/microread_i2c.ko] undefined!
ERROR: "microread_probe" [drivers/nfc/microread/microread_i2c.ko] undefined!
ERROR: "printk" [drivers/nfc/microread/microread_i2c.ko] undefined!
ERROR: "skb_push" [drivers/nfc/microread/microread_i2c.ko] undefined!
ERROR: "request_threaded_irq" [drivers/nfc/microread/microread_i2c.ko] undefined!
ERROR: "skb_pull" [drivers/nfc/microread/microread_i2c.ko] undefined!
ERROR: "_dev_err" [drivers/nfc/microread/microread_i2c.ko] undefined!
ERROR: "i2c_register_driver" [drivers/nfc/microread/microread_i2c.ko] undefined!
ERROR: "print_hex_dump" [drivers/nfc/microread/microread_i2c.ko] undefined!
ERROR: "_dev_info" [drivers/nfc/microread/microread_i2c.ko] undefined!
ERROR: "__alloc_skb" [drivers/nfc/microread/microread_i2c.ko] undefined!
ERROR: "usleep_range" [drivers/nfc/microread/microread_i2c.ko] undefined!
ERROR: "kfree_skb" [drivers/nfc/microread/microread_i2c.ko] undefined!
ERROR: "microread_remove" [drivers/nfc/microread/microread_i2c.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/nfc/microread/microread_i2c.ko] undefined!
ERROR: "i2c_transfer_buffer_flags" [drivers/nfc/microread/microread_i2c.ko] undefined!
ERROR: "skb_put" [drivers/nfc/microread/microread_i2c.ko] undefined!
ERROR: "devm_kmalloc" [drivers/nfc/microread/microread_i2c.ko] undefined!
ERROR: "free_irq" [drivers/nfc/microread/microread_i2c.ko] undefined!
ERROR: "nfc_hci_unregister_device" [drivers/nfc/microread/microread.ko] undefined!
ERROR: "nfc_hci_free_device" [drivers/nfc/microread/microread.ko] undefined!
ERROR: "nfc_hci_register_device" [drivers/nfc/microread/microread.ko] undefined!
ERROR: "nfc_hci_set_clientdata" [drivers/nfc/microread/microread.ko] undefined!
ERROR: "nfc_hci_allocate_device" [drivers/nfc/microread/microread.ko] undefined!
ERROR: "strcpy" [drivers/nfc/microread/microread.ko] undefined!
ERROR: "nfc_tm_data_received" [drivers/nfc/microread/microread.ko] undefined!
ERROR: "nfc_tm_activated" [drivers/nfc/microread/microread.ko] undefined!
ERROR: "kfree" [drivers/nfc/microread/microread.ko] undefined!
ERROR: "nfc_targets_found" [drivers/nfc/microread/microread.ko] undefined!
ERROR: "nfc_hci_sak_to_protocol" [drivers/nfc/microread/microread.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/nfc/microread/microread.ko] undefined!
ERROR: "kmalloc_caches" [drivers/nfc/microread/microread.ko] undefined!
ERROR: "nfc_hci_send_cmd" [drivers/nfc/microread/microread.ko] undefined!
ERROR: "nfc_get_local_general_bytes" [drivers/nfc/microread/microread.ko] undefined!
ERROR: "nfc_hci_set_param" [drivers/nfc/microread/microread.ko] undefined!
ERROR: "nfc_dep_link_is_up" [drivers/nfc/microread/microread.ko] undefined!
ERROR: "nfc_set_remote_general_bytes" [drivers/nfc/microread/microread.ko] undefined!
ERROR: "nfc_hci_get_param" [drivers/nfc/microread/microread.ko] undefined!
ERROR: "skb_put" [drivers/nfc/microread/microread.ko] undefined!
ERROR: "crc_ccitt" [drivers/nfc/microread/microread.ko] undefined!
ERROR: "nfc_hci_send_cmd_async" [drivers/nfc/microread/microread.ko] undefined!
ERROR: "skb_push" [drivers/nfc/microread/microread.ko] undefined!
ERROR: "printk" [drivers/nfc/microread/microread.ko] undefined!
ERROR: "nfc_hci_result_to_errno" [drivers/nfc/microread/microread.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/nfc/microread/microread.ko] undefined!
ERROR: "skb_trim" [drivers/nfc/microread/microread.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/nfc/microread/microread.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/nfc/microread/microread.ko] undefined!
ERROR: "nfc_hci_get_clientdata" [drivers/nfc/microread/microread.ko] undefined!
ERROR: "kfree_skb" [drivers/nfc/microread/microread.ko] undefined!
ERROR: "nfc_hci_send_event" [drivers/nfc/microread/microread.ko] undefined!
ERROR: "nfc_mei_phy_free" [drivers/nfc/pn544/pn544_mei.ko] undefined!
ERROR: "mei_cldev_get_drvdata" [drivers/nfc/pn544/pn544_mei.ko] undefined!
ERROR: "mei_phy_ops" [drivers/nfc/pn544/pn544_mei.ko] undefined!
ERROR: "__mei_cldev_driver_register" [drivers/nfc/pn544/pn544_mei.ko] undefined!
ERROR: "printk" [drivers/nfc/pn544/pn544_mei.ko] undefined!
ERROR: "pn544_hci_remove" [drivers/nfc/pn544/pn544_mei.ko] undefined!
ERROR: "mei_cldev_driver_unregister" [drivers/nfc/pn544/pn544_mei.ko] undefined!
ERROR: "nfc_mei_phy_alloc" [drivers/nfc/pn544/pn544_mei.ko] undefined!
ERROR: "pn544_hci_probe" [drivers/nfc/pn544/pn544_mei.ko] undefined!
ERROR: "nfc_hci_unregister_device" [drivers/nfc/pn544/pn544.ko] undefined!
ERROR: "kfree" [drivers/nfc/pn544/pn544.ko] undefined!
ERROR: "nfc_hci_free_device" [drivers/nfc/pn544/pn544.ko] undefined!
ERROR: "nfc_hci_register_device" [drivers/nfc/pn544/pn544.ko] undefined!
ERROR: "nfc_hci_set_clientdata" [drivers/nfc/pn544/pn544.ko] undefined!
ERROR: "nfc_hci_allocate_device" [drivers/nfc/pn544/pn544.ko] undefined!
ERROR: "strcpy" [drivers/nfc/pn544/pn544.ko] undefined!
ERROR: "__mutex_init" [drivers/nfc/pn544/pn544.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/nfc/pn544/pn544.ko] undefined!
ERROR: "kmalloc_caches" [drivers/nfc/pn544/pn544.ko] undefined!
ERROR: "mutex_unlock" [drivers/nfc/pn544/pn544.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/nfc/pn544/pn544.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/nfc/pn544/pn544.ko] undefined!
ERROR: "nfc_get_local_general_bytes" [drivers/nfc/pn544/pn544.ko] undefined!
ERROR: "nfc_dep_link_is_up" [drivers/nfc/pn544/pn544.ko] undefined!
ERROR: "nfc_set_remote_general_bytes" [drivers/nfc/pn544/pn544.ko] undefined!
ERROR: "print_hex_dump" [drivers/nfc/pn544/pn544.ko] undefined!
ERROR: "memmove" [drivers/nfc/pn544/pn544.ko] undefined!
ERROR: "nfc_hci_send_cmd_async" [drivers/nfc/pn544/pn544.ko] undefined!
ERROR: "printk" [drivers/nfc/pn544/pn544.ko] undefined!
ERROR: "skb_push" [drivers/nfc/pn544/pn544.ko] undefined!
ERROR: "nfc_tm_activated" [drivers/nfc/pn544/pn544.ko] undefined!
ERROR: "nfc_tm_data_received" [drivers/nfc/pn544/pn544.ko] undefined!
ERROR: "nfc_hci_target_discovered" [drivers/nfc/pn544/pn544.ko] undefined!
ERROR: "skb_pull" [drivers/nfc/pn544/pn544.ko] undefined!
ERROR: "nfc_hci_get_param" [drivers/nfc/pn544/pn544.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/nfc/pn544/pn544.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/nfc/pn544/pn544.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/nfc/pn544/pn544.ko] undefined!
ERROR: "nfc_hci_get_clientdata" [drivers/nfc/pn544/pn544.ko] undefined!
ERROR: "nfc_add_se" [drivers/nfc/pn544/pn544.ko] undefined!
ERROR: "nfc_hci_send_event" [drivers/nfc/pn544/pn544.ko] undefined!
ERROR: "kfree_skb" [drivers/nfc/pn544/pn544.ko] undefined!
ERROR: "nfc_hci_send_cmd" [drivers/nfc/pn544/pn544.ko] undefined!
ERROR: "nfc_hci_set_param" [drivers/nfc/pn544/pn544.ko] undefined!
ERROR: "nfc_find_se" [drivers/nfc/pn544/pn544.ko] undefined!
ERROR: "i2c_del_driver" [drivers/mfd/rohm-bd71828.ko] undefined!
ERROR: "i2c_register_driver" [drivers/mfd/rohm-bd71828.ko] undefined!
ERROR: "_dev_err" [drivers/mfd/rohm-bd71828.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/mfd/rohm-bd71828.ko] undefined!
ERROR: "devm_mfd_add_devices" [drivers/mfd/rohm-bd71828.ko] undefined!
ERROR: "regmap_irq_get_domain" [drivers/mfd/rohm-bd71828.ko] undefined!
ERROR: "regmap_irq_get_virq" [drivers/mfd/rohm-bd71828.ko] undefined!
ERROR: "devm_regmap_add_irq_chip" [drivers/mfd/rohm-bd71828.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/mfd/rohm-bd71828.ko] undefined!
ERROR: "devm_kmalloc" [drivers/mfd/rohm-bd71828.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/mfd/sun4i-gpadc.ko] undefined!
ERROR: "__platform_driver_register" [drivers/mfd/sun4i-gpadc.ko] undefined!
ERROR: "_dev_err" [drivers/mfd/sun4i-gpadc.ko] undefined!
ERROR: "devm_mfd_add_devices" [drivers/mfd/sun4i-gpadc.ko] undefined!
ERROR: "devm_regmap_add_irq_chip" [drivers/mfd/sun4i-gpadc.ko] undefined!
ERROR: "platform_get_irq" [drivers/mfd/sun4i-gpadc.ko] undefined!
ERROR: "regmap_write" [drivers/mfd/sun4i-gpadc.ko] undefined!
ERROR: "__devm_regmap_init_mmio_clk" [drivers/mfd/sun4i-gpadc.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/mfd/sun4i-gpadc.ko] undefined!
ERROR: "platform_get_resource" [drivers/mfd/sun4i-gpadc.ko] undefined!
ERROR: "devm_kmalloc" [drivers/mfd/sun4i-gpadc.ko] undefined!
ERROR: "of_match_node" [drivers/mfd/sun4i-gpadc.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/mfd/intel_soc_pmic_mrfld.ko] undefined!
ERROR: "__platform_driver_register" [drivers/mfd/intel_soc_pmic_mrfld.ko] undefined!
ERROR: "devm_mfd_add_devices" [drivers/mfd/intel_soc_pmic_mrfld.ko] undefined!
ERROR: "platform_get_irq" [drivers/mfd/intel_soc_pmic_mrfld.ko] undefined!
ERROR: "__devm_regmap_init" [drivers/mfd/intel_soc_pmic_mrfld.ko] undefined!
ERROR: "devm_kmalloc" [drivers/mfd/intel_soc_pmic_mrfld.ko] undefined!
ERROR: "intel_scu_ipc_ioread8" [drivers/mfd/intel_soc_pmic_mrfld.ko] undefined!
ERROR: "intel_scu_ipc_iowrite8" [drivers/mfd/intel_soc_pmic_mrfld.ko] undefined!
ERROR: "devm_mfd_add_devices" [drivers/mfd/mt6397.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/mfd/mt6397.ko] undefined!
ERROR: "irq_set_chip_data" [drivers/mfd/mt6397.ko] undefined!
ERROR: "irq_find_mapping" [drivers/mfd/mt6397.ko] undefined!
ERROR: "mutex_unlock" [drivers/mfd/mt6397.ko] undefined!
ERROR: "regmap_read" [drivers/mfd/mt6397.ko] undefined!
ERROR: "__platform_driver_register" [drivers/mfd/mt6397.ko] undefined!
ERROR: "irq_set_irq_wake" [drivers/mfd/mt6397.ko] undefined!
ERROR: "__irq_domain_add" [drivers/mfd/mt6397.ko] undefined!
ERROR: "handle_nested_irq" [drivers/mfd/mt6397.ko] undefined!
ERROR: "__mutex_init" [drivers/mfd/mt6397.ko] undefined!
ERROR: "dev_get_regmap" [drivers/mfd/mt6397.ko] undefined!
ERROR: "_dev_err" [drivers/mfd/mt6397.ko] undefined!
ERROR: "irq_set_chip_and_handler_name" [drivers/mfd/mt6397.ko] undefined!
ERROR: "irq_modify_status" [drivers/mfd/mt6397.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/mfd/mt6397.ko] undefined!
ERROR: "irq_domain_remove" [drivers/mfd/mt6397.ko] undefined!
ERROR: "platform_get_irq" [drivers/mfd/mt6397.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/mfd/mt6397.ko] undefined!
ERROR: "devm_kmalloc" [drivers/mfd/mt6397.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/mfd/mt6397.ko] undefined!
ERROR: "handle_level_irq" [drivers/mfd/mt6397.ko] undefined!
ERROR: "regmap_write" [drivers/mfd/mt6397.ko] undefined!
ERROR: "i2c_del_driver" [drivers/mfd/rt5033.ko] undefined!
ERROR: "i2c_register_driver" [drivers/mfd/rt5033.ko] undefined!
ERROR: "device_init_wakeup" [drivers/mfd/rt5033.ko] undefined!
ERROR: "devm_mfd_add_devices" [drivers/mfd/rt5033.ko] undefined!
ERROR: "regmap_irq_get_domain" [drivers/mfd/rt5033.ko] undefined!
ERROR: "_dev_err" [drivers/mfd/rt5033.ko] undefined!
ERROR: "regmap_add_irq_chip" [drivers/mfd/rt5033.ko] undefined!
ERROR: "_dev_info" [drivers/mfd/rt5033.ko] undefined!
ERROR: "regmap_read" [drivers/mfd/rt5033.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/mfd/rt5033.ko] undefined!
ERROR: "devm_kmalloc" [drivers/mfd/rt5033.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/mfd/hi655x-pmic.ko] undefined!
ERROR: "__platform_driver_register" [drivers/mfd/hi655x-pmic.ko] undefined!
ERROR: "_dev_err" [drivers/mfd/hi655x-pmic.ko] undefined!
ERROR: "_dev_warn" [drivers/mfd/hi655x-pmic.ko] undefined!
ERROR: "mfd_add_devices" [drivers/mfd/hi655x-pmic.ko] undefined!
ERROR: "regmap_irq_get_domain" [drivers/mfd/hi655x-pmic.ko] undefined!
ERROR: "regmap_add_irq_chip" [drivers/mfd/hi655x-pmic.ko] undefined!
ERROR: "devm_gpio_request_one" [drivers/mfd/hi655x-pmic.ko] undefined!
ERROR: "of_get_named_gpio_flags" [drivers/mfd/hi655x-pmic.ko] undefined!
ERROR: "regmap_write" [drivers/mfd/hi655x-pmic.ko] undefined!
ERROR: "regmap_read" [drivers/mfd/hi655x-pmic.ko] undefined!
ERROR: "__devm_regmap_init_mmio_clk" [drivers/mfd/hi655x-pmic.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/mfd/hi655x-pmic.ko] undefined!
ERROR: "platform_get_resource" [drivers/mfd/hi655x-pmic.ko] undefined!
ERROR: "devm_kmalloc" [drivers/mfd/hi655x-pmic.ko] undefined!
ERROR: "mfd_remove_devices" [drivers/mfd/hi655x-pmic.ko] undefined!
ERROR: "regmap_del_irq_chip" [drivers/mfd/hi655x-pmic.ko] undefined!
ERROR: "gpiod_to_irq" [drivers/mfd/hi655x-pmic.ko] undefined!
ERROR: "gpio_to_desc" [drivers/mfd/hi655x-pmic.ko] undefined!
ERROR: "lm3533_read" [drivers/mfd/lm3533-ctrlbank.ko] undefined!
ERROR: "lm3533_write" [drivers/mfd/lm3533-ctrlbank.ko] undefined!
ERROR: "_dev_err" [drivers/mfd/lm3533-ctrlbank.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/mfd/lm3533-ctrlbank.ko] undefined!
ERROR: "lm3533_update" [drivers/mfd/lm3533-ctrlbank.ko] undefined!
ERROR: "i2c_del_driver" [drivers/mfd/lm3533-core.ko] undefined!
ERROR: "i2c_register_driver" [drivers/mfd/lm3533-core.ko] undefined!
ERROR: "sysfs_create_group" [drivers/mfd/lm3533-core.ko] undefined!
ERROR: "mfd_add_devices" [drivers/mfd/lm3533-core.ko] undefined!
ERROR: "devm_gpio_request_one" [drivers/mfd/lm3533-core.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/mfd/lm3533-core.ko] undefined!
ERROR: "devm_kmalloc" [drivers/mfd/lm3533-core.ko] undefined!
ERROR: "kstrtou8" [drivers/mfd/lm3533-core.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/mfd/lm3533-core.ko] undefined!
ERROR: "regmap_write" [drivers/mfd/lm3533-core.ko] undefined!
ERROR: "scnprintf" [drivers/mfd/lm3533-core.ko] undefined!
ERROR: "_dev_err" [drivers/mfd/lm3533-core.ko] undefined!
ERROR: "regmap_read" [drivers/mfd/lm3533-core.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/mfd/lm3533-core.ko] undefined!
ERROR: "mfd_remove_devices" [drivers/mfd/lm3533-core.ko] undefined!
ERROR: "sysfs_remove_group" [drivers/mfd/lm3533-core.ko] undefined!
ERROR: "gpiod_set_raw_value" [drivers/mfd/lm3533-core.ko] undefined!
ERROR: "gpio_to_desc" [drivers/mfd/lm3533-core.ko] undefined!
ERROR: "i2c_del_driver" [drivers/mfd/rn5t618.ko] undefined!
ERROR: "i2c_register_driver" [drivers/mfd/rn5t618.ko] undefined!
ERROR: "_dev_warn" [drivers/mfd/rn5t618.ko] undefined!
ERROR: "_dev_err" [drivers/mfd/rn5t618.ko] undefined!
ERROR: "register_restart_handler" [drivers/mfd/rn5t618.ko] undefined!
ERROR: "of_find_property" [drivers/mfd/rn5t618.ko] undefined!
ERROR: "devm_mfd_add_devices" [drivers/mfd/rn5t618.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/mfd/rn5t618.ko] undefined!
ERROR: "devm_kmalloc" [drivers/mfd/rn5t618.ko] undefined!
ERROR: "of_match_device" [drivers/mfd/rn5t618.ko] undefined!
ERROR: "__const_udelay" [drivers/mfd/rn5t618.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/mfd/rn5t618.ko] undefined!
ERROR: "pm_power_off" [drivers/mfd/rn5t618.ko] undefined!
ERROR: "unregister_restart_handler" [drivers/mfd/rn5t618.ko] undefined!
ERROR: "i2c_del_driver" [drivers/mfd/rk808.ko] undefined!
ERROR: "i2c_register_driver" [drivers/mfd/rk808.ko] undefined!
ERROR: "of_find_property" [drivers/mfd/rk808.ko] undefined!
ERROR: "devm_mfd_add_devices" [drivers/mfd/rk808.ko] undefined!
ERROR: "regmap_irq_get_domain" [drivers/mfd/rk808.ko] undefined!
ERROR: "regmap_add_irq_chip" [drivers/mfd/rk808.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/mfd/rk808.ko] undefined!
ERROR: "register_syscore_ops" [drivers/mfd/rk808.ko] undefined!
ERROR: "_dev_info" [drivers/mfd/rk808.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/mfd/rk808.ko] undefined!
ERROR: "of_device_is_compatible" [drivers/mfd/rk808.ko] undefined!
ERROR: "devm_kmalloc" [drivers/mfd/rk808.ko] undefined!
ERROR: "_dev_warn" [drivers/mfd/rk808.ko] undefined!
ERROR: "system_state" [drivers/mfd/rk808.ko] undefined!
ERROR: "_dev_err" [drivers/mfd/rk808.ko] undefined!
ERROR: "pm_power_off_prepare" [drivers/mfd/rk808.ko] undefined!
ERROR: "pm_power_off" [drivers/mfd/rk808.ko] undefined!
ERROR: "regmap_del_irq_chip" [drivers/mfd/rk808.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/mfd/rk808.ko] undefined!
ERROR: "intel_lpss_resume" [drivers/mfd/intel-lpss-acpi.ko] undefined!
ERROR: "intel_lpss_suspend" [drivers/mfd/intel-lpss-acpi.ko] undefined!
ERROR: "intel_lpss_prepare" [drivers/mfd/intel-lpss-acpi.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/mfd/intel-lpss-acpi.ko] undefined!
ERROR: "__platform_driver_register" [drivers/mfd/intel-lpss-acpi.ko] undefined!
ERROR: "intel_lpss_probe" [drivers/mfd/intel-lpss-acpi.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/mfd/intel-lpss-acpi.ko] undefined!
ERROR: "__pm_runtime_set_status" [drivers/mfd/intel-lpss-acpi.ko] undefined!
ERROR: "platform_get_irq" [drivers/mfd/intel-lpss-acpi.ko] undefined!
ERROR: "platform_get_resource" [drivers/mfd/intel-lpss-acpi.ko] undefined!
ERROR: "devm_kmemdup" [drivers/mfd/intel-lpss-acpi.ko] undefined!
ERROR: "acpi_match_device" [drivers/mfd/intel-lpss-acpi.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/mfd/intel-lpss-acpi.ko] undefined!
ERROR: "intel_lpss_remove" [drivers/mfd/intel-lpss-acpi.ko] undefined!
ERROR: "intel_lpss_resume" [drivers/mfd/intel-lpss-pci.ko] undefined!
ERROR: "intel_lpss_suspend" [drivers/mfd/intel-lpss-pci.ko] undefined!
ERROR: "intel_lpss_prepare" [drivers/mfd/intel-lpss-pci.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/mfd/intel-lpss-pci.ko] undefined!
ERROR: "__pci_register_driver" [drivers/mfd/intel-lpss-pci.ko] undefined!
ERROR: "pm_runtime_allow" [drivers/mfd/intel-lpss-pci.ko] undefined!
ERROR: "__pm_runtime_idle" [drivers/mfd/intel-lpss-pci.ko] undefined!
ERROR: "intel_lpss_probe" [drivers/mfd/intel-lpss-pci.ko] undefined!
ERROR: "pci_try_set_mwi" [drivers/mfd/intel-lpss-pci.ko] undefined!
ERROR: "pci_set_master" [drivers/mfd/intel-lpss-pci.ko] undefined!
ERROR: "devm_kmemdup" [drivers/mfd/intel-lpss-pci.ko] undefined!
ERROR: "pcim_enable_device" [drivers/mfd/intel-lpss-pci.ko] undefined!
ERROR: "intel_lpss_remove" [drivers/mfd/intel-lpss-pci.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/mfd/intel-lpss-pci.ko] undefined!
ERROR: "pm_runtime_forbid" [drivers/mfd/intel-lpss-pci.ko] undefined!
ERROR: "debugfs_remove" [drivers/mfd/intel-lpss.ko] undefined!
ERROR: "ida_destroy" [drivers/mfd/intel-lpss.ko] undefined!
ERROR: "device_for_each_child_reverse" [drivers/mfd/intel-lpss.ko] undefined!
ERROR: "mfd_remove_devices" [drivers/mfd/intel-lpss.ko] undefined!
ERROR: "_dev_warn" [drivers/mfd/intel-lpss.ko] undefined!
ERROR: "clk_register_fractional_divider" [drivers/mfd/intel-lpss.ko] undefined!
ERROR: "dev_pm_qos_hide_latency_tolerance" [drivers/mfd/intel-lpss.ko] undefined!
ERROR: "debugfs_remove_recursive" [drivers/mfd/intel-lpss.ko] undefined!
ERROR: "clk_register_gate" [drivers/mfd/intel-lpss.ko] undefined!
ERROR: "__clk_get_name" [drivers/mfd/intel-lpss.ko] undefined!
ERROR: "debugfs_create_x32" [drivers/mfd/intel-lpss.ko] undefined!
ERROR: "mfd_add_devices" [drivers/mfd/intel-lpss.ko] undefined!
ERROR: "debugfs_create_dir" [drivers/mfd/intel-lpss.ko] undefined!
ERROR: "dev_pm_qos_expose_latency_tolerance" [drivers/mfd/intel-lpss.ko] undefined!
ERROR: "clkdev_create" [drivers/mfd/intel-lpss.ko] undefined!
ERROR: "snprintf" [drivers/mfd/intel-lpss.ko] undefined!
ERROR: "ida_free" [drivers/mfd/intel-lpss.ko] undefined!
ERROR: "clk_register_fixed_rate" [drivers/mfd/intel-lpss.ko] undefined!
ERROR: "ida_alloc_range" [drivers/mfd/intel-lpss.ko] undefined!
ERROR: "devm_kmemdup" [drivers/mfd/intel-lpss.ko] undefined!
ERROR: "devm_ioremap_uc" [drivers/mfd/intel-lpss.ko] undefined!
ERROR: "devm_kmalloc" [drivers/mfd/intel-lpss.ko] undefined!
ERROR: "clk_unregister" [drivers/mfd/intel-lpss.ko] undefined!
ERROR: "clk_get_parent" [drivers/mfd/intel-lpss.ko] undefined!
ERROR: "clkdev_drop" [drivers/mfd/intel-lpss.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/mfd/intel-lpss.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/mfd/atmel-hlcdc.ko] undefined!
ERROR: "__platform_driver_register" [drivers/mfd/atmel-hlcdc.ko] undefined!
ERROR: "devm_mfd_add_devices" [drivers/mfd/atmel-hlcdc.ko] undefined!
ERROR: "__devm_regmap_init" [drivers/mfd/atmel-hlcdc.ko] undefined!
ERROR: "devm_clk_get" [drivers/mfd/atmel-hlcdc.ko] undefined!
ERROR: "platform_get_irq" [drivers/mfd/atmel-hlcdc.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/mfd/atmel-hlcdc.ko] undefined!
ERROR: "platform_get_resource" [drivers/mfd/atmel-hlcdc.ko] undefined!
ERROR: "devm_kmalloc" [drivers/mfd/atmel-hlcdc.ko] undefined!
ERROR: "_dev_err" [drivers/mfd/atmel-hlcdc.ko] undefined!
ERROR: "__const_udelay" [drivers/mfd/atmel-hlcdc.ko] undefined!
ERROR: "ktime_get" [drivers/mfd/atmel-hlcdc.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/mfd/atmel-flexcom.ko] undefined!
ERROR: "__platform_driver_register" [drivers/mfd/atmel-flexcom.ko] undefined!
ERROR: "devm_of_platform_populate" [drivers/mfd/atmel-flexcom.ko] undefined!
ERROR: "clk_unprepare" [drivers/mfd/atmel-flexcom.ko] undefined!
ERROR: "clk_disable" [drivers/mfd/atmel-flexcom.ko] undefined!
ERROR: "clk_enable" [drivers/mfd/atmel-flexcom.ko] undefined!
ERROR: "clk_prepare" [drivers/mfd/atmel-flexcom.ko] undefined!
ERROR: "devm_clk_get" [drivers/mfd/atmel-flexcom.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/mfd/atmel-flexcom.ko] undefined!
ERROR: "platform_get_resource" [drivers/mfd/atmel-flexcom.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/mfd/atmel-flexcom.ko] undefined!
ERROR: "devm_kmalloc" [drivers/mfd/atmel-flexcom.ko] undefined!
ERROR: "__devm_regmap_init" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "disable_irq" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "system_wq" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "__kfifo_alloc" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "i2c_del_driver" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "mfd_remove_devices" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "gpio_request" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "gpio_to_desc" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "delayed_work_timer_fn" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "__const_udelay" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "init_timer_key" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "cancel_delayed_work_sync" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "mutex_unlock" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "__might_sleep" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "devm_regulator_bulk_get" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "regulator_bulk_enable" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "_dev_warn" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "__mutex_init" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "mfd_add_devices" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "__usecs_to_jiffies" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "gpiod_direction_output_raw" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "_dev_err" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "init_wait_entry" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "i2c_register_driver" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "_dev_info" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "regulator_bulk_disable" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "queue_delayed_work_on" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "schedule_timeout" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "schedule" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "jiffies_to_usecs" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "__kfifo_free" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "__wake_up" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "i2c_transfer_buffer_flags" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "gpio_free" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "enable_irq" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "lockdep_init_map" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "finish_wait" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "gpiod_set_raw_value_cansleep" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "__kfifo_in" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "queue_work_on" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "devm_kmalloc" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "regmap_write" [drivers/mfd/si476x-core.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/mfd/rdc321x-southbridge.ko] undefined!
ERROR: "__pci_register_driver" [drivers/mfd/rdc321x-southbridge.ko] undefined!
ERROR: "_dev_err" [drivers/mfd/rdc321x-southbridge.ko] undefined!
ERROR: "devm_mfd_add_devices" [drivers/mfd/rdc321x-southbridge.ko] undefined!
ERROR: "pci_enable_device" [drivers/mfd/rdc321x-southbridge.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/mfd/lpc_ich.ko] undefined!
ERROR: "__pci_register_driver" [drivers/mfd/lpc_ich.ko] undefined!
ERROR: "_dev_warn" [drivers/mfd/lpc_ich.ko] undefined!
ERROR: "printk" [drivers/mfd/lpc_ich.ko] undefined!
ERROR: "_dev_notice" [drivers/mfd/lpc_ich.ko] undefined!
ERROR: "pci_bus_read_config_dword" [drivers/mfd/lpc_ich.ko] undefined!
ERROR: "pci_bus_write_config_byte" [drivers/mfd/lpc_ich.ko] undefined!
ERROR: "strlcpy" [drivers/mfd/lpc_ich.ko] undefined!
ERROR: "mfd_add_devices" [drivers/mfd/lpc_ich.ko] undefined!
ERROR: "acpi_check_region" [drivers/mfd/lpc_ich.ko] undefined!
ERROR: "acpi_check_resource_conflict" [drivers/mfd/lpc_ich.ko] undefined!
ERROR: "pci_read_config_dword" [drivers/mfd/lpc_ich.ko] undefined!
ERROR: "devm_kmalloc" [drivers/mfd/lpc_ich.ko] undefined!
ERROR: "pci_read_config_byte" [drivers/mfd/lpc_ich.ko] undefined!
ERROR: "mfd_remove_devices" [drivers/mfd/lpc_ich.ko] undefined!
ERROR: "pci_write_config_byte" [drivers/mfd/lpc_ich.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/mfd/timberdale.ko] undefined!
ERROR: "__pci_register_driver" [drivers/mfd/timberdale.ko] undefined!
ERROR: "_dev_err" [drivers/mfd/timberdale.ko] undefined!
ERROR: "ioread32" [drivers/mfd/timberdale.ko] undefined!
ERROR: "ioremap" [drivers/mfd/timberdale.ko] undefined!
ERROR: "__request_region" [drivers/mfd/timberdale.ko] undefined!
ERROR: "pci_enable_device" [drivers/mfd/timberdale.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/mfd/timberdale.ko] undefined!
ERROR: "kmalloc_caches" [drivers/mfd/timberdale.ko] undefined!
ERROR: "sprintf" [drivers/mfd/timberdale.ko] undefined!
ERROR: "kfree" [drivers/mfd/timberdale.ko] undefined!
ERROR: "pci_disable_device" [drivers/mfd/timberdale.ko] undefined!
ERROR: "__release_region" [drivers/mfd/timberdale.ko] undefined!
ERROR: "iomem_resource" [drivers/mfd/timberdale.ko] undefined!
ERROR: "iounmap" [drivers/mfd/timberdale.ko] undefined!
ERROR: "device_remove_file" [drivers/mfd/timberdale.ko] undefined!
ERROR: "mfd_remove_devices" [drivers/mfd/timberdale.ko] undefined!
ERROR: "pcf50633_reg_read" [drivers/mfd/pcf50633-gpio.ko] undefined!
ERROR: "pcf50633_reg_set_bit_mask" [drivers/mfd/pcf50633-gpio.ko] undefined!
ERROR: "disable_irq" [drivers/mfd/pcf50633.ko] undefined!
ERROR: "regmap_raw_write" [drivers/mfd/pcf50633.ko] undefined!
ERROR: "i2c_del_driver" [drivers/mfd/pcf50633.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/mfd/pcf50633.ko] undefined!
ERROR: "mutex_unlock" [drivers/mfd/pcf50633.ko] undefined!
ERROR: "regmap_read" [drivers/mfd/pcf50633.ko] undefined!
ERROR: "sprintf" [drivers/mfd/pcf50633.ko] undefined!
ERROR: "sysfs_remove_group" [drivers/mfd/pcf50633.ko] undefined!
ERROR: "irq_set_irq_wake" [drivers/mfd/pcf50633.ko] undefined!
ERROR: "_dev_warn" [drivers/mfd/pcf50633.ko] undefined!
ERROR: "__mutex_init" [drivers/mfd/pcf50633.ko] undefined!
ERROR: "sysfs_create_group" [drivers/mfd/pcf50633.ko] undefined!
ERROR: "platform_device_alloc" [drivers/mfd/pcf50633.ko] undefined!
ERROR: "platform_device_add" [drivers/mfd/pcf50633.ko] undefined!
ERROR: "platform_device_unregister" [drivers/mfd/pcf50633.ko] undefined!
ERROR: "request_threaded_irq" [drivers/mfd/pcf50633.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/mfd/pcf50633.ko] undefined!
ERROR: "_dev_err" [drivers/mfd/pcf50633.ko] undefined!
ERROR: "i2c_register_driver" [drivers/mfd/pcf50633.ko] undefined!
ERROR: "_dev_info" [drivers/mfd/pcf50633.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/mfd/pcf50633.ko] undefined!
ERROR: "platform_device_add_data" [drivers/mfd/pcf50633.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/mfd/pcf50633.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/mfd/pcf50633.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/mfd/pcf50633.ko] undefined!
ERROR: "enable_irq" [drivers/mfd/pcf50633.ko] undefined!
ERROR: "regmap_raw_read" [drivers/mfd/pcf50633.ko] undefined!
ERROR: "devm_kmalloc" [drivers/mfd/pcf50633.ko] undefined!
ERROR: "regmap_write" [drivers/mfd/pcf50633.ko] undefined!
ERROR: "free_irq" [drivers/mfd/pcf50633.ko] undefined!
ERROR: "platform_device_put" [drivers/mfd/pcf50633.ko] undefined!
ERROR: "i2c_del_driver" [drivers/mfd/max77686.ko] undefined!
ERROR: "i2c_register_driver" [drivers/mfd/max77686.ko] undefined!
ERROR: "_dev_err" [drivers/mfd/max77686.ko] undefined!
ERROR: "devm_mfd_add_devices" [drivers/mfd/max77686.ko] undefined!
ERROR: "devm_regmap_add_irq_chip" [drivers/mfd/max77686.ko] undefined!
ERROR: "regmap_read" [drivers/mfd/max77686.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/mfd/max77686.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/mfd/max77686.ko] undefined!
ERROR: "devm_kmalloc" [drivers/mfd/max77686.ko] undefined!
ERROR: "disable_irq" [drivers/mfd/max77686.ko] undefined!
ERROR: "enable_irq" [drivers/mfd/max77686.ko] undefined!
ERROR: "irq_set_irq_wake" [drivers/mfd/max77686.ko] undefined!
ERROR: "i2c_del_driver" [drivers/mfd/max77650.ko] undefined!
ERROR: "i2c_register_driver" [drivers/mfd/max77650.ko] undefined!
ERROR: "_dev_err" [drivers/mfd/max77650.ko] undefined!
ERROR: "devm_mfd_add_devices" [drivers/mfd/max77650.ko] undefined!
ERROR: "regmap_irq_get_domain" [drivers/mfd/max77650.ko] undefined!
ERROR: "devm_regmap_add_irq_chip" [drivers/mfd/max77650.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/mfd/max77650.ko] undefined!
ERROR: "regmap_read" [drivers/mfd/max77650.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/mfd/max77650.ko] undefined!
ERROR: "i2c_del_driver" [drivers/mfd/axp20x-i2c.ko] undefined!
ERROR: "i2c_register_driver" [drivers/mfd/axp20x-i2c.ko] undefined!
ERROR: "_dev_err" [drivers/mfd/axp20x-i2c.ko] undefined!
ERROR: "axp20x_device_probe" [drivers/mfd/axp20x-i2c.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/mfd/axp20x-i2c.ko] undefined!
ERROR: "axp20x_match_device" [drivers/mfd/axp20x-i2c.ko] undefined!
ERROR: "devm_kmalloc" [drivers/mfd/axp20x-i2c.ko] undefined!
ERROR: "axp20x_device_remove" [drivers/mfd/axp20x-i2c.ko] undefined!
ERROR: "mfd_remove_devices" [drivers/mfd/axp20x.ko] undefined!
ERROR: "regmap_del_irq_chip" [drivers/mfd/axp20x.ko] undefined!
ERROR: "pm_power_off" [drivers/mfd/axp20x.ko] undefined!
ERROR: "mfd_add_devices" [drivers/mfd/axp20x.ko] undefined!
ERROR: "regmap_add_irq_chip" [drivers/mfd/axp20x.ko] undefined!
ERROR: "_dev_info" [drivers/mfd/axp20x.ko] undefined!
ERROR: "acpi_match_device" [drivers/mfd/axp20x.ko] undefined!
ERROR: "_dev_err" [drivers/mfd/axp20x.ko] undefined!
ERROR: "of_find_property" [drivers/mfd/axp20x.ko] undefined!
ERROR: "of_match_device" [drivers/mfd/axp20x.ko] undefined!
ERROR: "msleep" [drivers/mfd/axp20x.ko] undefined!
ERROR: "regmap_write" [drivers/mfd/axp20x.ko] undefined!
ERROR: "i2c_del_driver" [drivers/mfd/tps65086.ko] undefined!
ERROR: "i2c_register_driver" [drivers/mfd/tps65086.ko] undefined!
ERROR: "mfd_add_devices" [drivers/mfd/tps65086.ko] undefined!
ERROR: "regmap_irq_get_domain" [drivers/mfd/tps65086.ko] undefined!
ERROR: "_dev_err" [drivers/mfd/tps65086.ko] undefined!
ERROR: "regmap_add_irq_chip" [drivers/mfd/tps65086.ko] undefined!
ERROR: "_dev_info" [drivers/mfd/tps65086.ko] undefined!
ERROR: "regmap_read" [drivers/mfd/tps65086.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/mfd/tps65086.ko] undefined!
ERROR: "devm_kmalloc" [drivers/mfd/tps65086.ko] undefined!
ERROR: "regmap_del_irq_chip" [drivers/mfd/tps65086.ko] undefined!
ERROR: "slim_driver_unregister" [drivers/mfd/wcd934x.ko] undefined!
ERROR: "__slim_driver_register" [drivers/mfd/wcd934x.ko] undefined!
ERROR: "mfd_add_devices" [drivers/mfd/wcd934x.ko] undefined!
ERROR: "devm_regmap_add_irq_chip" [drivers/mfd/wcd934x.ko] undefined!
ERROR: "regmap_write" [drivers/mfd/wcd934x.ko] undefined!
ERROR: "_dev_info" [drivers/mfd/wcd934x.ko] undefined!
ERROR: "regmap_bulk_read" [drivers/mfd/wcd934x.ko] undefined!
ERROR: "__regmap_init_slimbus" [drivers/mfd/wcd934x.ko] undefined!
ERROR: "_dev_err" [drivers/mfd/wcd934x.ko] undefined!
ERROR: "gpiod_set_raw_value" [drivers/mfd/wcd934x.ko] undefined!
ERROR: "msleep" [drivers/mfd/wcd934x.ko] undefined!
ERROR: "gpiod_direction_output_raw" [drivers/mfd/wcd934x.ko] undefined!
ERROR: "gpio_to_desc" [drivers/mfd/wcd934x.ko] undefined!
ERROR: "usleep_range" [drivers/mfd/wcd934x.ko] undefined!
ERROR: "regulator_bulk_enable" [drivers/mfd/wcd934x.ko] undefined!
ERROR: "regulator_bulk_get" [drivers/mfd/wcd934x.ko] undefined!
ERROR: "devm_clk_get" [drivers/mfd/wcd934x.ko] undefined!
ERROR: "of_get_named_gpio_flags" [drivers/mfd/wcd934x.ko] undefined!
ERROR: "of_irq_get" [drivers/mfd/wcd934x.ko] undefined!
ERROR: "devm_kmalloc" [drivers/mfd/wcd934x.ko] undefined!
ERROR: "kfree" [drivers/mfd/wcd934x.ko] undefined!
ERROR: "mfd_remove_devices" [drivers/mfd/wcd934x.ko] undefined!
ERROR: "regulator_bulk_disable" [drivers/mfd/wcd934x.ko] undefined!
ERROR: "i2c_del_driver" [drivers/mfd/lp87565.ko] undefined!
ERROR: "i2c_register_driver" [drivers/mfd/lp87565.ko] undefined!
ERROR: "_dev_err" [drivers/mfd/lp87565.ko] undefined!
ERROR: "devm_mfd_add_devices" [drivers/mfd/lp87565.ko] undefined!
ERROR: "of_match_device" [drivers/mfd/lp87565.ko] undefined!
ERROR: "regmap_read" [drivers/mfd/lp87565.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/mfd/lp87565.ko] undefined!
ERROR: "devm_kmalloc" [drivers/mfd/lp87565.ko] undefined!
ERROR: "i2c_del_driver" [drivers/mfd/lp873x.ko] undefined!
ERROR: "i2c_register_driver" [drivers/mfd/lp873x.ko] undefined!
ERROR: "_dev_err" [drivers/mfd/lp873x.ko] undefined!
ERROR: "mfd_add_devices" [drivers/mfd/lp873x.ko] undefined!
ERROR: "regmap_read" [drivers/mfd/lp873x.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/mfd/lp873x.ko] undefined!
ERROR: "devm_kmalloc" [drivers/mfd/lp873x.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/mfd/htc-pasic3.ko] undefined!
ERROR: "__platform_driver_probe" [drivers/mfd/htc-pasic3.ko] undefined!
ERROR: "__release_region" [drivers/mfd/htc-pasic3.ko] undefined!
ERROR: "iounmap" [drivers/mfd/htc-pasic3.ko] undefined!
ERROR: "mfd_remove_devices" [drivers/mfd/htc-pasic3.ko] undefined!
ERROR: "_dev_warn" [drivers/mfd/htc-pasic3.ko] undefined!
ERROR: "mfd_add_devices" [drivers/mfd/htc-pasic3.ko] undefined!
ERROR: "_dev_err" [drivers/mfd/htc-pasic3.ko] undefined!
ERROR: "ioremap" [drivers/mfd/htc-pasic3.ko] undefined!
ERROR: "devm_kmalloc" [drivers/mfd/htc-pasic3.ko] undefined!
ERROR: "__request_region" [drivers/mfd/htc-pasic3.ko] undefined!
ERROR: "iomem_resource" [drivers/mfd/htc-pasic3.ko] undefined!
ERROR: "platform_get_resource" [drivers/mfd/htc-pasic3.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/mfd/htc-pasic3.ko] undefined!
ERROR: "pm_runtime_force_resume" [drivers/mfd/exynos-lpass.ko] undefined!
ERROR: "pm_runtime_force_suspend" [drivers/mfd/exynos-lpass.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/mfd/exynos-lpass.ko] undefined!
ERROR: "__platform_driver_register" [drivers/mfd/exynos-lpass.ko] undefined!
ERROR: "regmap_exit" [drivers/mfd/exynos-lpass.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/mfd/exynos-lpass.ko] undefined!
ERROR: "clk_disable" [drivers/mfd/exynos-lpass.ko] undefined!
ERROR: "_dev_err" [drivers/mfd/exynos-lpass.ko] undefined!
ERROR: "devm_of_platform_populate" [drivers/mfd/exynos-lpass.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/mfd/exynos-lpass.ko] undefined!
ERROR: "__pm_runtime_set_status" [drivers/mfd/exynos-lpass.ko] undefined!
ERROR: "__regmap_init_mmio_clk" [drivers/mfd/exynos-lpass.ko] undefined!
ERROR: "devm_clk_get" [drivers/mfd/exynos-lpass.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/mfd/exynos-lpass.ko] undefined!
ERROR: "platform_get_resource" [drivers/mfd/exynos-lpass.ko] undefined!
ERROR: "devm_kmalloc" [drivers/mfd/exynos-lpass.ko] undefined!
ERROR: "clk_unprepare" [drivers/mfd/exynos-lpass.ko] undefined!
ERROR: "clk_enable" [drivers/mfd/exynos-lpass.ko] undefined!
ERROR: "clk_prepare" [drivers/mfd/exynos-lpass.ko] undefined!
ERROR: "usleep_range" [drivers/mfd/exynos-lpass.ko] undefined!
ERROR: "regmap_write" [drivers/mfd/exynos-lpass.ko] undefined!
ERROR: "regmap_read" [drivers/mfd/exynos-lpass.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/mfd/cros_ec_dev.ko] undefined!
ERROR: "class_unregister" [drivers/mfd/cros_ec_dev.ko] undefined!
ERROR: "__platform_driver_register" [drivers/mfd/cros_ec_dev.ko] undefined!
ERROR: "printk" [drivers/mfd/cros_ec_dev.ko] undefined!
ERROR: "__class_register" [drivers/mfd/cros_ec_dev.ko] undefined!
ERROR: "_dev_info" [drivers/mfd/cros_ec_dev.ko] undefined!
ERROR: "_dev_warn" [drivers/mfd/cros_ec_dev.ko] undefined!
ERROR: "_dev_err" [drivers/mfd/cros_ec_dev.ko] undefined!
ERROR: "of_find_property" [drivers/mfd/cros_ec_dev.ko] undefined!
ERROR: "mfd_add_devices" [drivers/mfd/cros_ec_dev.ko] undefined!
ERROR: "cros_ec_get_sensor_count" [drivers/mfd/cros_ec_dev.ko] undefined!
ERROR: "put_device" [drivers/mfd/cros_ec_dev.ko] undefined!
ERROR: "device_add" [drivers/mfd/cros_ec_dev.ko] undefined!
ERROR: "dev_set_name" [drivers/mfd/cros_ec_dev.ko] undefined!
ERROR: "cros_ec_check_features" [drivers/mfd/cros_ec_dev.ko] undefined!
ERROR: "device_initialize" [drivers/mfd/cros_ec_dev.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/mfd/cros_ec_dev.ko] undefined!
ERROR: "kmalloc_caches" [drivers/mfd/cros_ec_dev.ko] undefined!
ERROR: "kfree" [drivers/mfd/cros_ec_dev.ko] undefined!
ERROR: "device_unregister" [drivers/mfd/cros_ec_dev.ko] undefined!
ERROR: "mfd_remove_devices" [drivers/mfd/cros_ec_dev.ko] undefined!
ERROR: "pm80x_pm_ops" [drivers/mfd/88pm805.ko] undefined!
ERROR: "i2c_del_driver" [drivers/mfd/88pm805.ko] undefined!
ERROR: "i2c_register_driver" [drivers/mfd/88pm805.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/mfd/88pm805.ko] undefined!
ERROR: "_dev_info" [drivers/mfd/88pm805.ko] undefined!
ERROR: "_dev_err" [drivers/mfd/88pm805.ko] undefined!
ERROR: "mfd_add_devices" [drivers/mfd/88pm805.ko] undefined!
ERROR: "regmap_add_irq_chip" [drivers/mfd/88pm805.ko] undefined!
ERROR: "usleep_range" [drivers/mfd/88pm805.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/mfd/88pm805.ko] undefined!
ERROR: "pm80x_init" [drivers/mfd/88pm805.ko] undefined!
ERROR: "pm80x_deinit" [drivers/mfd/88pm805.ko] undefined!
ERROR: "regmap_del_irq_chip" [drivers/mfd/88pm805.ko] undefined!
ERROR: "mfd_remove_devices" [drivers/mfd/88pm805.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/misc/xilinx_sdfec.ko] undefined!
ERROR: "printk" [drivers/misc/xilinx_sdfec.ko] undefined!
ERROR: "__platform_driver_register" [drivers/misc/xilinx_sdfec.ko] undefined!
ERROR: "__put_user_1" [drivers/misc/xilinx_sdfec.ko] undefined!
ERROR: "kfree" [drivers/misc/xilinx_sdfec.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/misc/xilinx_sdfec.ko] undefined!
ERROR: "kmalloc_caches" [drivers/misc/xilinx_sdfec.ko] undefined!
ERROR: "_copy_to_user" [drivers/misc/xilinx_sdfec.ko] undefined!
ERROR: "_copy_from_user" [drivers/misc/xilinx_sdfec.ko] undefined!
ERROR: "__get_user_1" [drivers/misc/xilinx_sdfec.ko] undefined!
ERROR: "__get_user_4" [drivers/misc/xilinx_sdfec.ko] undefined!
ERROR: "__might_fault" [drivers/misc/xilinx_sdfec.ko] undefined!
ERROR: "__wake_up" [drivers/misc/xilinx_sdfec.ko] undefined!
ERROR: "__sw_hweight32" [drivers/misc/xilinx_sdfec.ko] undefined!
ERROR: "_dev_err" [drivers/misc/xilinx_sdfec.ko] undefined!
ERROR: "clk_enable" [drivers/misc/xilinx_sdfec.ko] undefined!
ERROR: "clk_prepare" [drivers/misc/xilinx_sdfec.ko] undefined!
ERROR: "misc_register" [drivers/misc/xilinx_sdfec.ko] undefined!
ERROR: "snprintf" [drivers/misc/xilinx_sdfec.ko] undefined!
ERROR: "ida_alloc_range" [drivers/misc/xilinx_sdfec.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/misc/xilinx_sdfec.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/misc/xilinx_sdfec.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/misc/xilinx_sdfec.ko] undefined!
ERROR: "strcasecmp" [drivers/misc/xilinx_sdfec.ko] undefined!
ERROR: "of_property_read_string" [drivers/misc/xilinx_sdfec.ko] undefined!
ERROR: "platform_get_irq" [drivers/misc/xilinx_sdfec.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/misc/xilinx_sdfec.ko] undefined!
ERROR: "platform_get_resource" [drivers/misc/xilinx_sdfec.ko] undefined!
ERROR: "devm_clk_get" [drivers/misc/xilinx_sdfec.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/misc/xilinx_sdfec.ko] undefined!
ERROR: "devm_kmalloc" [drivers/misc/xilinx_sdfec.ko] undefined!
ERROR: "ioread32" [drivers/misc/xilinx_sdfec.ko] undefined!
ERROR: "dump_page" [drivers/misc/xilinx_sdfec.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/misc/xilinx_sdfec.ko] undefined!
ERROR: "__put_page" [drivers/misc/xilinx_sdfec.ko] undefined!
ERROR: "iowrite32" [drivers/misc/xilinx_sdfec.ko] undefined!
ERROR: "kmap" [drivers/misc/xilinx_sdfec.ko] undefined!
ERROR: "get_user_pages_fast" [drivers/misc/xilinx_sdfec.ko] undefined!
ERROR: "ida_free" [drivers/misc/xilinx_sdfec.ko] undefined!
ERROR: "misc_deregister" [drivers/misc/xilinx_sdfec.ko] undefined!
ERROR: "clk_unprepare" [drivers/misc/xilinx_sdfec.ko] undefined!
ERROR: "clk_disable" [drivers/misc/xilinx_sdfec.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/misc/xilinx_sdfec.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/misc/xilinx_sdfec.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/misc/xilinx_sdfec.ko] undefined!
ERROR: "acpi_bus_unregister_driver" [drivers/misc/pvpanic.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/misc/pvpanic.ko] undefined!
ERROR: "acpi_bus_register_driver" [drivers/misc/pvpanic.ko] undefined!
ERROR: "__platform_driver_register" [drivers/misc/pvpanic.ko] undefined!
ERROR: "acpi_disabled" [drivers/misc/pvpanic.ko] undefined!
ERROR: "ioremap" [drivers/misc/pvpanic.ko] undefined!
ERROR: "ioport_map" [drivers/misc/pvpanic.ko] undefined!
ERROR: "acpi_dev_resource_memory" [drivers/misc/pvpanic.ko] undefined!
ERROR: "acpi_dev_resource_io" [drivers/misc/pvpanic.ko] undefined!
ERROR: "acpi_walk_resources" [drivers/misc/pvpanic.ko] undefined!
ERROR: "acpi_bus_get_status" [drivers/misc/pvpanic.ko] undefined!
ERROR: "iounmap" [drivers/misc/pvpanic.ko] undefined!
ERROR: "atomic_notifier_chain_register" [drivers/misc/pvpanic.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/misc/pvpanic.ko] undefined!
ERROR: "platform_get_resource" [drivers/misc/pvpanic.ko] undefined!
ERROR: "iowrite8" [drivers/misc/pvpanic.ko] undefined!
ERROR: "atomic_notifier_chain_unregister" [drivers/misc/pvpanic.ko] undefined!
ERROR: "panic_notifier_list" [drivers/misc/pvpanic.ko] undefined!
ERROR: "kfree" [drivers/misc/echo/echo.ko] undefined!
ERROR: "__kmalloc" [drivers/misc/echo/echo.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/misc/echo/echo.ko] undefined!
ERROR: "kmalloc_caches" [drivers/misc/echo/echo.ko] undefined!
ERROR: "kmalloc_caches" [drivers/misc/altera-stapl/altera-stapl.ko] undefined!
ERROR: "__kmalloc" [drivers/misc/altera-stapl/altera-stapl.ko] undefined!
ERROR: "param_ops_int" [drivers/misc/altera-stapl/altera-stapl.ko] undefined!
ERROR: "strlen" [drivers/misc/altera-stapl/altera-stapl.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/misc/altera-stapl/altera-stapl.ko] undefined!
ERROR: "sprintf" [drivers/misc/altera-stapl/altera-stapl.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/misc/altera-stapl/altera-stapl.ko] undefined!
ERROR: "printk" [drivers/misc/altera-stapl/altera-stapl.ko] undefined!
ERROR: "strlcpy" [drivers/misc/altera-stapl/altera-stapl.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/misc/altera-stapl/altera-stapl.ko] undefined!
ERROR: "strncasecmp" [drivers/misc/altera-stapl/altera-stapl.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/misc/altera-stapl/altera-stapl.ko] undefined!
ERROR: "kfree" [drivers/misc/altera-stapl/altera-stapl.ko] undefined!
ERROR: "__udelay" [drivers/misc/altera-stapl/altera-stapl.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/misc/pch_phub.ko] undefined!
ERROR: "__pci_register_driver" [drivers/misc/pch_phub.ko] undefined!
ERROR: "of_machine_is_compatible" [drivers/misc/pch_phub.ko] undefined!
ERROR: "sysfs_create_bin_file" [drivers/misc/pch_phub.ko] undefined!
ERROR: "sysfs_create_file_ns" [drivers/misc/pch_phub.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/misc/pch_phub.ko] undefined!
ERROR: "pci_iomap" [drivers/misc/pch_phub.ko] undefined!
ERROR: "pci_request_regions" [drivers/misc/pch_phub.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/misc/pch_phub.ko] undefined!
ERROR: "kmalloc_caches" [drivers/misc/pch_phub.ko] undefined!
ERROR: "kfree" [drivers/misc/pch_phub.ko] undefined!
ERROR: "pci_release_regions" [drivers/misc/pch_phub.ko] undefined!
ERROR: "pci_iounmap" [drivers/misc/pch_phub.ko] undefined!
ERROR: "sysfs_remove_bin_file" [drivers/misc/pch_phub.ko] undefined!
ERROR: "sysfs_remove_file_ns" [drivers/misc/pch_phub.ko] undefined!
ERROR: "sprintf" [drivers/misc/pch_phub.ko] undefined!
ERROR: "mac_pton" [drivers/misc/pch_phub.ko] undefined!
ERROR: "pci_map_rom" [drivers/misc/pch_phub.ko] undefined!
ERROR: "mutex_unlock" [drivers/misc/pch_phub.ko] undefined!
ERROR: "pci_unmap_rom" [drivers/misc/pch_phub.ko] undefined!
ERROR: "mutex_lock_interruptible_nested" [drivers/misc/pch_phub.ko] undefined!
ERROR: "msleep" [drivers/misc/pch_phub.ko] undefined!
ERROR: "ioread8" [drivers/misc/pch_phub.ko] undefined!
ERROR: "pci_choose_state" [drivers/misc/pch_phub.ko] undefined!
ERROR: "pci_disable_device" [drivers/misc/pch_phub.ko] undefined!
ERROR: "pci_save_state" [drivers/misc/pch_phub.ko] undefined!
ERROR: "ioread32" [drivers/misc/pch_phub.ko] undefined!
ERROR: "_dev_err" [drivers/misc/pch_phub.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/misc/pch_phub.ko] undefined!
ERROR: "iowrite32" [drivers/misc/pch_phub.ko] undefined!
ERROR: "pci_enable_wake" [drivers/misc/pch_phub.ko] undefined!
ERROR: "pci_enable_device" [drivers/misc/pch_phub.ko] undefined!
ERROR: "pci_restore_state" [drivers/misc/pch_phub.ko] undefined!
ERROR: "pci_set_power_state" [drivers/misc/pch_phub.ko] undefined!
ERROR: "i2c_del_driver" [drivers/misc/ds1682.ko] undefined!
ERROR: "i2c_register_driver" [drivers/misc/ds1682.ko] undefined!
ERROR: "sysfs_create_bin_file" [drivers/misc/ds1682.ko] undefined!
ERROR: "sysfs_create_group" [drivers/misc/ds1682.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/misc/ds1682.ko] undefined!
ERROR: "sprintf" [drivers/misc/ds1682.ko] undefined!
ERROR: "i2c_smbus_read_i2c_block_data" [drivers/misc/ds1682.ko] undefined!
ERROR: "_dev_err" [drivers/misc/ds1682.ko] undefined!
ERROR: "kstrtoull" [drivers/misc/ds1682.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/misc/ds1682.ko] undefined!
ERROR: "i2c_smbus_write_i2c_block_data" [drivers/misc/ds1682.ko] undefined!
ERROR: "sysfs_remove_group" [drivers/misc/ds1682.ko] undefined!
ERROR: "sysfs_remove_bin_file" [drivers/misc/ds1682.ko] undefined!
ERROR: "class_unregister" [drivers/misc/enclosure.ko] undefined!
ERROR: "__class_register" [drivers/misc/enclosure.ko] undefined!
ERROR: "sysfs_create_link" [drivers/misc/enclosure.ko] undefined!
ERROR: "strcmp" [drivers/misc/enclosure.ko] undefined!
ERROR: "device_unregister" [drivers/misc/enclosure.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/misc/enclosure.ko] undefined!
ERROR: "kmalloc_order_trace" [drivers/misc/enclosure.ko] undefined!
ERROR: "__list_add_valid" [drivers/misc/enclosure.ko] undefined!
ERROR: "device_register" [drivers/misc/enclosure.ko] undefined!
ERROR: "dev_set_name" [drivers/misc/enclosure.ko] undefined!
ERROR: "__kmalloc" [drivers/misc/enclosure.ko] undefined!
ERROR: "mutex_unlock" [drivers/misc/enclosure.ko] undefined!
ERROR: "get_device" [drivers/misc/enclosure.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/misc/enclosure.ko] undefined!
ERROR: "sysfs_remove_link" [drivers/misc/enclosure.ko] undefined!
ERROR: "strcat" [drivers/misc/enclosure.ko] undefined!
ERROR: "strcpy" [drivers/misc/enclosure.ko] undefined!
ERROR: "strlen" [drivers/misc/enclosure.ko] undefined!
ERROR: "simple_strtoul" [drivers/misc/enclosure.ko] undefined!
ERROR: "strncmp" [drivers/misc/enclosure.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/misc/enclosure.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/misc/enclosure.ko] undefined!
ERROR: "snprintf" [drivers/misc/enclosure.ko] undefined!
ERROR: "kfree" [drivers/misc/enclosure.ko] undefined!
ERROR: "put_device" [drivers/misc/enclosure.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/misc/enclosure.ko] undefined!
ERROR: "i2c_del_driver" [drivers/misc/ics932s401.ko] undefined!
ERROR: "i2c_register_driver" [drivers/misc/ics932s401.ko] undefined!
ERROR: "sysfs_create_group" [drivers/misc/ics932s401.ko] undefined!
ERROR: "__mutex_init" [drivers/misc/ics932s401.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/misc/ics932s401.ko] undefined!
ERROR: "kmalloc_caches" [drivers/misc/ics932s401.ko] undefined!
ERROR: "mutex_unlock" [drivers/misc/ics932s401.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/misc/ics932s401.ko] undefined!
ERROR: "jiffies" [drivers/misc/ics932s401.ko] undefined!
ERROR: "sprintf" [drivers/misc/ics932s401.ko] undefined!
ERROR: "kfree" [drivers/misc/ics932s401.ko] undefined!
ERROR: "sysfs_remove_group" [drivers/misc/ics932s401.ko] undefined!
ERROR: "_dev_info" [drivers/misc/ics932s401.ko] undefined!
ERROR: "strlcpy" [drivers/misc/ics932s401.ko] undefined!
ERROR: "i2c_smbus_read_word_data" [drivers/misc/ics932s401.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/misc/ics932s401.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/misc/pti.ko] undefined!
ERROR: "put_tty_driver" [drivers/misc/pti.ko] undefined!
ERROR: "tty_unregister_driver" [drivers/misc/pti.ko] undefined!
ERROR: "__pci_register_driver" [drivers/misc/pti.ko] undefined!
ERROR: "tty_register_driver" [drivers/misc/pti.ko] undefined!
ERROR: "tty_set_operations" [drivers/misc/pti.ko] undefined!
ERROR: "tty_std_termios" [drivers/misc/pti.ko] undefined!
ERROR: "__tty_alloc_driver" [drivers/misc/pti.ko] undefined!
ERROR: "tty_standard_install" [drivers/misc/pti.ko] undefined!
ERROR: "mutex_unlock" [drivers/misc/pti.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/misc/pti.ko] undefined!
ERROR: "_dev_err" [drivers/misc/pti.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/misc/pti.ko] undefined!
ERROR: "register_console" [drivers/misc/pti.ko] undefined!
ERROR: "tty_port_register_device" [drivers/misc/pti.ko] undefined!
ERROR: "tty_port_init" [drivers/misc/pti.ko] undefined!
ERROR: "ioremap" [drivers/misc/pti.ko] undefined!
ERROR: "pci_request_region" [drivers/misc/pti.ko] undefined!
ERROR: "pci_enable_device" [drivers/misc/pti.ko] undefined!
ERROR: "misc_register" [drivers/misc/pti.ko] undefined!
ERROR: "__get_task_comm" [drivers/misc/pti.ko] undefined!
ERROR: "current_task" [drivers/misc/pti.ko] undefined!
ERROR: "strncpy" [drivers/misc/pti.ko] undefined!
ERROR: "__preempt_count" [drivers/misc/pti.ko] undefined!
ERROR: "strlen" [drivers/misc/pti.ko] undefined!
ERROR: "snprintf" [drivers/misc/pti.ko] undefined!
ERROR: "printk" [drivers/misc/pti.ko] undefined!
ERROR: "_copy_from_user" [drivers/misc/pti.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/misc/pti.ko] undefined!
ERROR: "kmalloc_caches" [drivers/misc/pti.ko] undefined!
ERROR: "iowrite32" [drivers/misc/pti.ko] undefined!
ERROR: "tty_port_open" [drivers/misc/pti.ko] undefined!
ERROR: "tty_port_close" [drivers/misc/pti.ko] undefined!
ERROR: "console_stop" [drivers/misc/pti.ko] undefined!
ERROR: "console_start" [drivers/misc/pti.ko] undefined!
ERROR: "misc_deregister" [drivers/misc/pti.ko] undefined!
ERROR: "pci_disable_device" [drivers/misc/pti.ko] undefined!
ERROR: "pci_release_region" [drivers/misc/pti.ko] undefined!
ERROR: "kfree" [drivers/misc/pti.ko] undefined!
ERROR: "iounmap" [drivers/misc/pti.ko] undefined!
ERROR: "tty_port_destroy" [drivers/misc/pti.ko] undefined!
ERROR: "tty_unregister_device" [drivers/misc/pti.ko] undefined!
ERROR: "unregister_console" [drivers/misc/pti.ko] undefined!
ERROR: "system_wq" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "frame_vector_to_pages" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "kmalloc_caches" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "pci_write_config_dword" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "pci_bus_type" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "atomic64_set_cx8" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "__kmalloc" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "cdev_init" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "msleep" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "frame_vector_create" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "put_pid" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "simple_read_from_buffer" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "pci_write_config_word" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "debugfs_create_dir" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "atomic64_add_386" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "strchr" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "mutex_destroy" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "single_open" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "debugfs_create_u8" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "kvfree" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "param_ops_int" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "strlen" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "dma_fence_release" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "device_add_groups" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "send_sig" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "_dev_crit" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "dma_set_mask" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "single_release" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "seq_puts" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "pci_disable_device" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "hwmon_device_unregister" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "set_page_dirty_lock" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "delayed_work_timer_fn" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "gen_pool_alloc_algo_owner" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "seq_printf" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "__warn_printk" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "ktime_get" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "radix_tree_tagged" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "sg_next" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "gen_pool_free_owner" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "pci_release_regions" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "init_timer_key" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "cancel_delayed_work_sync" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "mutex_unlock" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "unregister_chrdev_region" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "dma_free_attrs" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "atomic64_add_return_cx8" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "debugfs_create_file" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "__preempt_count" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "call_rcu" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "dma_pool_destroy" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "_dev_notice" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "sprintf" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "debugfs_remove_recursive" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "seq_read" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "dma_set_coherent_mask" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "nonseekable_open" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "__might_sleep" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "frame_vector_destroy" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "kasprintf" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "_copy_to_user" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "gen_pool_add_owner" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "pci_set_master" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "kstrtoull" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "_dev_warn" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "idr_destroy" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "pci_restore_state" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "current_task" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "dma_fence_init" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "__mutex_init" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "printk" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "atomic64_sub_return_cx8" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "atomic64_sub_386" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "atomic64_read_cx8" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "strncpy" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "strncmp" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "atomic64_set_386" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "pci_read_config_word" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "strlcpy" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "dma_alloc_attrs" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "pci_ioremap_wc_bar" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "destroy_workqueue" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "__usecs_to_jiffies" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "dma_fence_signal" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "dma_pool_free" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "hwmon_device_register_with_info" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "idr_alloc" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "_dev_err" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "get_vaddr_frames" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "__list_add_valid" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "flush_workqueue" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "pci_clear_master" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "find_first_zero_bit" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "synchronize_irq" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "idr_remove" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "kvmalloc_node" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "kstrtouint_from_user" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "put_vaddr_frames" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "_dev_info" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "idr_get_next" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "iommu_present" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "usleep_range" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "dma_fence_default_wait" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "queue_delayed_work_on" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "refcount_warn_saturate" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "debugfs_create_x64" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "___ratelimit" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "kmalloc_order_trace" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "cdev_device_add" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "flush_delayed_work" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "memcpy_toio" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "gen_pool_destroy" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "_kstrtoul" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "pci_read_config_dword" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "jiffies_to_usecs" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "dma_pool_alloc" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "dma_fence_wait_timeout" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "pci_ioremap_bar" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "__phys_addr" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "pci_set_power_state" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "simple_write_to_buffer" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "find_get_pid" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "seq_lseek" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "device_remove_groups" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "kfree" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "kstrtouint" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "dma_direct_map_sg" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "remap_pfn_range" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "pci_request_regions" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "device_initialize" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "iounmap" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "memcpy_fromio" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "__put_task_struct" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "__pci_register_driver" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "class_destroy" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "lockdep_init_map" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "request_firmware" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "sg_alloc_table_from_pages" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "get_pid_task" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "cdev_device_del" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "sg_free_table" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "atomic64_read_386" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "queue_work_on" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "gen_pool_create" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "snprintf" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "pci_enable_device_mem" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "dev_set_name" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "__msecs_to_jiffies" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "pci_enable_device" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "_copy_from_user" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "dma_pool_create" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "idr_find" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "__class_create" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "alloc_workqueue" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "release_firmware" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "dma_ops" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "alloc_chrdev_region" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "free_irq" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "pci_save_state" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "strcpy" [drivers/misc/habanalabs/habanalabs.ko] undefined!
ERROR: "param_ops_int" [drivers/misc/cardreader/rtsx_usb.ko] undefined!
ERROR: "usb_deregister" [drivers/misc/cardreader/rtsx_usb.ko] undefined!
ERROR: "usb_register_driver" [drivers/misc/cardreader/rtsx_usb.ko] undefined!
ERROR: "usb_enable_autosuspend" [drivers/misc/cardreader/rtsx_usb.ko] undefined!
ERROR: "mfd_add_devices" [drivers/misc/cardreader/rtsx_usb.ko] undefined!
ERROR: "init_timer_key" [drivers/misc/cardreader/rtsx_usb.ko] undefined!
ERROR: "usleep_range" [drivers/misc/cardreader/rtsx_usb.ko] undefined!
ERROR: "__mutex_init" [drivers/misc/cardreader/rtsx_usb.ko] undefined!
ERROR: "usb_alloc_coherent" [drivers/misc/cardreader/rtsx_usb.ko] undefined!
ERROR: "devm_kmalloc" [drivers/misc/cardreader/rtsx_usb.ko] undefined!
ERROR: "mutex_trylock" [drivers/misc/cardreader/rtsx_usb.ko] undefined!
ERROR: "kfree" [drivers/misc/cardreader/rtsx_usb.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/misc/cardreader/rtsx_usb.ko] undefined!
ERROR: "kmalloc_caches" [drivers/misc/cardreader/rtsx_usb.ko] undefined!
ERROR: "usb_control_msg" [drivers/misc/cardreader/rtsx_usb.ko] undefined!
ERROR: "usb_bulk_msg" [drivers/misc/cardreader/rtsx_usb.ko] undefined!
ERROR: "del_timer" [drivers/misc/cardreader/rtsx_usb.ko] undefined!
ERROR: "usb_sg_wait" [drivers/misc/cardreader/rtsx_usb.ko] undefined!
ERROR: "add_timer" [drivers/misc/cardreader/rtsx_usb.ko] undefined!
ERROR: "jiffies" [drivers/misc/cardreader/rtsx_usb.ko] undefined!
ERROR: "__msecs_to_jiffies" [drivers/misc/cardreader/rtsx_usb.ko] undefined!
ERROR: "usb_sg_init" [drivers/misc/cardreader/rtsx_usb.ko] undefined!
ERROR: "usb_sg_cancel" [drivers/misc/cardreader/rtsx_usb.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/misc/cardreader/rtsx_usb.ko] undefined!
ERROR: "usb_free_coherent" [drivers/misc/cardreader/rtsx_usb.ko] undefined!
ERROR: "mfd_remove_devices" [drivers/misc/cardreader/rtsx_usb.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/misc/cardreader/rtsx_usb.ko] undefined!
ERROR: "device_for_each_child" [drivers/misc/cardreader/rtsx_usb.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/misc/cardreader/rtsx_usb.ko] undefined!
ERROR: "mutex_unlock" [drivers/misc/cardreader/rtsx_usb.ko] undefined!
ERROR: "system_wq" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "kmalloc_caches" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "pci_write_config_dword" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "__kmalloc" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "msleep" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "pci_read_config_byte" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "dma_set_mask" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "mfd_remove_devices" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "pci_disable_device" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "delayed_work_timer_fn" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "sg_next" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "pci_write_config_byte" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "__const_udelay" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "pci_release_regions" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "param_ops_bool" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "init_timer_key" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "cancel_delayed_work_sync" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "mutex_unlock" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "pci_enable_wake" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "dma_free_attrs" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "__preempt_count" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "pci_set_master" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "cancel_delayed_work" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "ioread8" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "pci_restore_state" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "__mutex_init" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "ioremap" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "mod_delayed_work_on" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "mfd_add_devices" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "_raw_spin_unlock_irq" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "dma_alloc_attrs" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "idr_preload" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "request_threaded_irq" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "idr_alloc" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "_dev_err" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "synchronize_irq" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "idr_remove" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "pci_find_capability" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "queue_delayed_work_on" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "pci_intx" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "_raw_spin_lock_irq" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "wait_for_completion_interruptible_timeout" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "pci_read_config_dword" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "pci_set_power_state" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "kfree" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "dma_direct_map_sg" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "pci_request_regions" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "iounmap" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "__pci_register_driver" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "lockdep_init_map" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "__sw_hweight32" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "complete" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "pci_choose_state" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "__msecs_to_jiffies" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "iowrite32" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "pci_enable_device" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "dma_ops" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "ioread32" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "pcie_capability_read_word" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "free_irq" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "pci_save_state" [drivers/misc/cardreader/rtsx_pci.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/misc/cardreader/alcor_pci.ko] undefined!
ERROR: "__pci_register_driver" [drivers/misc/cardreader/alcor_pci.ko] undefined!
ERROR: "ioread32be" [drivers/misc/cardreader/alcor_pci.ko] undefined!
ERROR: "iowrite32be" [drivers/misc/cardreader/alcor_pci.ko] undefined!
ERROR: "mfd_add_devices" [drivers/misc/cardreader/alcor_pci.ko] undefined!
ERROR: "pci_set_master" [drivers/misc/cardreader/alcor_pci.ko] undefined!
ERROR: "dma_set_coherent_mask" [drivers/misc/cardreader/alcor_pci.ko] undefined!
ERROR: "_dev_err" [drivers/misc/cardreader/alcor_pci.ko] undefined!
ERROR: "dma_set_mask" [drivers/misc/cardreader/alcor_pci.ko] undefined!
ERROR: "pcim_iomap" [drivers/misc/cardreader/alcor_pci.ko] undefined!
ERROR: "pci_request_regions" [drivers/misc/cardreader/alcor_pci.ko] undefined!
ERROR: "ida_alloc_range" [drivers/misc/cardreader/alcor_pci.ko] undefined!
ERROR: "devm_kmalloc" [drivers/misc/cardreader/alcor_pci.ko] undefined!
ERROR: "pcim_enable_device" [drivers/misc/cardreader/alcor_pci.ko] undefined!
ERROR: "pci_read_config_byte" [drivers/misc/cardreader/alcor_pci.ko] undefined!
ERROR: "pci_release_regions" [drivers/misc/cardreader/alcor_pci.ko] undefined!
ERROR: "ida_free" [drivers/misc/cardreader/alcor_pci.ko] undefined!
ERROR: "mfd_remove_devices" [drivers/misc/cardreader/alcor_pci.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/misc/cardreader/alcor_pci.ko] undefined!
ERROR: "pci_write_config_byte" [drivers/misc/cardreader/alcor_pci.ko] undefined!
ERROR: "pci_read_config_dword" [drivers/misc/cardreader/alcor_pci.ko] undefined!
ERROR: "system_wq" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "mei_irq_write_handler" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "pcim_enable_device" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "mei_write_is_idle" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "mei_device_init" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "__pm_runtime_use_autosuspend" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "__pm_runtime_suspend" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "pcim_iomap_table" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "__tracepoint_mei_pci_cfg_read" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "dma_set_mask" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "mei_restart" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "__tracepoint_mei_reg_write" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "mei_hbm_pg_resume" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "mei_irq_compl_handler" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "__warn_printk" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "mutex_unlock" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "pm_runtime_allow" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "__preempt_count" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "dma_set_coherent_mask" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "__might_sleep" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "pci_set_master" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "_dev_warn" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "debug_lockdep_rcu_enabled" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "__tracepoint_mei_reg_read" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "request_threaded_irq" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "_dev_err" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "init_wait_entry" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "mei_register" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "mei_stop" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "rcu_read_lock_sched_held" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "pcim_iomap_regions" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "synchronize_irq" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "mei_irq_read_handler" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "mei_cancel_work" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "_dev_info" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "mei_deregister" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "pci_bus_read_config_dword" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "queue_delayed_work_on" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "schedule_timeout" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "__pm_runtime_set_status" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "pci_read_config_dword" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "mei_hbm_pg" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "__wake_up" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "mei_start" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "__pci_register_driver" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "finish_wait" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "pm_runtime_set_autosuspend_delay" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "queue_work_on" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "dev_pm_domain_set" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "iowrite32" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "devm_kmalloc" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "ioread32" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "free_irq" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "lockdep_rcu_suspicious" [drivers/misc/mei/mei-me.ko] undefined!
ERROR: "i2c_del_driver" [drivers/misc/lis3lv02d/lis3lv02d_i2c.ko] undefined!
ERROR: "i2c_register_driver" [drivers/misc/lis3lv02d/lis3lv02d_i2c.ko] undefined!
ERROR: "printk" [drivers/misc/lis3lv02d/lis3lv02d_i2c.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/misc/lis3lv02d/lis3lv02d_i2c.ko] undefined!
ERROR: "lis3lv02d_init_device" [drivers/misc/lis3lv02d/lis3lv02d_i2c.ko] undefined!
ERROR: "regulator_bulk_get" [drivers/misc/lis3lv02d/lis3lv02d_i2c.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/misc/lis3lv02d/lis3lv02d_i2c.ko] undefined!
ERROR: "lis3lv02d_init_dt" [drivers/misc/lis3lv02d/lis3lv02d_i2c.ko] undefined!
ERROR: "of_match_device" [drivers/misc/lis3lv02d/lis3lv02d_i2c.ko] undefined!
ERROR: "usleep_range" [drivers/misc/lis3lv02d/lis3lv02d_i2c.ko] undefined!
ERROR: "regulator_bulk_enable" [drivers/misc/lis3lv02d/lis3lv02d_i2c.ko] undefined!
ERROR: "regulator_bulk_disable" [drivers/misc/lis3lv02d/lis3lv02d_i2c.ko] undefined!
ERROR: "i2c_smbus_read_i2c_block_data" [drivers/misc/lis3lv02d/lis3lv02d_i2c.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/misc/lis3lv02d/lis3lv02d_i2c.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/misc/lis3lv02d/lis3lv02d_i2c.ko] undefined!
ERROR: "regulator_bulk_free" [drivers/misc/lis3lv02d/lis3lv02d_i2c.ko] undefined!
ERROR: "lis3lv02d_remove_fs" [drivers/misc/lis3lv02d/lis3lv02d_i2c.ko] undefined!
ERROR: "lis3_dev" [drivers/misc/lis3lv02d/lis3lv02d_i2c.ko] undefined!
ERROR: "lis3lv02d_joystick_disable" [drivers/misc/lis3lv02d/lis3lv02d_i2c.ko] undefined!
ERROR: "__x86_indirect_thunk_eax" [drivers/misc/lis3lv02d/lis3lv02d_i2c.ko] undefined!
ERROR: "lis3lv02d_poweroff" [drivers/misc/lis3lv02d/lis3lv02d_i2c.ko] undefined!
ERROR: "lis3lv02d_poweron" [drivers/misc/lis3lv02d/lis3lv02d_i2c.ko] undefined!
ERROR: "param_get_int" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "param_array_ops" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "no_llseek" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "misc_register" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "request_threaded_irq" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "input_set_capability" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "sysfs_create_group" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "platform_device_register_full" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "__mutex_init" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "printk" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "of_get_property" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "kmalloc_caches" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "kfree" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "__pm_runtime_set_status" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "pm_runtime_barrier" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "platform_device_unregister" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "sysfs_remove_group" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "misc_deregister" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "free_irq" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "input_unregister_device" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "input_register_device" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "input_set_max_poll_interval" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "input_set_min_poll_interval" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "input_set_poll_interval" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "input_free_device" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "input_setup_polling" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "input_set_abs_params" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "input_allocate_device" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "kill_fasync" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "__wake_up" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "remove_wait_queue" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "_copy_to_user" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "schedule" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "add_wait_queue" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "default_wake_function" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "current_task" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "fasync_helper" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "sprintf" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "_kstrtoul" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "__sw_hweight32" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "pm_schedule_suspend" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "__pm_runtime_idle" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "mutex_unlock" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "input_event" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "__warn_printk" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "msleep" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "param_set_int" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/misc/lis3lv02d/lis3lv02d.ko] undefined!
ERROR: "i2c_del_driver" [drivers/misc/eeprom/max6875.ko] undefined!
ERROR: "i2c_register_driver" [drivers/misc/eeprom/max6875.ko] undefined!
ERROR: "sysfs_create_bin_file" [drivers/misc/eeprom/max6875.ko] undefined!
ERROR: "__mutex_init" [drivers/misc/eeprom/max6875.ko] undefined!
ERROR: "i2c_new_dummy_device" [drivers/misc/eeprom/max6875.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/misc/eeprom/max6875.ko] undefined!
ERROR: "kmalloc_caches" [drivers/misc/eeprom/max6875.ko] undefined!
ERROR: "_dev_err" [drivers/misc/eeprom/max6875.ko] undefined!
ERROR: "i2c_smbus_read_i2c_block_data" [drivers/misc/eeprom/max6875.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/misc/eeprom/max6875.ko] undefined!
ERROR: "i2c_smbus_read_byte" [drivers/misc/eeprom/max6875.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/misc/eeprom/max6875.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/misc/eeprom/max6875.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/misc/eeprom/max6875.ko] undefined!
ERROR: "mutex_unlock" [drivers/misc/eeprom/max6875.ko] undefined!
ERROR: "jiffies" [drivers/misc/eeprom/max6875.ko] undefined!
ERROR: "kfree" [drivers/misc/eeprom/max6875.ko] undefined!
ERROR: "sysfs_remove_bin_file" [drivers/misc/eeprom/max6875.ko] undefined!
ERROR: "i2c_unregister_device" [drivers/misc/eeprom/max6875.ko] undefined!
ERROR: "i2c_del_driver" [drivers/misc/eeprom/eeprom.ko] undefined!
ERROR: "i2c_register_driver" [drivers/misc/eeprom/eeprom.ko] undefined!
ERROR: "sysfs_create_bin_file" [drivers/misc/eeprom/eeprom.ko] undefined!
ERROR: "_dev_notice" [drivers/misc/eeprom/eeprom.ko] undefined!
ERROR: "_dev_info" [drivers/misc/eeprom/eeprom.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/misc/eeprom/eeprom.ko] undefined!
ERROR: "__mutex_init" [drivers/misc/eeprom/eeprom.ko] undefined!
ERROR: "devm_kmalloc" [drivers/misc/eeprom/eeprom.ko] undefined!
ERROR: "capable" [drivers/misc/eeprom/eeprom.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/misc/eeprom/eeprom.ko] undefined!
ERROR: "i2c_smbus_read_word_data" [drivers/misc/eeprom/eeprom.ko] undefined!
ERROR: "i2c_smbus_read_i2c_block_data" [drivers/misc/eeprom/eeprom.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/misc/eeprom/eeprom.ko] undefined!
ERROR: "mutex_unlock" [drivers/misc/eeprom/eeprom.ko] undefined!
ERROR: "jiffies" [drivers/misc/eeprom/eeprom.ko] undefined!
ERROR: "sysfs_remove_bin_file" [drivers/misc/eeprom/eeprom.ko] undefined!
ERROR: "strlcpy" [drivers/misc/eeprom/eeprom.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/misc/eeprom/eeprom.ko] undefined!
ERROR: "param_ops_uint" [drivers/misc/eeprom/at24.ko] undefined!
ERROR: "i2c_del_driver" [drivers/misc/eeprom/at24.ko] undefined!
ERROR: "i2c_register_driver" [drivers/misc/eeprom/at24.ko] undefined!
ERROR: "printk" [drivers/misc/eeprom/at24.ko] undefined!
ERROR: "_dev_err" [drivers/misc/eeprom/at24.ko] undefined!
ERROR: "_dev_info" [drivers/misc/eeprom/at24.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/misc/eeprom/at24.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/misc/eeprom/at24.ko] undefined!
ERROR: "__pm_runtime_set_status" [drivers/misc/eeprom/at24.ko] undefined!
ERROR: "devm_nvmem_register" [drivers/misc/eeprom/at24.ko] undefined!
ERROR: "acpi_device_get_match_data" [drivers/misc/eeprom/at24.ko] undefined!
ERROR: "_dev_warn" [drivers/misc/eeprom/at24.ko] undefined!
ERROR: "devm_i2c_new_dummy_device" [drivers/misc/eeprom/at24.ko] undefined!
ERROR: "devm_gpiod_get_optional" [drivers/misc/eeprom/at24.ko] undefined!
ERROR: "__mutex_init" [drivers/misc/eeprom/at24.ko] undefined!
ERROR: "devm_kmalloc" [drivers/misc/eeprom/at24.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/misc/eeprom/at24.ko] undefined!
ERROR: "device_property_present" [drivers/misc/eeprom/at24.ko] undefined!
ERROR: "device_property_read_u32_array" [drivers/misc/eeprom/at24.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/misc/eeprom/at24.ko] undefined!
ERROR: "of_match_device" [drivers/misc/eeprom/at24.ko] undefined!
ERROR: "i2c_match_id" [drivers/misc/eeprom/at24.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/misc/eeprom/at24.ko] undefined!
ERROR: "regmap_bulk_read" [drivers/misc/eeprom/at24.ko] undefined!
ERROR: "__pm_runtime_idle" [drivers/misc/eeprom/at24.ko] undefined!
ERROR: "mutex_unlock" [drivers/misc/eeprom/at24.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/misc/eeprom/at24.ko] undefined!
ERROR: "regmap_bulk_write" [drivers/misc/eeprom/at24.ko] undefined!
ERROR: "usleep_range" [drivers/misc/eeprom/at24.ko] undefined!
ERROR: "jiffies" [drivers/misc/eeprom/at24.ko] undefined!
ERROR: "__msecs_to_jiffies" [drivers/misc/eeprom/at24.ko] undefined!
ERROR: "gpiod_set_value_cansleep" [drivers/misc/eeprom/at24.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/misc/eeprom/at24.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/misc/eeprom/at24.ko] undefined!
ERROR: "platform_device_unregister" [drivers/base/test/test_async_driver_probe.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/base/test/test_async_driver_probe.ko] undefined!
ERROR: "_dev_info" [drivers/base/test/test_async_driver_probe.ko] undefined!
ERROR: "__platform_driver_register" [drivers/base/test/test_async_driver_probe.ko] undefined!
ERROR: "ktime_get" [drivers/base/test/test_async_driver_probe.ko] undefined!
ERROR: "printk" [drivers/base/test/test_async_driver_probe.ko] undefined!
ERROR: "platform_device_put" [drivers/base/test/test_async_driver_probe.ko] undefined!
ERROR: "platform_device_add" [drivers/base/test/test_async_driver_probe.ko] undefined!
ERROR: "platform_device_alloc" [drivers/base/test/test_async_driver_probe.ko] undefined!
ERROR: "_dev_err" [drivers/base/test/test_async_driver_probe.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/base/test/test_async_driver_probe.ko] undefined!
ERROR: "msleep" [drivers/base/test/test_async_driver_probe.ko] undefined!
ERROR: "__devm_regmap_init" [drivers/base/regmap/regmap-i3c.ko] undefined!
ERROR: "i3c_device_do_priv_xfers" [drivers/base/regmap/regmap-i3c.ko] undefined!
ERROR: "dev_to_i3cdev" [drivers/base/regmap/regmap-i3c.ko] undefined!
ERROR: "__devm_regmap_init" [drivers/base/regmap/regmap-spmi.ko] undefined!
ERROR: "__regmap_init" [drivers/base/regmap/regmap-spmi.ko] undefined!
ERROR: "spmi_ext_register_writel" [drivers/base/regmap/regmap-spmi.ko] undefined!
ERROR: "spmi_ext_register_write" [drivers/base/regmap/regmap-spmi.ko] undefined!
ERROR: "spmi_ext_register_readl" [drivers/base/regmap/regmap-spmi.ko] undefined!
ERROR: "spmi_ext_register_read" [drivers/base/regmap/regmap-spmi.ko] undefined!
ERROR: "spmi_register_zero_write" [drivers/base/regmap/regmap-spmi.ko] undefined!
ERROR: "spmi_register_write" [drivers/base/regmap/regmap-spmi.ko] undefined!
ERROR: "spmi_register_read" [drivers/base/regmap/regmap-spmi.ko] undefined!
ERROR: "__devm_regmap_init" [drivers/base/regmap/regmap-slimbus.ko] undefined!
ERROR: "__regmap_init" [drivers/base/regmap/regmap-slimbus.ko] undefined!
ERROR: "slim_write" [drivers/base/regmap/regmap-slimbus.ko] undefined!
ERROR: "slim_read" [drivers/base/regmap/regmap-slimbus.ko] undefined!
ERROR: "parport_ieee1284_read_byte" [drivers/parport/parport_ax88796.ko] undefined!
ERROR: "parport_ieee1284_read_nibble" [drivers/parport/parport_ax88796.ko] undefined!
ERROR: "parport_ieee1284_write_compat" [drivers/parport/parport_ax88796.ko] undefined!
ERROR: "parport_ieee1284_ecp_write_addr" [drivers/parport/parport_ax88796.ko] undefined!
ERROR: "parport_ieee1284_ecp_read_data" [drivers/parport/parport_ax88796.ko] undefined!
ERROR: "parport_ieee1284_ecp_write_data" [drivers/parport/parport_ax88796.ko] undefined!
ERROR: "parport_ieee1284_epp_read_addr" [drivers/parport/parport_ax88796.ko] undefined!
ERROR: "parport_ieee1284_epp_write_addr" [drivers/parport/parport_ax88796.ko] undefined!
ERROR: "parport_ieee1284_epp_read_data" [drivers/parport/parport_ax88796.ko] undefined!
ERROR: "parport_ieee1284_epp_write_data" [drivers/parport/parport_ax88796.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/parport/parport_ax88796.ko] undefined!
ERROR: "__platform_driver_register" [drivers/parport/parport_ax88796.ko] undefined!
ERROR: "parport_announce_port" [drivers/parport/parport_ax88796.ko] undefined!
ERROR: "_dev_info" [drivers/parport/parport_ax88796.ko] undefined!
ERROR: "request_threaded_irq" [drivers/parport/parport_ax88796.ko] undefined!
ERROR: "parport_irq_handler" [drivers/parport/parport_ax88796.ko] undefined!
ERROR: "parport_register_port" [drivers/parport/parport_ax88796.ko] undefined!
ERROR: "platform_get_irq" [drivers/parport/parport_ax88796.ko] undefined!
ERROR: "ioremap" [drivers/parport/parport_ax88796.ko] undefined!
ERROR: "__request_region" [drivers/parport/parport_ax88796.ko] undefined!
ERROR: "platform_get_resource" [drivers/parport/parport_ax88796.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/parport/parport_ax88796.ko] undefined!
ERROR: "kmalloc_caches" [drivers/parport/parport_ax88796.ko] undefined!
ERROR: "enable_irq" [drivers/parport/parport_ax88796.ko] undefined!
ERROR: "disable_irq" [drivers/parport/parport_ax88796.ko] undefined!
ERROR: "trace_hardirqs_on" [drivers/parport/parport_ax88796.ko] undefined!
ERROR: "trace_hardirqs_off" [drivers/parport/parport_ax88796.ko] undefined!
ERROR: "_dev_err" [drivers/parport/parport_ax88796.ko] undefined!
ERROR: "kfree" [drivers/parport/parport_ax88796.ko] undefined!
ERROR: "__release_region" [drivers/parport/parport_ax88796.ko] undefined!
ERROR: "iomem_resource" [drivers/parport/parport_ax88796.ko] undefined!
ERROR: "iounmap" [drivers/parport/parport_ax88796.ko] undefined!
ERROR: "parport_remove_port" [drivers/parport/parport_ax88796.ko] undefined!
ERROR: "free_irq" [drivers/parport/parport_ax88796.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/parport/parport_ax88796.ko] undefined!
ERROR: "param_ops_int" [drivers/char/scx200_gpio.ko] undefined!
ERROR: "nsc_gpio_dump" [drivers/char/scx200_gpio.ko] undefined!
ERROR: "scx200_gpio_configure" [drivers/char/scx200_gpio.ko] undefined!
ERROR: "nsc_gpio_write" [drivers/char/scx200_gpio.ko] undefined!
ERROR: "nsc_gpio_read" [drivers/char/scx200_gpio.ko] undefined!
ERROR: "no_llseek" [drivers/char/scx200_gpio.ko] undefined!
ERROR: "platform_device_unregister" [drivers/char/scx200_gpio.ko] undefined!
ERROR: "unregister_chrdev_region" [drivers/char/scx200_gpio.ko] undefined!
ERROR: "cdev_del" [drivers/char/scx200_gpio.ko] undefined!
ERROR: "platform_device_put" [drivers/char/scx200_gpio.ko] undefined!
ERROR: "cdev_add" [drivers/char/scx200_gpio.ko] undefined!
ERROR: "cdev_init" [drivers/char/scx200_gpio.ko] undefined!
ERROR: "platform_device_del" [drivers/char/scx200_gpio.ko] undefined!
ERROR: "_dev_err" [drivers/char/scx200_gpio.ko] undefined!
ERROR: "alloc_chrdev_region" [drivers/char/scx200_gpio.ko] undefined!
ERROR: "register_chrdev_region" [drivers/char/scx200_gpio.ko] undefined!
ERROR: "platform_device_add" [drivers/char/scx200_gpio.ko] undefined!
ERROR: "platform_device_alloc" [drivers/char/scx200_gpio.ko] undefined!
ERROR: "printk" [drivers/char/scx200_gpio.ko] undefined!
ERROR: "nonseekable_open" [drivers/char/scx200_gpio.ko] undefined!
ERROR: "scx200_gpio_shadow" [drivers/char/scx200_gpio.ko] undefined!
ERROR: "scx200_gpio_base" [drivers/char/scx200_gpio.ko] undefined!
ERROR: "agp3_generic_sizes" [drivers/char/agp/via-agp.ko] undefined!
ERROR: "agp_generic_type_to_mask_type" [drivers/char/agp/via-agp.ko] undefined!
ERROR: "agp_generic_destroy_pages" [drivers/char/agp/via-agp.ko] undefined!
ERROR: "agp_generic_destroy_page" [drivers/char/agp/via-agp.ko] undefined!
ERROR: "agp_generic_alloc_pages" [drivers/char/agp/via-agp.ko] undefined!
ERROR: "agp_generic_alloc_page" [drivers/char/agp/via-agp.ko] undefined!
ERROR: "agp_generic_free_by_type" [drivers/char/agp/via-agp.ko] undefined!
ERROR: "agp_generic_alloc_by_type" [drivers/char/agp/via-agp.ko] undefined!
ERROR: "agp_generic_remove_memory" [drivers/char/agp/via-agp.ko] undefined!
ERROR: "agp_generic_insert_memory" [drivers/char/agp/via-agp.ko] undefined!
ERROR: "agp_generic_free_gatt_table" [drivers/char/agp/via-agp.ko] undefined!
ERROR: "agp_generic_create_gatt_table" [drivers/char/agp/via-agp.ko] undefined!
ERROR: "global_cache_flush" [drivers/char/agp/via-agp.ko] undefined!
ERROR: "agp_generic_mask_memory" [drivers/char/agp/via-agp.ko] undefined!
ERROR: "agp_generic_enable" [drivers/char/agp/via-agp.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/char/agp/via-agp.ko] undefined!
ERROR: "__pci_register_driver" [drivers/char/agp/via-agp.ko] undefined!
ERROR: "agp_off" [drivers/char/agp/via-agp.ko] undefined!
ERROR: "agp_add_bridge" [drivers/char/agp/via-agp.ko] undefined!
ERROR: "get_agp_version" [drivers/char/agp/via-agp.ko] undefined!
ERROR: "agp_alloc_bridge" [drivers/char/agp/via-agp.ko] undefined!
ERROR: "pci_find_capability" [drivers/char/agp/via-agp.ko] undefined!
ERROR: "agp_put_bridge" [drivers/char/agp/via-agp.ko] undefined!
ERROR: "agp_remove_bridge" [drivers/char/agp/via-agp.ko] undefined!
ERROR: "pci_save_state" [drivers/char/agp/via-agp.ko] undefined!
ERROR: "pci_restore_state" [drivers/char/agp/via-agp.ko] undefined!
ERROR: "pci_set_power_state" [drivers/char/agp/via-agp.ko] undefined!
ERROR: "pcibios_resource_to_bus" [drivers/char/agp/via-agp.ko] undefined!
ERROR: "pci_read_config_word" [drivers/char/agp/via-agp.ko] undefined!
ERROR: "printk" [drivers/char/agp/via-agp.ko] undefined!
ERROR: "pci_read_config_byte" [drivers/char/agp/via-agp.ko] undefined!
ERROR: "pci_write_config_byte" [drivers/char/agp/via-agp.ko] undefined!
ERROR: "pci_write_config_dword" [drivers/char/agp/via-agp.ko] undefined!
ERROR: "pci_read_config_dword" [drivers/char/agp/via-agp.ko] undefined!
ERROR: "agp_bridge" [drivers/char/agp/via-agp.ko] undefined!
ERROR: "agp_generic_type_to_mask_type" [drivers/char/agp/sworks-agp.ko] undefined!
ERROR: "agp_generic_destroy_pages" [drivers/char/agp/sworks-agp.ko] undefined!
ERROR: "agp_generic_destroy_page" [drivers/char/agp/sworks-agp.ko] undefined!
ERROR: "agp_generic_alloc_pages" [drivers/char/agp/sworks-agp.ko] undefined!
ERROR: "agp_generic_alloc_page" [drivers/char/agp/sworks-agp.ko] undefined!
ERROR: "agp_generic_free_by_type" [drivers/char/agp/sworks-agp.ko] undefined!
ERROR: "agp_generic_alloc_by_type" [drivers/char/agp/sworks-agp.ko] undefined!
ERROR: "agp_generic_mask_memory" [drivers/char/agp/sworks-agp.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/char/agp/sworks-agp.ko] undefined!
ERROR: "__pci_register_driver" [drivers/char/agp/sworks-agp.ko] undefined!
ERROR: "agp_off" [drivers/char/agp/sworks-agp.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/char/agp/sworks-agp.ko] undefined!
ERROR: "kmalloc_caches" [drivers/char/agp/sworks-agp.ko] undefined!
ERROR: "__kmalloc" [drivers/char/agp/sworks-agp.ko] undefined!
ERROR: "__phys_addr" [drivers/char/agp/sworks-agp.ko] undefined!
ERROR: "set_memory_uc" [drivers/char/agp/sworks-agp.ko] undefined!
ERROR: "__get_free_pages" [drivers/char/agp/sworks-agp.ko] undefined!
ERROR: "kfree" [drivers/char/agp/sworks-agp.ko] undefined!
ERROR: "free_pages" [drivers/char/agp/sworks-agp.ko] undefined!
ERROR: "set_memory_wb" [drivers/char/agp/sworks-agp.ko] undefined!
ERROR: "pci_write_config_byte" [drivers/char/agp/sworks-agp.ko] undefined!
ERROR: "pci_read_config_byte" [drivers/char/agp/sworks-agp.ko] undefined!
ERROR: "ioremap" [drivers/char/agp/sworks-agp.ko] undefined!
ERROR: "agp_device_command" [drivers/char/agp/sworks-agp.ko] undefined!
ERROR: "agp_collect_device_status" [drivers/char/agp/sworks-agp.ko] undefined!
ERROR: "pci_write_config_dword" [drivers/char/agp/sworks-agp.ko] undefined!
ERROR: "iounmap" [drivers/char/agp/sworks-agp.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/char/agp/sworks-agp.ko] undefined!
ERROR: "mem_section" [drivers/char/agp/sworks-agp.ko] undefined!
ERROR: "agp_bridge" [drivers/char/agp/sworks-agp.ko] undefined!
ERROR: "global_cache_flush" [drivers/char/agp/sworks-agp.ko] undefined!
ERROR: "_dev_info" [drivers/char/agp/sworks-agp.ko] undefined!
ERROR: "agp_add_bridge" [drivers/char/agp/sworks-agp.ko] undefined!
ERROR: "pci_dev_get" [drivers/char/agp/sworks-agp.ko] undefined!
ERROR: "agp_alloc_bridge" [drivers/char/agp/sworks-agp.ko] undefined!
ERROR: "pci_read_config_dword" [drivers/char/agp/sworks-agp.ko] undefined!
ERROR: "pci_get_domain_bus_and_slot" [drivers/char/agp/sworks-agp.ko] undefined!
ERROR: "pci_find_capability" [drivers/char/agp/sworks-agp.ko] undefined!
ERROR: "_dev_err" [drivers/char/agp/sworks-agp.ko] undefined!
ERROR: "jiffies" [drivers/char/agp/sworks-agp.ko] undefined!
ERROR: "agp_put_bridge" [drivers/char/agp/sworks-agp.ko] undefined!
ERROR: "agp_remove_bridge" [drivers/char/agp/sworks-agp.ko] undefined!
ERROR: "pci_dev_put" [drivers/char/agp/sworks-agp.ko] undefined!
ERROR: "agp_generic_destroy_pages" [drivers/char/agp/nvidia-agp.ko] undefined!
ERROR: "agp_generic_destroy_page" [drivers/char/agp/nvidia-agp.ko] undefined!
ERROR: "agp_generic_alloc_pages" [drivers/char/agp/nvidia-agp.ko] undefined!
ERROR: "agp_generic_alloc_page" [drivers/char/agp/nvidia-agp.ko] undefined!
ERROR: "agp_generic_free_by_type" [drivers/char/agp/nvidia-agp.ko] undefined!
ERROR: "agp_generic_alloc_by_type" [drivers/char/agp/nvidia-agp.ko] undefined!
ERROR: "agp_generic_free_gatt_table" [drivers/char/agp/nvidia-agp.ko] undefined!
ERROR: "agp_generic_create_gatt_table" [drivers/char/agp/nvidia-agp.ko] undefined!
ERROR: "agp_generic_mask_memory" [drivers/char/agp/nvidia-agp.ko] undefined!
ERROR: "agp_generic_enable" [drivers/char/agp/nvidia-agp.ko] undefined!
ERROR: "pci_dev_put" [drivers/char/agp/nvidia-agp.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/char/agp/nvidia-agp.ko] undefined!
ERROR: "__pci_register_driver" [drivers/char/agp/nvidia-agp.ko] undefined!
ERROR: "agp_off" [drivers/char/agp/nvidia-agp.ko] undefined!
ERROR: "iounmap" [drivers/char/agp/nvidia-agp.ko] undefined!
ERROR: "pci_restore_state" [drivers/char/agp/nvidia-agp.ko] undefined!
ERROR: "ioremap" [drivers/char/agp/nvidia-agp.ko] undefined!
ERROR: "pcibios_resource_to_bus" [drivers/char/agp/nvidia-agp.ko] undefined!
ERROR: "pci_write_config_byte" [drivers/char/agp/nvidia-agp.ko] undefined!
ERROR: "do_trace_write_msr" [drivers/char/agp/nvidia-agp.ko] undefined!
ERROR: "do_trace_read_msr" [drivers/char/agp/nvidia-agp.ko] undefined!
ERROR: "__tracepoint_write_msr" [drivers/char/agp/nvidia-agp.ko] undefined!
ERROR: "ex_handler_wrmsr_unsafe" [drivers/char/agp/nvidia-agp.ko] undefined!
ERROR: "__tracepoint_read_msr" [drivers/char/agp/nvidia-agp.ko] undefined!
ERROR: "ex_handler_rdmsr_unsafe" [drivers/char/agp/nvidia-agp.ko] undefined!
ERROR: "pci_read_config_byte" [drivers/char/agp/nvidia-agp.ko] undefined!
ERROR: "global_cache_flush" [drivers/char/agp/nvidia-agp.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/char/agp/nvidia-agp.ko] undefined!
ERROR: "mem_section" [drivers/char/agp/nvidia-agp.ko] undefined!
ERROR: "agp_memory_reserved" [drivers/char/agp/nvidia-agp.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/char/agp/nvidia-agp.ko] undefined!
ERROR: "agp_bridge" [drivers/char/agp/nvidia-agp.ko] undefined!
ERROR: "agp_generic_type_to_mask_type" [drivers/char/agp/nvidia-agp.ko] undefined!
ERROR: "agp_add_bridge" [drivers/char/agp/nvidia-agp.ko] undefined!
ERROR: "agp_alloc_bridge" [drivers/char/agp/nvidia-agp.ko] undefined!
ERROR: "pci_find_capability" [drivers/char/agp/nvidia-agp.ko] undefined!
ERROR: "pci_get_domain_bus_and_slot" [drivers/char/agp/nvidia-agp.ko] undefined!
ERROR: "printk" [drivers/char/agp/nvidia-agp.ko] undefined!
ERROR: "jiffies" [drivers/char/agp/nvidia-agp.ko] undefined!
ERROR: "pci_write_config_dword" [drivers/char/agp/nvidia-agp.ko] undefined!
ERROR: "pci_read_config_dword" [drivers/char/agp/nvidia-agp.ko] undefined!
ERROR: "agp_put_bridge" [drivers/char/agp/nvidia-agp.ko] undefined!
ERROR: "agp_remove_bridge" [drivers/char/agp/nvidia-agp.ko] undefined!
ERROR: "pci_set_power_state" [drivers/char/agp/nvidia-agp.ko] undefined!
ERROR: "pci_save_state" [drivers/char/agp/nvidia-agp.ko] undefined!
ERROR: "agp_generic_destroy_pages" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "agp_generic_destroy_page" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "agp_generic_alloc_pages" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "agp_generic_alloc_page" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "dma_direct_map_page" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "pcibios_resource_to_bus" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "ioremap_wc" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "dma_set_coherent_mask" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "dma_set_mask" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "pci_dev_get" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "pci_get_device" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "pci_dev_put" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "dma_direct_map_sg" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "global_cache_flush" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "sg_alloc_table" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "sg_free_table" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "sg_next" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "pci_write_config_word" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "pci_read_config_word" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "mem_section" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "agp_create_memory" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "set_pages_uc" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "__alloc_pages_nodemask" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "__x86_indirect_thunk_eax" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "dma_ops" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "_dev_info" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "__phys_addr" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "__get_free_pages" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "free_pages" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "__const_udelay" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "jiffies" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "_dev_err" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "request_resource" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "iomem_resource" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "pci_write_config_dword" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "pci_read_config_dword" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "pci_bus_alloc_resource" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "pci_mem_start" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "pcibios_align_resource" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "ioremap" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "release_resource" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "iounmap" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "__free_pages" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "set_pages_wb" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "kvfree" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "kfree" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "agp_free_key" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "agp_bridge" [drivers/char/agp/intel-gtt.ko] undefined!
ERROR: "agp_generic_type_to_mask_type" [drivers/char/agp/intel-agp.ko] undefined!
ERROR: "agp_generic_destroy_pages" [drivers/char/agp/intel-agp.ko] undefined!
ERROR: "agp_generic_destroy_page" [drivers/char/agp/intel-agp.ko] undefined!
ERROR: "agp_generic_alloc_pages" [drivers/char/agp/intel-agp.ko] undefined!
ERROR: "agp_generic_alloc_page" [drivers/char/agp/intel-agp.ko] undefined!
ERROR: "agp_generic_free_by_type" [drivers/char/agp/intel-agp.ko] undefined!
ERROR: "agp_generic_alloc_by_type" [drivers/char/agp/intel-agp.ko] undefined!
ERROR: "agp_generic_remove_memory" [drivers/char/agp/intel-agp.ko] undefined!
ERROR: "agp_generic_insert_memory" [drivers/char/agp/intel-agp.ko] undefined!
ERROR: "agp_generic_free_gatt_table" [drivers/char/agp/intel-agp.ko] undefined!
ERROR: "agp_generic_create_gatt_table" [drivers/char/agp/intel-agp.ko] undefined!
ERROR: "global_cache_flush" [drivers/char/agp/intel-agp.ko] undefined!
ERROR: "agp_generic_mask_memory" [drivers/char/agp/intel-agp.ko] undefined!
ERROR: "agp_generic_enable" [drivers/char/agp/intel-agp.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/char/agp/intel-agp.ko] undefined!
ERROR: "__pci_register_driver" [drivers/char/agp/intel-agp.ko] undefined!
ERROR: "agp_off" [drivers/char/agp/intel-agp.ko] undefined!
ERROR: "_dev_emerg" [drivers/char/agp/intel-agp.ko] undefined!
ERROR: "pci_read_config_byte" [drivers/char/agp/intel-agp.ko] undefined!
ERROR: "pcibios_resource_to_bus" [drivers/char/agp/intel-agp.ko] undefined!
ERROR: "pci_write_config_byte" [drivers/char/agp/intel-agp.ko] undefined!
ERROR: "pci_write_config_word" [drivers/char/agp/intel-agp.ko] undefined!
ERROR: "pci_read_config_word" [drivers/char/agp/intel-agp.ko] undefined!
ERROR: "pci_write_config_dword" [drivers/char/agp/intel-agp.ko] undefined!
ERROR: "agp_bridge" [drivers/char/agp/intel-agp.ko] undefined!
ERROR: "pci_assign_resource" [drivers/char/agp/intel-agp.ko] undefined!
ERROR: "_dev_err" [drivers/char/agp/intel-agp.ko] undefined!
ERROR: "_dev_warn" [drivers/char/agp/intel-agp.ko] undefined!
ERROR: "pci_read_config_dword" [drivers/char/agp/intel-agp.ko] undefined!
ERROR: "pci_enable_device" [drivers/char/agp/intel-agp.ko] undefined!
ERROR: "_dev_info" [drivers/char/agp/intel-agp.ko] undefined!
ERROR: "agp_add_bridge" [drivers/char/agp/intel-agp.ko] undefined!
ERROR: "intel_gmch_probe" [drivers/char/agp/intel-agp.ko] undefined!
ERROR: "agp_alloc_bridge" [drivers/char/agp/intel-agp.ko] undefined!
ERROR: "pci_find_capability" [drivers/char/agp/intel-agp.ko] undefined!
ERROR: "agp_put_bridge" [drivers/char/agp/intel-agp.ko] undefined!
ERROR: "intel_gmch_remove" [drivers/char/agp/intel-agp.ko] undefined!
ERROR: "agp_remove_bridge" [drivers/char/agp/intel-agp.ko] undefined!
ERROR: "__x86_indirect_thunk_eax" [drivers/char/agp/intel-agp.ko] undefined!
ERROR: "agp_generic_type_to_mask_type" [drivers/char/agp/amd-k7-agp.ko] undefined!
ERROR: "agp_generic_destroy_pages" [drivers/char/agp/amd-k7-agp.ko] undefined!
ERROR: "agp_generic_destroy_page" [drivers/char/agp/amd-k7-agp.ko] undefined!
ERROR: "agp_generic_alloc_pages" [drivers/char/agp/amd-k7-agp.ko] undefined!
ERROR: "agp_generic_alloc_page" [drivers/char/agp/amd-k7-agp.ko] undefined!
ERROR: "agp_generic_free_by_type" [drivers/char/agp/amd-k7-agp.ko] undefined!
ERROR: "agp_generic_alloc_by_type" [drivers/char/agp/amd-k7-agp.ko] undefined!
ERROR: "agp_generic_enable" [drivers/char/agp/amd-k7-agp.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/char/agp/amd-k7-agp.ko] undefined!
ERROR: "__pci_register_driver" [drivers/char/agp/amd-k7-agp.ko] undefined!
ERROR: "agp_off" [drivers/char/agp/amd-k7-agp.ko] undefined!
ERROR: "pcibios_resource_to_bus" [drivers/char/agp/amd-k7-agp.ko] undefined!
ERROR: "__phys_addr" [drivers/char/agp/amd-k7-agp.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/char/agp/amd-k7-agp.ko] undefined!
ERROR: "kmalloc_caches" [drivers/char/agp/amd-k7-agp.ko] undefined!
ERROR: "__kmalloc" [drivers/char/agp/amd-k7-agp.ko] undefined!
ERROR: "set_memory_uc" [drivers/char/agp/amd-k7-agp.ko] undefined!
ERROR: "__get_free_pages" [drivers/char/agp/amd-k7-agp.ko] undefined!
ERROR: "kfree" [drivers/char/agp/amd-k7-agp.ko] undefined!
ERROR: "free_pages" [drivers/char/agp/amd-k7-agp.ko] undefined!
ERROR: "set_memory_wb" [drivers/char/agp/amd-k7-agp.ko] undefined!
ERROR: "iounmap" [drivers/char/agp/amd-k7-agp.ko] undefined!
ERROR: "global_cache_flush" [drivers/char/agp/amd-k7-agp.ko] undefined!
ERROR: "agp_generic_mask_memory" [drivers/char/agp/amd-k7-agp.ko] undefined!
ERROR: "mem_section" [drivers/char/agp/amd-k7-agp.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/char/agp/amd-k7-agp.ko] undefined!
ERROR: "pci_dev_put" [drivers/char/agp/amd-k7-agp.ko] undefined!
ERROR: "pci_get_class" [drivers/char/agp/amd-k7-agp.ko] undefined!
ERROR: "agp_add_bridge" [drivers/char/agp/amd-k7-agp.ko] undefined!
ERROR: "agp_alloc_bridge" [drivers/char/agp/amd-k7-agp.ko] undefined!
ERROR: "_dev_info" [drivers/char/agp/amd-k7-agp.ko] undefined!
ERROR: "pci_find_capability" [drivers/char/agp/amd-k7-agp.ko] undefined!
ERROR: "agp_put_bridge" [drivers/char/agp/amd-k7-agp.ko] undefined!
ERROR: "agp_remove_bridge" [drivers/char/agp/amd-k7-agp.ko] undefined!
ERROR: "pci_choose_state" [drivers/char/agp/amd-k7-agp.ko] undefined!
ERROR: "pci_save_state" [drivers/char/agp/amd-k7-agp.ko] undefined!
ERROR: "pci_restore_state" [drivers/char/agp/amd-k7-agp.ko] undefined!
ERROR: "pci_set_power_state" [drivers/char/agp/amd-k7-agp.ko] undefined!
ERROR: "ioremap" [drivers/char/agp/amd-k7-agp.ko] undefined!
ERROR: "pci_write_config_dword" [drivers/char/agp/amd-k7-agp.ko] undefined!
ERROR: "pci_write_config_byte" [drivers/char/agp/amd-k7-agp.ko] undefined!
ERROR: "pci_read_config_dword" [drivers/char/agp/amd-k7-agp.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/char/agp/amd-k7-agp.ko] undefined!
ERROR: "agp_bridge" [drivers/char/agp/amd-k7-agp.ko] undefined!
ERROR: "agp_generic_destroy_pages" [drivers/char/agp/ati-agp.ko] undefined!
ERROR: "agp_generic_destroy_page" [drivers/char/agp/ati-agp.ko] undefined!
ERROR: "agp_generic_alloc_pages" [drivers/char/agp/ati-agp.ko] undefined!
ERROR: "agp_generic_alloc_page" [drivers/char/agp/ati-agp.ko] undefined!
ERROR: "agp_generic_free_by_type" [drivers/char/agp/ati-agp.ko] undefined!
ERROR: "agp_generic_alloc_by_type" [drivers/char/agp/ati-agp.ko] undefined!
ERROR: "agp_generic_mask_memory" [drivers/char/agp/ati-agp.ko] undefined!
ERROR: "agp_generic_enable" [drivers/char/agp/ati-agp.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/char/agp/ati-agp.ko] undefined!
ERROR: "__pci_register_driver" [drivers/char/agp/ati-agp.ko] undefined!
ERROR: "agp_off" [drivers/char/agp/ati-agp.ko] undefined!
ERROR: "pcibios_resource_to_bus" [drivers/char/agp/ati-agp.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/char/agp/ati-agp.ko] undefined!
ERROR: "kmalloc_caches" [drivers/char/agp/ati-agp.ko] undefined!
ERROR: "__kmalloc" [drivers/char/agp/ati-agp.ko] undefined!
ERROR: "set_pages_uc" [drivers/char/agp/ati-agp.ko] undefined!
ERROR: "set_memory_uc" [drivers/char/agp/ati-agp.ko] undefined!
ERROR: "__get_free_pages" [drivers/char/agp/ati-agp.ko] undefined!
ERROR: "kfree" [drivers/char/agp/ati-agp.ko] undefined!
ERROR: "free_pages" [drivers/char/agp/ati-agp.ko] undefined!
ERROR: "set_memory_wb" [drivers/char/agp/ati-agp.ko] undefined!
ERROR: "set_pages_wb" [drivers/char/agp/ati-agp.ko] undefined!
ERROR: "__phys_addr" [drivers/char/agp/ati-agp.ko] undefined!
ERROR: "iounmap" [drivers/char/agp/ati-agp.ko] undefined!
ERROR: "global_cache_flush" [drivers/char/agp/ati-agp.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/char/agp/ati-agp.ko] undefined!
ERROR: "mem_section" [drivers/char/agp/ati-agp.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/char/agp/ati-agp.ko] undefined!
ERROR: "agp_generic_type_to_mask_type" [drivers/char/agp/ati-agp.ko] undefined!
ERROR: "agp_add_bridge" [drivers/char/agp/ati-agp.ko] undefined!
ERROR: "_dev_info" [drivers/char/agp/ati-agp.ko] undefined!
ERROR: "_dev_err" [drivers/char/agp/ati-agp.ko] undefined!
ERROR: "agp_alloc_bridge" [drivers/char/agp/ati-agp.ko] undefined!
ERROR: "pci_find_capability" [drivers/char/agp/ati-agp.ko] undefined!
ERROR: "agp_put_bridge" [drivers/char/agp/ati-agp.ko] undefined!
ERROR: "agp_remove_bridge" [drivers/char/agp/ati-agp.ko] undefined!
ERROR: "pci_save_state" [drivers/char/agp/ati-agp.ko] undefined!
ERROR: "pci_restore_state" [drivers/char/agp/ati-agp.ko] undefined!
ERROR: "pci_set_power_state" [drivers/char/agp/ati-agp.ko] undefined!
ERROR: "pci_read_config_dword" [drivers/char/agp/ati-agp.ko] undefined!
ERROR: "pci_write_config_dword" [drivers/char/agp/ati-agp.ko] undefined!
ERROR: "ioremap" [drivers/char/agp/ati-agp.ko] undefined!
ERROR: "agp_bridge" [drivers/char/agp/ati-agp.ko] undefined!
ERROR: "kmalloc_caches" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "pci_write_config_dword" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "__kmalloc" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "pci_write_config_word" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "kvfree" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "pci_read_config_byte" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "set_pages_array_uc" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "no_llseek" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "__x86_indirect_thunk_eax" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "pci_get_class" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "mutex_unlock" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "vfree" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "__alloc_pages_nodemask" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "_copy_to_user" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "pgprot_writecombine" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "misc_register" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "current_task" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "__mutex_init" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "printk" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "_totalram_pages" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "pci_read_config_word" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "mem_section" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "_dev_err" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "__list_add_valid" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "find_first_zero_bit" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "pci_find_capability" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "kvmalloc_node" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "capable" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "_dev_info" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "vzalloc" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "__free_pages" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "set_pages_array_wb" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "__get_free_pages" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "set_pages_wb" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "pci_read_config_dword" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "__phys_addr" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "free_pages" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "kfree" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "remap_pfn_range" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "pcibios_resource_to_bus" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "set_pages_uc" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "pci_get_device" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "set_memory_wb" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "pci_dev_put" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "vm_get_page_prot" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "dump_page" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "on_each_cpu" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "_copy_from_user" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "misc_deregister" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "__put_page" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "set_memory_uc" [drivers/char/agp/agpgart.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/char/hw_random/ks-sa-rng.ko] undefined!
ERROR: "__platform_driver_register" [drivers/char/hw_random/ks-sa-rng.ko] undefined!
ERROR: "clk_get_rate" [drivers/char/hw_random/ks-sa-rng.ko] undefined!
ERROR: "_dev_err" [drivers/char/hw_random/ks-sa-rng.ko] undefined!
ERROR: "devm_hwrng_register" [drivers/char/hw_random/ks-sa-rng.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/char/hw_random/ks-sa-rng.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/char/hw_random/ks-sa-rng.ko] undefined!
ERROR: "syscon_regmap_lookup_by_phandle" [drivers/char/hw_random/ks-sa-rng.ko] undefined!
ERROR: "devm_platform_ioremap_resource" [drivers/char/hw_random/ks-sa-rng.ko] undefined!
ERROR: "devm_kmalloc" [drivers/char/hw_random/ks-sa-rng.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/char/hw_random/ks-sa-rng.ko] undefined!
ERROR: "usleep_range" [drivers/char/hw_random/ks-sa-rng.ko] undefined!
ERROR: "__const_udelay" [drivers/char/hw_random/ks-sa-rng.ko] undefined!
ERROR: "ktime_get" [drivers/char/hw_random/ks-sa-rng.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/char/hw_random/ks-sa-rng.ko] undefined!
ERROR: "__pm_runtime_idle" [drivers/char/hw_random/ks-sa-rng.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/char/hw_random/mtk-rng.ko] undefined!
ERROR: "__platform_driver_register" [drivers/char/hw_random/mtk-rng.ko] undefined!
ERROR: "_dev_err" [drivers/char/hw_random/mtk-rng.ko] undefined!
ERROR: "_dev_info" [drivers/char/hw_random/mtk-rng.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/char/hw_random/mtk-rng.ko] undefined!
ERROR: "__pm_runtime_use_autosuspend" [drivers/char/hw_random/mtk-rng.ko] undefined!
ERROR: "pm_runtime_set_autosuspend_delay" [drivers/char/hw_random/mtk-rng.ko] undefined!
ERROR: "devm_hwrng_register" [drivers/char/hw_random/mtk-rng.ko] undefined!
ERROR: "devm_platform_ioremap_resource" [drivers/char/hw_random/mtk-rng.ko] undefined!
ERROR: "devm_clk_get" [drivers/char/hw_random/mtk-rng.ko] undefined!
ERROR: "devm_kmalloc" [drivers/char/hw_random/mtk-rng.ko] undefined!
ERROR: "__pm_runtime_suspend" [drivers/char/hw_random/mtk-rng.ko] undefined!
ERROR: "ktime_get_mono_fast_ns" [drivers/char/hw_random/mtk-rng.ko] undefined!
ERROR: "__const_udelay" [drivers/char/hw_random/mtk-rng.ko] undefined!
ERROR: "ktime_get" [drivers/char/hw_random/mtk-rng.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/char/hw_random/mtk-rng.ko] undefined!
ERROR: "clk_disable" [drivers/char/hw_random/mtk-rng.ko] undefined!
ERROR: "clk_unprepare" [drivers/char/hw_random/mtk-rng.ko] undefined!
ERROR: "clk_enable" [drivers/char/hw_random/mtk-rng.ko] undefined!
ERROR: "clk_prepare" [drivers/char/hw_random/mtk-rng.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/char/hw_random/exynos-trng.ko] undefined!
ERROR: "__platform_driver_register" [drivers/char/hw_random/exynos-trng.ko] undefined!
ERROR: "_dev_info" [drivers/char/hw_random/exynos-trng.ko] undefined!
ERROR: "devm_hwrng_register" [drivers/char/hw_random/exynos-trng.ko] undefined!
ERROR: "clk_enable" [drivers/char/hw_random/exynos-trng.ko] undefined!
ERROR: "clk_prepare" [drivers/char/hw_random/exynos-trng.ko] undefined!
ERROR: "devm_clk_get" [drivers/char/hw_random/exynos-trng.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/char/hw_random/exynos-trng.ko] undefined!
ERROR: "devm_platform_ioremap_resource" [drivers/char/hw_random/exynos-trng.ko] undefined!
ERROR: "devm_kstrdup" [drivers/char/hw_random/exynos-trng.ko] undefined!
ERROR: "devm_kmalloc" [drivers/char/hw_random/exynos-trng.ko] undefined!
ERROR: "clk_get_rate" [drivers/char/hw_random/exynos-trng.ko] undefined!
ERROR: "memcpy_fromio" [drivers/char/hw_random/exynos-trng.ko] undefined!
ERROR: "usleep_range" [drivers/char/hw_random/exynos-trng.ko] undefined!
ERROR: "__might_sleep" [drivers/char/hw_random/exynos-trng.ko] undefined!
ERROR: "ktime_get" [drivers/char/hw_random/exynos-trng.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/char/hw_random/exynos-trng.ko] undefined!
ERROR: "clk_unprepare" [drivers/char/hw_random/exynos-trng.ko] undefined!
ERROR: "clk_disable" [drivers/char/hw_random/exynos-trng.ko] undefined!
ERROR: "__pm_runtime_idle" [drivers/char/hw_random/exynos-trng.ko] undefined!
ERROR: "_dev_err" [drivers/char/hw_random/exynos-trng.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/char/hw_random/exynos-trng.ko] undefined!
ERROR: "hwrng_unregister" [drivers/char/hw_random/amd-rng.ko] undefined!
ERROR: "kfree" [drivers/char/hw_random/amd-rng.ko] undefined!
ERROR: "__release_region" [drivers/char/hw_random/amd-rng.ko] undefined!
ERROR: "ioport_unmap" [drivers/char/hw_random/amd-rng.ko] undefined!
ERROR: "hwrng_register" [drivers/char/hw_random/amd-rng.ko] undefined!
ERROR: "printk" [drivers/char/hw_random/amd-rng.ko] undefined!
ERROR: "ioport_map" [drivers/char/hw_random/amd-rng.ko] undefined!
ERROR: "_dev_err" [drivers/char/hw_random/amd-rng.ko] undefined!
ERROR: "__request_region" [drivers/char/hw_random/amd-rng.ko] undefined!
ERROR: "ioport_resource" [drivers/char/hw_random/amd-rng.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/char/hw_random/amd-rng.ko] undefined!
ERROR: "kmalloc_caches" [drivers/char/hw_random/amd-rng.ko] undefined!
ERROR: "pci_read_config_dword" [drivers/char/hw_random/amd-rng.ko] undefined!
ERROR: "pci_match_id" [drivers/char/hw_random/amd-rng.ko] undefined!
ERROR: "pci_get_device" [drivers/char/hw_random/amd-rng.ko] undefined!
ERROR: "pci_write_config_byte" [drivers/char/hw_random/amd-rng.ko] undefined!
ERROR: "pci_read_config_byte" [drivers/char/hw_random/amd-rng.ko] undefined!
ERROR: "ioread32" [drivers/char/hw_random/amd-rng.ko] undefined!
ERROR: "usleep_range" [drivers/char/hw_random/amd-rng.ko] undefined!
ERROR: "tty_unregister_ldisc" [drivers/tty/n_tracerouter.ko] undefined!
ERROR: "kfree" [drivers/tty/n_tracerouter.ko] undefined!
ERROR: "printk" [drivers/tty/n_tracerouter.ko] undefined!
ERROR: "tty_register_ldisc" [drivers/tty/n_tracerouter.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/tty/n_tracerouter.ko] undefined!
ERROR: "kmalloc_caches" [drivers/tty/n_tracerouter.ko] undefined!
ERROR: "refcount_warn_saturate" [drivers/tty/n_tracerouter.ko] undefined!
ERROR: "tty_kref_put" [drivers/tty/n_tracerouter.ko] undefined!
ERROR: "tty_driver_flush_buffer" [drivers/tty/n_tracerouter.ko] undefined!
ERROR: "mutex_unlock" [drivers/tty/n_tracerouter.ko] undefined!
ERROR: "n_tracesink_datadrain" [drivers/tty/n_tracerouter.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/tty/n_tracerouter.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/tty/serial/sifive.ko] undefined!
ERROR: "uart_unregister_driver" [drivers/tty/serial/sifive.ko] undefined!
ERROR: "__platform_driver_register" [drivers/tty/serial/sifive.ko] undefined!
ERROR: "uart_register_driver" [drivers/tty/serial/sifive.ko] undefined!
ERROR: "uart_add_one_port" [drivers/tty/serial/sifive.ko] undefined!
ERROR: "request_threaded_irq" [drivers/tty/serial/sifive.ko] undefined!
ERROR: "clk_get_rate" [drivers/tty/serial/sifive.ko] undefined!
ERROR: "clk_notifier_register" [drivers/tty/serial/sifive.ko] undefined!
ERROR: "devm_kmalloc" [drivers/tty/serial/sifive.ko] undefined!
ERROR: "of_alias_get_id" [drivers/tty/serial/sifive.ko] undefined!
ERROR: "devm_clk_get" [drivers/tty/serial/sifive.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/tty/serial/sifive.ko] undefined!
ERROR: "platform_get_resource" [drivers/tty/serial/sifive.ko] undefined!
ERROR: "platform_get_irq" [drivers/tty/serial/sifive.ko] undefined!
ERROR: "_dev_err" [drivers/tty/serial/sifive.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/tty/serial/sifive.ko] undefined!
ERROR: "uart_update_timeout" [drivers/tty/serial/sifive.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/tty/serial/sifive.ko] undefined!
ERROR: "uart_get_baud_rate" [drivers/tty/serial/sifive.ko] undefined!
ERROR: "uart_write_wakeup" [drivers/tty/serial/sifive.ko] undefined!
ERROR: "tty_flip_buffer_push" [drivers/tty/serial/sifive.ko] undefined!
ERROR: "uart_insert_char" [drivers/tty/serial/sifive.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/tty/serial/sifive.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/tty/serial/sifive.ko] undefined!
ERROR: "clk_notifier_unregister" [drivers/tty/serial/sifive.ko] undefined!
ERROR: "free_irq" [drivers/tty/serial/sifive.ko] undefined!
ERROR: "uart_remove_one_port" [drivers/tty/serial/sifive.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/tty/serial/arc_uart.ko] undefined!
ERROR: "uart_unregister_driver" [drivers/tty/serial/arc_uart.ko] undefined!
ERROR: "__platform_driver_register" [drivers/tty/serial/arc_uart.ko] undefined!
ERROR: "uart_register_driver" [drivers/tty/serial/arc_uart.ko] undefined!
ERROR: "_dev_err" [drivers/tty/serial/arc_uart.ko] undefined!
ERROR: "uart_add_one_port" [drivers/tty/serial/arc_uart.ko] undefined!
ERROR: "irq_of_parse_and_map" [drivers/tty/serial/arc_uart.ko] undefined!
ERROR: "of_iomap" [drivers/tty/serial/arc_uart.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/tty/serial/arc_uart.ko] undefined!
ERROR: "of_alias_get_id" [drivers/tty/serial/arc_uart.ko] undefined!
ERROR: "_dev_warn" [drivers/tty/serial/arc_uart.ko] undefined!
ERROR: "request_threaded_irq" [drivers/tty/serial/arc_uart.ko] undefined!
ERROR: "uart_insert_char" [drivers/tty/serial/arc_uart.ko] undefined!
ERROR: "uart_handle_sysrq_char" [drivers/tty/serial/arc_uart.ko] undefined!
ERROR: "tty_flip_buffer_push" [drivers/tty/serial/arc_uart.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/tty/serial/arc_uart.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/tty/serial/arc_uart.ko] undefined!
ERROR: "uart_write_wakeup" [drivers/tty/serial/arc_uart.ko] undefined!
ERROR: "free_irq" [drivers/tty/serial/arc_uart.ko] undefined!
ERROR: "tty_termios_encode_baud_rate" [drivers/tty/serial/arc_uart.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/tty/serial/arc_uart.ko] undefined!
ERROR: "uart_update_timeout" [drivers/tty/serial/arc_uart.ko] undefined!
ERROR: "tty_termios_baud_rate" [drivers/tty/serial/arc_uart.ko] undefined!
ERROR: "tty_termios_copy_hw" [drivers/tty/serial/arc_uart.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/tty/serial/arc_uart.ko] undefined!
ERROR: "uart_get_baud_rate" [drivers/tty/serial/arc_uart.ko] undefined!
ERROR: "simple_open" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "default_llseek" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "param_ops_uint" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "uart_unregister_driver" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "__pci_register_driver" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "uart_register_driver" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "debugfs_create_file" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "uart_add_one_port" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "pci_set_master" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "__get_free_pages" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "dma_direct_map_sg" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "uart_write_wakeup" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "__kmalloc" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "tty_kref_put" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "tty_port_tty_get" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "mem_section" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "__phys_addr" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "sg_init_table" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "simple_read_from_buffer" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "snprintf" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "kmalloc_caches" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "dma_free_attrs" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "free_irq" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "dma_release_channel" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "dma_alloc_attrs" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "__dma_request_channel" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "pci_get_slot" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "request_threaded_irq" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "uart_handle_sysrq_char" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "uart_handle_break" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "_dev_warn" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "tty_flip_buffer_push" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "tty_insert_flip_string_fixed_flag" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "page_address" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "tty_buffer_request_room" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "tty_termios_encode_baud_rate" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "tty_termios_baud_rate" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "uart_update_timeout" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "uart_get_baud_rate" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "jiffies" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "pci_iounmap" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "pci_release_regions" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "pci_iomap" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "pci_request_regions" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "_dev_info" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "dma_ops" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "iowrite8" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "ioread8" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "kfree" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "pci_disable_device" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "free_pages" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "uart_remove_one_port" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "debugfs_remove" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "pci_choose_state" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "pci_save_state" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "uart_suspend_port" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "_dev_err" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "uart_resume_port" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "pci_enable_device" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "pci_restore_state" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "pci_set_power_state" [drivers/tty/serial/pch_uart.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/tty/serial/timbuart.ko] undefined!
ERROR: "__platform_driver_register" [drivers/tty/serial/timbuart.ko] undefined!
ERROR: "printk" [drivers/tty/serial/timbuart.ko] undefined!
ERROR: "uart_add_one_port" [drivers/tty/serial/timbuart.ko] undefined!
ERROR: "uart_register_driver" [drivers/tty/serial/timbuart.ko] undefined!
ERROR: "tasklet_init" [drivers/tty/serial/timbuart.ko] undefined!
ERROR: "platform_get_irq" [drivers/tty/serial/timbuart.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/tty/serial/timbuart.ko] undefined!
ERROR: "kmalloc_caches" [drivers/tty/serial/timbuart.ko] undefined!
ERROR: "uart_write_wakeup" [drivers/tty/serial/timbuart.ko] undefined!
ERROR: "tty_flip_buffer_push" [drivers/tty/serial/timbuart.ko] undefined!
ERROR: "__tty_insert_flip_char" [drivers/tty/serial/timbuart.ko] undefined!
ERROR: "__wake_up" [drivers/tty/serial/timbuart.ko] undefined!
ERROR: "uart_handle_cts_change" [drivers/tty/serial/timbuart.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/tty/serial/timbuart.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/tty/serial/timbuart.ko] undefined!
ERROR: "request_threaded_irq" [drivers/tty/serial/timbuart.ko] undefined!
ERROR: "__tasklet_schedule" [drivers/tty/serial/timbuart.ko] undefined!
ERROR: "free_irq" [drivers/tty/serial/timbuart.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/tty/serial/timbuart.ko] undefined!
ERROR: "uart_update_timeout" [drivers/tty/serial/timbuart.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/tty/serial/timbuart.ko] undefined!
ERROR: "tty_termios_encode_baud_rate" [drivers/tty/serial/timbuart.ko] undefined!
ERROR: "tty_termios_copy_hw" [drivers/tty/serial/timbuart.ko] undefined!
ERROR: "uart_get_baud_rate" [drivers/tty/serial/timbuart.ko] undefined!
ERROR: "iounmap" [drivers/tty/serial/timbuart.ko] undefined!
ERROR: "__release_region" [drivers/tty/serial/timbuart.ko] undefined!
ERROR: "ioremap" [drivers/tty/serial/timbuart.ko] undefined!
ERROR: "__request_region" [drivers/tty/serial/timbuart.ko] undefined!
ERROR: "iomem_resource" [drivers/tty/serial/timbuart.ko] undefined!
ERROR: "platform_get_resource" [drivers/tty/serial/timbuart.ko] undefined!
ERROR: "ioread8" [drivers/tty/serial/timbuart.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/tty/serial/timbuart.ko] undefined!
ERROR: "iowrite8" [drivers/tty/serial/timbuart.ko] undefined!
ERROR: "iowrite32" [drivers/tty/serial/timbuart.ko] undefined!
ERROR: "ioread32" [drivers/tty/serial/timbuart.ko] undefined!
ERROR: "kfree" [drivers/tty/serial/timbuart.ko] undefined!
ERROR: "uart_unregister_driver" [drivers/tty/serial/timbuart.ko] undefined!
ERROR: "uart_remove_one_port" [drivers/tty/serial/timbuart.ko] undefined!
ERROR: "tasklet_kill" [drivers/tty/serial/timbuart.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/tty/serial/altera_uart.ko] undefined!
ERROR: "uart_unregister_driver" [drivers/tty/serial/altera_uart.ko] undefined!
ERROR: "__platform_driver_register" [drivers/tty/serial/altera_uart.ko] undefined!
ERROR: "uart_register_driver" [drivers/tty/serial/altera_uart.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/tty/serial/altera_uart.ko] undefined!
ERROR: "uart_add_one_port" [drivers/tty/serial/altera_uart.ko] undefined!
ERROR: "ioremap" [drivers/tty/serial/altera_uart.ko] undefined!
ERROR: "platform_get_resource" [drivers/tty/serial/altera_uart.ko] undefined!
ERROR: "printk" [drivers/tty/serial/altera_uart.ko] undefined!
ERROR: "request_threaded_irq" [drivers/tty/serial/altera_uart.ko] undefined!
ERROR: "init_timer_key" [drivers/tty/serial/altera_uart.ko] undefined!
ERROR: "mod_timer" [drivers/tty/serial/altera_uart.ko] undefined!
ERROR: "jiffies" [drivers/tty/serial/altera_uart.ko] undefined!
ERROR: "uart_write_wakeup" [drivers/tty/serial/altera_uart.ko] undefined!
ERROR: "tty_flip_buffer_push" [drivers/tty/serial/altera_uart.ko] undefined!
ERROR: "uart_handle_break" [drivers/tty/serial/altera_uart.ko] undefined!
ERROR: "uart_insert_char" [drivers/tty/serial/altera_uart.ko] undefined!
ERROR: "uart_handle_sysrq_char" [drivers/tty/serial/altera_uart.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/tty/serial/altera_uart.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/tty/serial/altera_uart.ko] undefined!
ERROR: "del_timer" [drivers/tty/serial/altera_uart.ko] undefined!
ERROR: "free_irq" [drivers/tty/serial/altera_uart.ko] undefined!
ERROR: "uart_update_timeout" [drivers/tty/serial/altera_uart.ko] undefined!
ERROR: "tty_termios_encode_baud_rate" [drivers/tty/serial/altera_uart.ko] undefined!
ERROR: "tty_termios_copy_hw" [drivers/tty/serial/altera_uart.ko] undefined!
ERROR: "uart_get_baud_rate" [drivers/tty/serial/altera_uart.ko] undefined!
ERROR: "iounmap" [drivers/tty/serial/altera_uart.ko] undefined!
ERROR: "uart_remove_one_port" [drivers/tty/serial/altera_uart.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/tty/serial/altera_uart.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/tty/serial/altera_uart.ko] undefined!
ERROR: "uart_unregister_driver" [drivers/tty/serial/uartlite.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/tty/serial/uartlite.ko] undefined!
ERROR: "__platform_driver_register" [drivers/tty/serial/uartlite.ko] undefined!
ERROR: "tty_flip_buffer_push" [drivers/tty/serial/uartlite.ko] undefined!
ERROR: "__tty_insert_flip_char" [drivers/tty/serial/uartlite.ko] undefined!
ERROR: "request_threaded_irq" [drivers/tty/serial/uartlite.ko] undefined!
ERROR: "uart_write_wakeup" [drivers/tty/serial/uartlite.ko] undefined!
ERROR: "free_irq" [drivers/tty/serial/uartlite.ko] undefined!
ERROR: "uart_update_timeout" [drivers/tty/serial/uartlite.ko] undefined!
ERROR: "uart_get_baud_rate" [drivers/tty/serial/uartlite.ko] undefined!
ERROR: "iounmap" [drivers/tty/serial/uartlite.ko] undefined!
ERROR: "ioread32be" [drivers/tty/serial/uartlite.ko] undefined!
ERROR: "iowrite32be" [drivers/tty/serial/uartlite.ko] undefined!
ERROR: "ioread32" [drivers/tty/serial/uartlite.ko] undefined!
ERROR: "iowrite32" [drivers/tty/serial/uartlite.ko] undefined!
ERROR: "__release_region" [drivers/tty/serial/uartlite.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/tty/serial/uartlite.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/tty/serial/uartlite.ko] undefined!
ERROR: "ioremap" [drivers/tty/serial/uartlite.ko] undefined!
ERROR: "__request_region" [drivers/tty/serial/uartlite.ko] undefined!
ERROR: "iomem_resource" [drivers/tty/serial/uartlite.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/tty/serial/uartlite.ko] undefined!
ERROR: "_dev_err" [drivers/tty/serial/uartlite.ko] undefined!
ERROR: "uart_register_driver" [drivers/tty/serial/uartlite.ko] undefined!
ERROR: "uart_add_one_port" [drivers/tty/serial/uartlite.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/tty/serial/uartlite.ko] undefined!
ERROR: "clk_prepare" [drivers/tty/serial/uartlite.ko] undefined!
ERROR: "devm_clk_get" [drivers/tty/serial/uartlite.ko] undefined!
ERROR: "platform_get_irq" [drivers/tty/serial/uartlite.ko] undefined!
ERROR: "platform_get_resource" [drivers/tty/serial/uartlite.ko] undefined!
ERROR: "devm_kmalloc" [drivers/tty/serial/uartlite.ko] undefined!
ERROR: "of_get_property" [drivers/tty/serial/uartlite.ko] undefined!
ERROR: "clk_enable" [drivers/tty/serial/uartlite.ko] undefined!
ERROR: "uart_remove_one_port" [drivers/tty/serial/uartlite.ko] undefined!
ERROR: "clk_unprepare" [drivers/tty/serial/uartlite.ko] undefined!
ERROR: "clk_disable" [drivers/tty/serial/uartlite.ko] undefined!
ERROR: "uart_suspend_port" [drivers/tty/serial/uartlite.ko] undefined!
ERROR: "uart_resume_port" [drivers/tty/serial/uartlite.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/tty/serial/uartlite.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/tty/serial/uartlite.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/tty/serial/uartlite.ko] undefined!
ERROR: "uart_unregister_driver" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "__platform_driver_register" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "uart_handle_break" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "mod_timer" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "jiffies" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "tty_flip_buffer_push" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "tty_buffer_request_room" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "uart_handle_sysrq_char" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "_dev_notice" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "uart_register_driver" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "printk" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "device_create_file" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "uart_add_one_port" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "mctrl_gpio_init" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "devm_clk_get" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "platform_get_irq" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "platform_get_irq_optional" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "platform_get_resource" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "mutex_unlock" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "of_find_property" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "of_alias_get_id" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "devm_kmalloc" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "__udelay" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "uart_update_timeout" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "uart_get_baud_rate" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "mctrl_gpio_set" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "mctrl_gpio_to_gpiod" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "mctrl_gpio_get" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "mctrl_gpio_enable_ms" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "request_threaded_irq" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "kasprintf" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "uart_write_wakeup" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "__tty_insert_flip_char" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "del_timer" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "kfree" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "free_irq" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "mctrl_gpio_disable_ms" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "clk_get_rate" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "clk_enable" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "clk_prepare" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "__pm_runtime_idle" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "clk_unprepare" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "clk_disable" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "__release_region" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "iounmap" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "release_resource" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "_dev_err" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "ioremap" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "__request_region" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "iomem_resource" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "ioread8" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "ioread16" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "iowrite8" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "iowrite16" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "device_remove_file" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "uart_remove_one_port" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "sprintf" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "init_timer_key" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "_kstrtol" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "__warn_printk" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "uart_suspend_port" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "uart_resume_port" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/tty/serial/sh-sci.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/tty/serial/8250/8250_of.ko] undefined!
ERROR: "__platform_driver_register" [drivers/tty/serial/8250/8250_of.ko] undefined!
ERROR: "serial8250_resume_port" [drivers/tty/serial/8250/8250_of.ko] undefined!
ERROR: "irq_dispose_mapping" [drivers/tty/serial/8250/8250_of.ko] undefined!
ERROR: "_dev_warn" [drivers/tty/serial/8250/8250_of.ko] undefined!
ERROR: "clk_get_rate" [drivers/tty/serial/8250/8250_of.ko] undefined!
ERROR: "clk_enable" [drivers/tty/serial/8250/8250_of.ko] undefined!
ERROR: "clk_prepare" [drivers/tty/serial/8250/8250_of.ko] undefined!
ERROR: "reset_control_deassert" [drivers/tty/serial/8250/8250_of.ko] undefined!
ERROR: "devm_clk_get" [drivers/tty/serial/8250/8250_of.ko] undefined!
ERROR: "of_device_is_big_endian" [drivers/tty/serial/8250/8250_of.ko] undefined!
ERROR: "serial8250_register_8250_port" [drivers/tty/serial/8250/8250_of.ko] undefined!
ERROR: "__devm_reset_control_get" [drivers/tty/serial/8250/8250_of.ko] undefined!
ERROR: "of_irq_get" [drivers/tty/serial/8250/8250_of.ko] undefined!
ERROR: "of_alias_get_id" [drivers/tty/serial/8250/8250_of.ko] undefined!
ERROR: "of_device_is_compatible" [drivers/tty/serial/8250/8250_of.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/tty/serial/8250/8250_of.ko] undefined!
ERROR: "of_address_to_resource" [drivers/tty/serial/8250/8250_of.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/tty/serial/8250/8250_of.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/tty/serial/8250/8250_of.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/tty/serial/8250/8250_of.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/tty/serial/8250/8250_of.ko] undefined!
ERROR: "kmalloc_caches" [drivers/tty/serial/8250/8250_of.ko] undefined!
ERROR: "of_find_property" [drivers/tty/serial/8250/8250_of.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/tty/serial/8250/8250_of.ko] undefined!
ERROR: "serial8250_em485_init" [drivers/tty/serial/8250/8250_of.ko] undefined!
ERROR: "serial8250_em485_destroy" [drivers/tty/serial/8250/8250_of.ko] undefined!
ERROR: "kfree" [drivers/tty/serial/8250/8250_of.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/tty/serial/8250/8250_of.ko] undefined!
ERROR: "reset_control_assert" [drivers/tty/serial/8250/8250_of.ko] undefined!
ERROR: "serial8250_unregister_port" [drivers/tty/serial/8250/8250_of.ko] undefined!
ERROR: "console_suspend_enabled" [drivers/tty/serial/8250/8250_of.ko] undefined!
ERROR: "clk_unprepare" [drivers/tty/serial/8250/8250_of.ko] undefined!
ERROR: "clk_disable" [drivers/tty/serial/8250/8250_of.ko] undefined!
ERROR: "__pm_runtime_idle" [drivers/tty/serial/8250/8250_of.ko] undefined!
ERROR: "serial8250_suspend_port" [drivers/tty/serial/8250/8250_of.ko] undefined!
ERROR: "serial8250_get_port" [drivers/tty/serial/8250/8250_of.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/tty/serial/8250/8250_aspeed_vuart.ko] undefined!
ERROR: "__platform_driver_register" [drivers/tty/serial/8250/8250_aspeed_vuart.ko] undefined!
ERROR: "_dev_warn" [drivers/tty/serial/8250/8250_aspeed_vuart.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/tty/serial/8250/8250_aspeed_vuart.ko] undefined!
ERROR: "of_node_put" [drivers/tty/serial/8250/8250_aspeed_vuart.ko] undefined!
ERROR: "regmap_read" [drivers/tty/serial/8250/8250_aspeed_vuart.ko] undefined!
ERROR: "syscon_node_to_regmap" [drivers/tty/serial/8250/8250_aspeed_vuart.ko] undefined!
ERROR: "irq_dispose_mapping" [drivers/tty/serial/8250/8250_aspeed_vuart.ko] undefined!
ERROR: "clk_get_rate" [drivers/tty/serial/8250/8250_aspeed_vuart.ko] undefined!
ERROR: "clk_enable" [drivers/tty/serial/8250/8250_aspeed_vuart.ko] undefined!
ERROR: "clk_prepare" [drivers/tty/serial/8250/8250_aspeed_vuart.ko] undefined!
ERROR: "devm_clk_get" [drivers/tty/serial/8250/8250_aspeed_vuart.ko] undefined!
ERROR: "of_parse_phandle_with_fixed_args" [drivers/tty/serial/8250/8250_aspeed_vuart.ko] undefined!
ERROR: "serial8250_register_8250_port" [drivers/tty/serial/8250/8250_aspeed_vuart.ko] undefined!
ERROR: "of_find_property" [drivers/tty/serial/8250/8250_aspeed_vuart.ko] undefined!
ERROR: "irq_of_parse_and_map" [drivers/tty/serial/8250/8250_aspeed_vuart.ko] undefined!
ERROR: "of_alias_get_id" [drivers/tty/serial/8250/8250_aspeed_vuart.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/tty/serial/8250/8250_aspeed_vuart.ko] undefined!
ERROR: "sysfs_create_group" [drivers/tty/serial/8250/8250_aspeed_vuart.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/tty/serial/8250/8250_aspeed_vuart.ko] undefined!
ERROR: "platform_get_resource" [drivers/tty/serial/8250/8250_aspeed_vuart.ko] undefined!
ERROR: "init_timer_key" [drivers/tty/serial/8250/8250_aspeed_vuart.ko] undefined!
ERROR: "devm_kmalloc" [drivers/tty/serial/8250/8250_aspeed_vuart.ko] undefined!
ERROR: "serial8250_do_startup" [drivers/tty/serial/8250/8250_aspeed_vuart.ko] undefined!
ERROR: "serial8250_do_shutdown" [drivers/tty/serial/8250/8250_aspeed_vuart.ko] undefined!
ERROR: "tty_flip_buffer_push" [drivers/tty/serial/8250/8250_aspeed_vuart.ko] undefined!
ERROR: "serial8250_read_char" [drivers/tty/serial/8250/8250_aspeed_vuart.ko] undefined!
ERROR: "serial8250_tx_chars" [drivers/tty/serial/8250/8250_aspeed_vuart.ko] undefined!
ERROR: "uart_unlock_and_check_sysrq" [drivers/tty/serial/8250/8250_aspeed_vuart.ko] undefined!
ERROR: "serial8250_modem_status" [drivers/tty/serial/8250/8250_aspeed_vuart.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/tty/serial/8250/8250_aspeed_vuart.ko] undefined!
ERROR: "mod_timer" [drivers/tty/serial/8250/8250_aspeed_vuart.ko] undefined!
ERROR: "jiffies" [drivers/tty/serial/8250/8250_aspeed_vuart.ko] undefined!
ERROR: "tty_buffer_space_avail" [drivers/tty/serial/8250/8250_aspeed_vuart.ko] undefined!
ERROR: "clk_unprepare" [drivers/tty/serial/8250/8250_aspeed_vuart.ko] undefined!
ERROR: "clk_disable" [drivers/tty/serial/8250/8250_aspeed_vuart.ko] undefined!
ERROR: "sysfs_remove_group" [drivers/tty/serial/8250/8250_aspeed_vuart.ko] undefined!
ERROR: "serial8250_unregister_port" [drivers/tty/serial/8250/8250_aspeed_vuart.ko] undefined!
ERROR: "del_timer" [drivers/tty/serial/8250/8250_aspeed_vuart.ko] undefined!
ERROR: "snprintf" [drivers/tty/serial/8250/8250_aspeed_vuart.ko] undefined!
ERROR: "_kstrtoul" [drivers/tty/serial/8250/8250_aspeed_vuart.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/tty/serial/8250/8250_aspeed_vuart.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/tty/serial/8250/8250_aspeed_vuart.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/tty/serial/8250/8250_aspeed_vuart.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/reset/reset-ti-syscon.ko] undefined!
ERROR: "__platform_driver_register" [drivers/reset/reset-ti-syscon.ko] undefined!
ERROR: "_dev_err" [drivers/reset/reset-ti-syscon.ko] undefined!
ERROR: "devm_reset_controller_register" [drivers/reset/reset-ti-syscon.ko] undefined!
ERROR: "of_get_property" [drivers/reset/reset-ti-syscon.ko] undefined!
ERROR: "syscon_node_to_regmap" [drivers/reset/reset-ti-syscon.ko] undefined!
ERROR: "devm_kmalloc" [drivers/reset/reset-ti-syscon.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/reset/reset-ti-syscon.ko] undefined!
ERROR: "regmap_read" [drivers/reset/reset-ti-syscon.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/reset/reset-qcom-pdc.ko] undefined!
ERROR: "__platform_driver_register" [drivers/reset/reset-qcom-pdc.ko] undefined!
ERROR: "_dev_err" [drivers/reset/reset-qcom-pdc.ko] undefined!
ERROR: "devm_reset_controller_register" [drivers/reset/reset-qcom-pdc.ko] undefined!
ERROR: "__devm_regmap_init_mmio_clk" [drivers/reset/reset-qcom-pdc.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/reset/reset-qcom-pdc.ko] undefined!
ERROR: "platform_get_resource" [drivers/reset/reset-qcom-pdc.ko] undefined!
ERROR: "devm_kmalloc" [drivers/reset/reset-qcom-pdc.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/reset/reset-qcom-pdc.ko] undefined!
ERROR: "regulator_list_voltage_linear" [drivers/regulator/wm8350-regulator.ko] undefined!
ERROR: "regulator_is_enabled_regmap" [drivers/regulator/wm8350-regulator.ko] undefined!
ERROR: "regulator_disable_regmap" [drivers/regulator/wm8350-regulator.ko] undefined!
ERROR: "regulator_enable_regmap" [drivers/regulator/wm8350-regulator.ko] undefined!
ERROR: "regulator_get_voltage_sel_regmap" [drivers/regulator/wm8350-regulator.ko] undefined!
ERROR: "regulator_set_voltage_sel_regmap" [drivers/regulator/wm8350-regulator.ko] undefined!
ERROR: "regulator_list_voltage_linear_range" [drivers/regulator/wm8350-regulator.ko] undefined!
ERROR: "regulator_get_current_limit_regmap" [drivers/regulator/wm8350-regulator.ko] undefined!
ERROR: "regulator_set_current_limit_regmap" [drivers/regulator/wm8350-regulator.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/regulator/wm8350-regulator.ko] undefined!
ERROR: "__platform_driver_register" [drivers/regulator/wm8350-regulator.ko] undefined!
ERROR: "platform_device_put" [drivers/regulator/wm8350-regulator.ko] undefined!
ERROR: "platform_device_add" [drivers/regulator/wm8350-regulator.ko] undefined!
ERROR: "platform_device_alloc" [drivers/regulator/wm8350-regulator.ko] undefined!
ERROR: "_dev_err" [drivers/regulator/wm8350-regulator.ko] undefined!
ERROR: "request_threaded_irq" [drivers/regulator/wm8350-regulator.ko] undefined!
ERROR: "devm_regulator_register" [drivers/regulator/wm8350-regulator.ko] undefined!
ERROR: "regulator_unlock" [drivers/regulator/wm8350-regulator.ko] undefined!
ERROR: "regulator_notifier_call_chain" [drivers/regulator/wm8350-regulator.ko] undefined!
ERROR: "regulator_lock" [drivers/regulator/wm8350-regulator.ko] undefined!
ERROR: "free_irq" [drivers/regulator/wm8350-regulator.ko] undefined!
ERROR: "regulator_map_voltage_linear" [drivers/regulator/wm8350-regulator.ko] undefined!
ERROR: "regulator_map_voltage_linear_range" [drivers/regulator/wm8350-regulator.ko] undefined!
ERROR: "wm8350_set_bits" [drivers/regulator/wm8350-regulator.ko] undefined!
ERROR: "wm8350_clear_bits" [drivers/regulator/wm8350-regulator.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/regulator/wm8350-regulator.ko] undefined!
ERROR: "wm8350_reg_write" [drivers/regulator/wm8350-regulator.ko] undefined!
ERROR: "wm8350_reg_read" [drivers/regulator/wm8350-regulator.ko] undefined!
ERROR: "rdev_get_id" [drivers/regulator/wm8350-regulator.ko] undefined!
ERROR: "rdev_get_drvdata" [drivers/regulator/wm8350-regulator.ko] undefined!
ERROR: "regulator_is_enabled_regmap" [drivers/regulator/uniphier-regulator.ko] undefined!
ERROR: "regulator_disable_regmap" [drivers/regulator/uniphier-regulator.ko] undefined!
ERROR: "regulator_enable_regmap" [drivers/regulator/uniphier-regulator.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/regulator/uniphier-regulator.ko] undefined!
ERROR: "__platform_driver_register" [drivers/regulator/uniphier-regulator.ko] undefined!
ERROR: "devm_regulator_register" [drivers/regulator/uniphier-regulator.ko] undefined!
ERROR: "of_get_regulator_init_data" [drivers/regulator/uniphier-regulator.ko] undefined!
ERROR: "__devm_regmap_init_mmio_clk" [drivers/regulator/uniphier-regulator.ko] undefined!
ERROR: "reset_control_deassert" [drivers/regulator/uniphier-regulator.ko] undefined!
ERROR: "clk_bulk_enable" [drivers/regulator/uniphier-regulator.ko] undefined!
ERROR: "clk_bulk_prepare" [drivers/regulator/uniphier-regulator.ko] undefined!
ERROR: "__devm_reset_control_get" [drivers/regulator/uniphier-regulator.ko] undefined!
ERROR: "devm_clk_bulk_get" [drivers/regulator/uniphier-regulator.ko] undefined!
ERROR: "devm_platform_ioremap_resource" [drivers/regulator/uniphier-regulator.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/regulator/uniphier-regulator.ko] undefined!
ERROR: "devm_kmalloc" [drivers/regulator/uniphier-regulator.ko] undefined!
ERROR: "clk_bulk_unprepare" [drivers/regulator/uniphier-regulator.ko] undefined!
ERROR: "clk_bulk_disable" [drivers/regulator/uniphier-regulator.ko] undefined!
ERROR: "reset_control_assert" [drivers/regulator/uniphier-regulator.ko] undefined!
ERROR: "regulator_get_voltage_sel_regmap" [drivers/regulator/tps65086-regulator.ko] undefined!
ERROR: "regulator_set_voltage_sel_regmap" [drivers/regulator/tps65086-regulator.ko] undefined!
ERROR: "regulator_map_voltage_linear_range" [drivers/regulator/tps65086-regulator.ko] undefined!
ERROR: "regulator_list_voltage_linear_range" [drivers/regulator/tps65086-regulator.ko] undefined!
ERROR: "regulator_is_enabled_regmap" [drivers/regulator/tps65086-regulator.ko] undefined!
ERROR: "regulator_disable_regmap" [drivers/regulator/tps65086-regulator.ko] undefined!
ERROR: "regulator_enable_regmap" [drivers/regulator/tps65086-regulator.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/regulator/tps65086-regulator.ko] undefined!
ERROR: "__platform_driver_register" [drivers/regulator/tps65086-regulator.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/regulator/tps65086-regulator.ko] undefined!
ERROR: "_dev_warn" [drivers/regulator/tps65086-regulator.ko] undefined!
ERROR: "of_find_property" [drivers/regulator/tps65086-regulator.ko] undefined!
ERROR: "_dev_err" [drivers/regulator/tps65086-regulator.ko] undefined!
ERROR: "devm_regulator_register" [drivers/regulator/tps65086-regulator.ko] undefined!
ERROR: "regulator_set_voltage_time_sel" [drivers/regulator/sy8824x.ko] undefined!
ERROR: "regulator_is_enabled_regmap" [drivers/regulator/sy8824x.ko] undefined!
ERROR: "regulator_disable_regmap" [drivers/regulator/sy8824x.ko] undefined!
ERROR: "regulator_enable_regmap" [drivers/regulator/sy8824x.ko] undefined!
ERROR: "regulator_get_voltage_sel_regmap" [drivers/regulator/sy8824x.ko] undefined!
ERROR: "regulator_set_voltage_sel_regmap" [drivers/regulator/sy8824x.ko] undefined!
ERROR: "regulator_map_voltage_linear" [drivers/regulator/sy8824x.ko] undefined!
ERROR: "regulator_list_voltage_linear" [drivers/regulator/sy8824x.ko] undefined!
ERROR: "i2c_del_driver" [drivers/regulator/sy8824x.ko] undefined!
ERROR: "i2c_register_driver" [drivers/regulator/sy8824x.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/regulator/sy8824x.ko] undefined!
ERROR: "regmap_read" [drivers/regulator/sy8824x.ko] undefined!
ERROR: "rdev_get_drvdata" [drivers/regulator/sy8824x.ko] undefined!
ERROR: "_dev_err" [drivers/regulator/sy8824x.ko] undefined!
ERROR: "devm_regulator_register" [drivers/regulator/sy8824x.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/regulator/sy8824x.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/regulator/sy8824x.ko] undefined!
ERROR: "of_get_regulator_init_data" [drivers/regulator/sy8824x.ko] undefined!
ERROR: "devm_kmalloc" [drivers/regulator/sy8824x.ko] undefined!
ERROR: "regulator_get_voltage_sel_regmap" [drivers/regulator/slg51000-regulator.ko] undefined!
ERROR: "regulator_set_voltage_sel_regmap" [drivers/regulator/slg51000-regulator.ko] undefined!
ERROR: "regulator_map_voltage_linear" [drivers/regulator/slg51000-regulator.ko] undefined!
ERROR: "regulator_list_voltage_linear" [drivers/regulator/slg51000-regulator.ko] undefined!
ERROR: "regulator_is_enabled_regmap" [drivers/regulator/slg51000-regulator.ko] undefined!
ERROR: "regulator_disable_regmap" [drivers/regulator/slg51000-regulator.ko] undefined!
ERROR: "regulator_enable_regmap" [drivers/regulator/slg51000-regulator.ko] undefined!
ERROR: "i2c_del_driver" [drivers/regulator/slg51000-regulator.ko] undefined!
ERROR: "i2c_register_driver" [drivers/regulator/slg51000-regulator.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/regulator/slg51000-regulator.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/regulator/slg51000-regulator.ko] undefined!
ERROR: "devm_regulator_register" [drivers/regulator/slg51000-regulator.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/regulator/slg51000-regulator.ko] undefined!
ERROR: "devm_gpiod_get_optional" [drivers/regulator/slg51000-regulator.ko] undefined!
ERROR: "devm_kmalloc" [drivers/regulator/slg51000-regulator.ko] undefined!
ERROR: "fwnode_gpiod_get_index" [drivers/regulator/slg51000-regulator.ko] undefined!
ERROR: "_dev_err" [drivers/regulator/slg51000-regulator.ko] undefined!
ERROR: "_dev_info" [drivers/regulator/slg51000-regulator.ko] undefined!
ERROR: "_dev_warn" [drivers/regulator/slg51000-regulator.ko] undefined!
ERROR: "regulator_unlock" [drivers/regulator/slg51000-regulator.ko] undefined!
ERROR: "regulator_notifier_call_chain" [drivers/regulator/slg51000-regulator.ko] undefined!
ERROR: "regulator_lock" [drivers/regulator/slg51000-regulator.ko] undefined!
ERROR: "regmap_read" [drivers/regulator/slg51000-regulator.ko] undefined!
ERROR: "regmap_bulk_read" [drivers/regulator/slg51000-regulator.ko] undefined!
ERROR: "regulator_is_enabled_regmap" [drivers/regulator/sc2731-regulator.ko] undefined!
ERROR: "regulator_disable_regmap" [drivers/regulator/sc2731-regulator.ko] undefined!
ERROR: "regulator_enable_regmap" [drivers/regulator/sc2731-regulator.ko] undefined!
ERROR: "regulator_get_voltage_sel_regmap" [drivers/regulator/sc2731-regulator.ko] undefined!
ERROR: "regulator_set_voltage_sel_regmap" [drivers/regulator/sc2731-regulator.ko] undefined!
ERROR: "regulator_list_voltage_linear" [drivers/regulator/sc2731-regulator.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/regulator/sc2731-regulator.ko] undefined!
ERROR: "__platform_driver_register" [drivers/regulator/sc2731-regulator.ko] undefined!
ERROR: "_dev_err" [drivers/regulator/sc2731-regulator.ko] undefined!
ERROR: "devm_regulator_register" [drivers/regulator/sc2731-regulator.ko] undefined!
ERROR: "regmap_write" [drivers/regulator/sc2731-regulator.ko] undefined!
ERROR: "dev_get_regmap" [drivers/regulator/sc2731-regulator.ko] undefined!
ERROR: "regulator_is_enabled_regmap" [drivers/regulator/rt5033-regulator.ko] undefined!
ERROR: "regulator_disable_regmap" [drivers/regulator/rt5033-regulator.ko] undefined!
ERROR: "regulator_enable_regmap" [drivers/regulator/rt5033-regulator.ko] undefined!
ERROR: "regulator_get_voltage_sel_regmap" [drivers/regulator/rt5033-regulator.ko] undefined!
ERROR: "regulator_set_voltage_sel_regmap" [drivers/regulator/rt5033-regulator.ko] undefined!
ERROR: "regulator_map_voltage_linear" [drivers/regulator/rt5033-regulator.ko] undefined!
ERROR: "regulator_list_voltage_linear" [drivers/regulator/rt5033-regulator.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/regulator/rt5033-regulator.ko] undefined!
ERROR: "__platform_driver_register" [drivers/regulator/rt5033-regulator.ko] undefined!
ERROR: "_dev_err" [drivers/regulator/rt5033-regulator.ko] undefined!
ERROR: "devm_regulator_register" [drivers/regulator/rt5033-regulator.ko] undefined!
ERROR: "regulator_is_enabled_regmap" [drivers/regulator/rk808-regulator.ko] undefined!
ERROR: "regulator_list_voltage_linear" [drivers/regulator/rk808-regulator.ko] undefined!
ERROR: "regulator_set_voltage_sel_regmap" [drivers/regulator/rk808-regulator.ko] undefined!
ERROR: "regulator_list_voltage_linear_range" [drivers/regulator/rk808-regulator.ko] undefined!
ERROR: "regulator_disable_regmap" [drivers/regulator/rk808-regulator.ko] undefined!
ERROR: "regulator_enable_regmap" [drivers/regulator/rk808-regulator.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/regulator/rk808-regulator.ko] undefined!
ERROR: "__platform_driver_register" [drivers/regulator/rk808-regulator.ko] undefined!
ERROR: "_dev_info" [drivers/regulator/rk808-regulator.ko] undefined!
ERROR: "devm_regulator_register" [drivers/regulator/rk808-regulator.ko] undefined!
ERROR: "of_node_put" [drivers/regulator/rk808-regulator.ko] undefined!
ERROR: "gpiod_is_active_low" [drivers/regulator/rk808-regulator.ko] undefined!
ERROR: "devm_gpiod_get_index_optional" [drivers/regulator/rk808-regulator.ko] undefined!
ERROR: "of_get_child_by_name" [drivers/regulator/rk808-regulator.ko] undefined!
ERROR: "devm_kmalloc" [drivers/regulator/rk808-regulator.ko] undefined!
ERROR: "__const_udelay" [drivers/regulator/rk808-regulator.ko] undefined!
ERROR: "gpiod_set_value" [drivers/regulator/rk808-regulator.ko] undefined!
ERROR: "regmap_write" [drivers/regulator/rk808-regulator.ko] undefined!
ERROR: "regulator_get_voltage_sel_regmap" [drivers/regulator/rk808-regulator.ko] undefined!
ERROR: "gpiod_get_value" [drivers/regulator/rk808-regulator.ko] undefined!
ERROR: "printk" [drivers/regulator/rk808-regulator.ko] undefined!
ERROR: "regulator_set_voltage_time_sel" [drivers/regulator/rk808-regulator.ko] undefined!
ERROR: "rdev_get_drvdata" [drivers/regulator/rk808-regulator.ko] undefined!
ERROR: "_dev_warn" [drivers/regulator/rk808-regulator.ko] undefined!
ERROR: "regmap_read" [drivers/regulator/rk808-regulator.ko] undefined!
ERROR: "rdev_get_id" [drivers/regulator/rk808-regulator.ko] undefined!
ERROR: "regulator_map_voltage_linear" [drivers/regulator/rk808-regulator.ko] undefined!
ERROR: "_dev_err" [drivers/regulator/rk808-regulator.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/regulator/rk808-regulator.ko] undefined!
ERROR: "regulator_map_voltage_linear_range" [drivers/regulator/rk808-regulator.ko] undefined!
ERROR: "regulator_set_voltage_time_sel" [drivers/regulator/rc5t583-regulator.ko] undefined!
ERROR: "regulator_is_enabled_regmap" [drivers/regulator/rc5t583-regulator.ko] undefined!
ERROR: "regulator_disable_regmap" [drivers/regulator/rc5t583-regulator.ko] undefined!
ERROR: "regulator_enable_regmap" [drivers/regulator/rc5t583-regulator.ko] undefined!
ERROR: "regulator_set_voltage_sel_regmap" [drivers/regulator/rc5t583-regulator.ko] undefined!
ERROR: "regulator_map_voltage_linear" [drivers/regulator/rc5t583-regulator.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/regulator/rc5t583-regulator.ko] undefined!
ERROR: "__platform_driver_register" [drivers/regulator/rc5t583-regulator.ko] undefined!
ERROR: "regulator_list_voltage_linear" [drivers/regulator/rc5t583-regulator.ko] undefined!
ERROR: "regulator_get_voltage_sel_regmap" [drivers/regulator/rc5t583-regulator.ko] undefined!
ERROR: "rdev_get_drvdata" [drivers/regulator/rc5t583-regulator.ko] undefined!
ERROR: "_dev_warn" [drivers/regulator/rc5t583-regulator.ko] undefined!
ERROR: "_dev_err" [drivers/regulator/rc5t583-regulator.ko] undefined!
ERROR: "devm_regulator_register" [drivers/regulator/rc5t583-regulator.ko] undefined!
ERROR: "rc5t583_ext_power_req_config" [drivers/regulator/rc5t583-regulator.ko] undefined!
ERROR: "regulator_is_enabled_regmap" [drivers/regulator/pcf50633-regulator.ko] undefined!
ERROR: "regulator_disable_regmap" [drivers/regulator/pcf50633-regulator.ko] undefined!
ERROR: "regulator_enable_regmap" [drivers/regulator/pcf50633-regulator.ko] undefined!
ERROR: "regulator_get_voltage_sel_regmap" [drivers/regulator/pcf50633-regulator.ko] undefined!
ERROR: "regulator_set_voltage_sel_regmap" [drivers/regulator/pcf50633-regulator.ko] undefined!
ERROR: "regulator_map_voltage_linear" [drivers/regulator/pcf50633-regulator.ko] undefined!
ERROR: "regulator_list_voltage_linear" [drivers/regulator/pcf50633-regulator.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/regulator/pcf50633-regulator.ko] undefined!
ERROR: "__platform_driver_register" [drivers/regulator/pcf50633-regulator.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/regulator/pcf50633-regulator.ko] undefined!
ERROR: "devm_regulator_register" [drivers/regulator/pcf50633-regulator.ko] undefined!
ERROR: "regulator_set_voltage_time_sel" [drivers/regulator/tps51632-regulator.ko] undefined!
ERROR: "regulator_get_voltage_sel_regmap" [drivers/regulator/tps51632-regulator.ko] undefined!
ERROR: "regulator_set_voltage_sel_regmap" [drivers/regulator/tps51632-regulator.ko] undefined!
ERROR: "regulator_list_voltage_linear" [drivers/regulator/tps51632-regulator.ko] undefined!
ERROR: "i2c_del_driver" [drivers/regulator/tps51632-regulator.ko] undefined!
ERROR: "i2c_register_driver" [drivers/regulator/tps51632-regulator.ko] undefined!
ERROR: "regmap_read" [drivers/regulator/tps51632-regulator.ko] undefined!
ERROR: "of_find_property" [drivers/regulator/tps51632-regulator.ko] undefined!
ERROR: "of_get_regulator_init_data" [drivers/regulator/tps51632-regulator.ko] undefined!
ERROR: "devm_regulator_register" [drivers/regulator/tps51632-regulator.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/regulator/tps51632-regulator.ko] undefined!
ERROR: "devm_kmalloc" [drivers/regulator/tps51632-regulator.ko] undefined!
ERROR: "of_match_device" [drivers/regulator/tps51632-regulator.ko] undefined!
ERROR: "_dev_err" [drivers/regulator/tps51632-regulator.ko] undefined!
ERROR: "regmap_write" [drivers/regulator/tps51632-regulator.ko] undefined!
ERROR: "rdev_get_drvdata" [drivers/regulator/tps51632-regulator.ko] undefined!
ERROR: "regulator_map_voltage_iterate" [drivers/regulator/pwm-regulator.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/regulator/pwm-regulator.ko] undefined!
ERROR: "__platform_driver_register" [drivers/regulator/pwm-regulator.ko] undefined!
ERROR: "devm_regulator_register" [drivers/regulator/pwm-regulator.ko] undefined!
ERROR: "pwm_adjust_config" [drivers/regulator/pwm-regulator.ko] undefined!
ERROR: "devm_gpiod_get_optional" [drivers/regulator/pwm-regulator.ko] undefined!
ERROR: "devm_pwm_get" [drivers/regulator/pwm-regulator.ko] undefined!
ERROR: "of_get_regulator_init_data" [drivers/regulator/pwm-regulator.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/regulator/pwm-regulator.ko] undefined!
ERROR: "of_find_property" [drivers/regulator/pwm-regulator.ko] undefined!
ERROR: "devm_kmalloc" [drivers/regulator/pwm-regulator.ko] undefined!
ERROR: "_dev_err" [drivers/regulator/pwm-regulator.ko] undefined!
ERROR: "pwm_apply_state" [drivers/regulator/pwm-regulator.ko] undefined!
ERROR: "gpiod_set_value_cansleep" [drivers/regulator/pwm-regulator.ko] undefined!
ERROR: "gpiod_get_value_cansleep" [drivers/regulator/pwm-regulator.ko] undefined!
ERROR: "rdev_get_drvdata" [drivers/regulator/pwm-regulator.ko] undefined!
ERROR: "regulator_get_current_limit_regmap" [drivers/regulator/pv88090-regulator.ko] undefined!
ERROR: "regulator_set_current_limit_regmap" [drivers/regulator/pv88090-regulator.ko] undefined!
ERROR: "regulator_is_enabled_regmap" [drivers/regulator/pv88090-regulator.ko] undefined!
ERROR: "regulator_disable_regmap" [drivers/regulator/pv88090-regulator.ko] undefined!
ERROR: "regulator_enable_regmap" [drivers/regulator/pv88090-regulator.ko] undefined!
ERROR: "regulator_get_voltage_sel_regmap" [drivers/regulator/pv88090-regulator.ko] undefined!
ERROR: "regulator_set_voltage_sel_regmap" [drivers/regulator/pv88090-regulator.ko] undefined!
ERROR: "regulator_list_voltage_linear" [drivers/regulator/pv88090-regulator.ko] undefined!
ERROR: "i2c_del_driver" [drivers/regulator/pv88090-regulator.ko] undefined!
ERROR: "i2c_register_driver" [drivers/regulator/pv88090-regulator.ko] undefined!
ERROR: "_dev_warn" [drivers/regulator/pv88090-regulator.ko] undefined!
ERROR: "devm_regulator_register" [drivers/regulator/pv88090-regulator.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/regulator/pv88090-regulator.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/regulator/pv88090-regulator.ko] undefined!
ERROR: "devm_kmalloc" [drivers/regulator/pv88090-regulator.ko] undefined!
ERROR: "_dev_err" [drivers/regulator/pv88090-regulator.ko] undefined!
ERROR: "regmap_write" [drivers/regulator/pv88090-regulator.ko] undefined!
ERROR: "regulator_unlock" [drivers/regulator/pv88090-regulator.ko] undefined!
ERROR: "regulator_notifier_call_chain" [drivers/regulator/pv88090-regulator.ko] undefined!
ERROR: "regulator_lock" [drivers/regulator/pv88090-regulator.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/regulator/pv88090-regulator.ko] undefined!
ERROR: "regmap_read" [drivers/regulator/pv88090-regulator.ko] undefined!
ERROR: "rdev_get_drvdata" [drivers/regulator/pv88090-regulator.ko] undefined!
ERROR: "regulator_list_voltage_linear_range" [drivers/regulator/qcom_smd-regulator.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/regulator/qcom_smd-regulator.ko] undefined!
ERROR: "__platform_driver_register" [drivers/regulator/qcom_smd-regulator.ko] undefined!
ERROR: "_dev_err" [drivers/regulator/qcom_smd-regulator.ko] undefined!
ERROR: "devm_kmalloc" [drivers/regulator/qcom_smd-regulator.ko] undefined!
ERROR: "devm_regulator_register" [drivers/regulator/qcom_smd-regulator.ko] undefined!
ERROR: "of_match_device" [drivers/regulator/qcom_smd-regulator.ko] undefined!
ERROR: "qcom_rpm_smd_write" [drivers/regulator/qcom_smd-regulator.ko] undefined!
ERROR: "rdev_get_drvdata" [drivers/regulator/qcom_smd-regulator.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/regulator/qcom-rpmh-regulator.ko] undefined!
ERROR: "__platform_driver_register" [drivers/regulator/qcom-rpmh-regulator.ko] undefined!
ERROR: "of_node_put" [drivers/regulator/qcom-rpmh-regulator.ko] undefined!
ERROR: "_dev_err" [drivers/regulator/qcom-rpmh-regulator.ko] undefined!
ERROR: "scnprintf" [drivers/regulator/qcom-rpmh-regulator.ko] undefined!
ERROR: "of_node_name_eq" [drivers/regulator/qcom-rpmh-regulator.ko] undefined!
ERROR: "devm_kmalloc" [drivers/regulator/qcom-rpmh-regulator.ko] undefined!
ERROR: "of_get_next_available_child" [drivers/regulator/qcom-rpmh-regulator.ko] undefined!
ERROR: "of_property_read_string" [drivers/regulator/qcom-rpmh-regulator.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/regulator/qcom-rpmh-regulator.ko] undefined!
ERROR: "regulator_list_voltage_linear_range" [drivers/regulator/qcom-rpmh-regulator.ko] undefined!
ERROR: "rdev_get_drvdata" [drivers/regulator/qcom-rpmh-regulator.ko] undefined!
ERROR: "regulator_map_voltage_linear_range" [drivers/regulator/mt6397-regulator.ko] undefined!
ERROR: "regulator_list_voltage_linear_range" [drivers/regulator/mt6397-regulator.ko] undefined!
ERROR: "regulator_set_voltage_time_sel" [drivers/regulator/mt6397-regulator.ko] undefined!
ERROR: "regulator_get_voltage_sel_regmap" [drivers/regulator/mt6397-regulator.ko] undefined!
ERROR: "regulator_set_voltage_sel_regmap" [drivers/regulator/mt6397-regulator.ko] undefined!
ERROR: "regulator_map_voltage_iterate" [drivers/regulator/mt6397-regulator.ko] undefined!
ERROR: "regulator_list_voltage_table" [drivers/regulator/mt6397-regulator.ko] undefined!
ERROR: "regulator_is_enabled_regmap" [drivers/regulator/mt6397-regulator.ko] undefined!
ERROR: "regulator_disable_regmap" [drivers/regulator/mt6397-regulator.ko] undefined!
ERROR: "regulator_enable_regmap" [drivers/regulator/mt6397-regulator.ko] undefined!
ERROR: "regulator_list_voltage_linear" [drivers/regulator/mt6397-regulator.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/regulator/mt6397-regulator.ko] undefined!
ERROR: "__platform_driver_register" [drivers/regulator/mt6397-regulator.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/regulator/mt6397-regulator.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/regulator/mt6397-regulator.ko] undefined!
ERROR: "rdev_get_drvdata" [drivers/regulator/mt6397-regulator.ko] undefined!
ERROR: "devm_regulator_register" [drivers/regulator/mt6397-regulator.ko] undefined!
ERROR: "_dev_info" [drivers/regulator/mt6397-regulator.ko] undefined!
ERROR: "_dev_err" [drivers/regulator/mt6397-regulator.ko] undefined!
ERROR: "regmap_read" [drivers/regulator/mt6397-regulator.ko] undefined!
ERROR: "regulator_map_voltage_linear_range" [drivers/regulator/mt6323-regulator.ko] undefined!
ERROR: "regulator_list_voltage_linear_range" [drivers/regulator/mt6323-regulator.ko] undefined!
ERROR: "regulator_set_voltage_time_sel" [drivers/regulator/mt6323-regulator.ko] undefined!
ERROR: "regulator_get_voltage_sel_regmap" [drivers/regulator/mt6323-regulator.ko] undefined!
ERROR: "regulator_set_voltage_sel_regmap" [drivers/regulator/mt6323-regulator.ko] undefined!
ERROR: "regulator_map_voltage_iterate" [drivers/regulator/mt6323-regulator.ko] undefined!
ERROR: "regulator_list_voltage_table" [drivers/regulator/mt6323-regulator.ko] undefined!
ERROR: "regulator_is_enabled_regmap" [drivers/regulator/mt6323-regulator.ko] undefined!
ERROR: "regulator_disable_regmap" [drivers/regulator/mt6323-regulator.ko] undefined!
ERROR: "regulator_enable_regmap" [drivers/regulator/mt6323-regulator.ko] undefined!
ERROR: "regulator_list_voltage_linear" [drivers/regulator/mt6323-regulator.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/regulator/mt6323-regulator.ko] undefined!
ERROR: "__platform_driver_register" [drivers/regulator/mt6323-regulator.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/regulator/mt6323-regulator.ko] undefined!
ERROR: "rdev_get_drvdata" [drivers/regulator/mt6323-regulator.ko] undefined!
ERROR: "devm_regulator_register" [drivers/regulator/mt6323-regulator.ko] undefined!
ERROR: "_dev_info" [drivers/regulator/mt6323-regulator.ko] undefined!
ERROR: "_dev_err" [drivers/regulator/mt6323-regulator.ko] undefined!
ERROR: "regmap_read" [drivers/regulator/mt6323-regulator.ko] undefined!
ERROR: "regulator_get_current_limit_regmap" [drivers/regulator/mpq7920.ko] undefined!
ERROR: "regulator_set_current_limit_regmap" [drivers/regulator/mpq7920.ko] undefined!
ERROR: "regulator_set_soft_start_regmap" [drivers/regulator/mpq7920.ko] undefined!
ERROR: "regulator_is_enabled_regmap" [drivers/regulator/mpq7920.ko] undefined!
ERROR: "regulator_disable_regmap" [drivers/regulator/mpq7920.ko] undefined!
ERROR: "regulator_enable_regmap" [drivers/regulator/mpq7920.ko] undefined!
ERROR: "regulator_set_active_discharge_regmap" [drivers/regulator/mpq7920.ko] undefined!
ERROR: "regulator_get_voltage_sel_regmap" [drivers/regulator/mpq7920.ko] undefined!
ERROR: "regulator_set_voltage_sel_regmap" [drivers/regulator/mpq7920.ko] undefined!
ERROR: "regulator_map_voltage_linear" [drivers/regulator/mpq7920.ko] undefined!
ERROR: "regulator_list_voltage_linear" [drivers/regulator/mpq7920.ko] undefined!
ERROR: "i2c_del_driver" [drivers/regulator/mpq7920.ko] undefined!
ERROR: "i2c_register_driver" [drivers/regulator/mpq7920.ko] undefined!
ERROR: "_dev_err" [drivers/regulator/mpq7920.ko] undefined!
ERROR: "devm_regulator_register" [drivers/regulator/mpq7920.ko] undefined!
ERROR: "of_node_put" [drivers/regulator/mpq7920.ko] undefined!
ERROR: "of_get_child_by_name" [drivers/regulator/mpq7920.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/regulator/mpq7920.ko] undefined!
ERROR: "devm_kmalloc" [drivers/regulator/mpq7920.ko] undefined!
ERROR: "of_property_read_variable_u8_array" [drivers/regulator/mpq7920.ko] undefined!
ERROR: "of_find_property" [drivers/regulator/mpq7920.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/regulator/mpq7920.ko] undefined!
ERROR: "regulator_set_voltage_time_sel" [drivers/regulator/max77802-regulator.ko] undefined!
ERROR: "regulator_is_enabled_regmap" [drivers/regulator/max77802-regulator.ko] undefined!
ERROR: "regulator_disable_regmap" [drivers/regulator/max77802-regulator.ko] undefined!
ERROR: "regulator_get_voltage_sel_regmap" [drivers/regulator/max77802-regulator.ko] undefined!
ERROR: "regulator_set_voltage_sel_regmap" [drivers/regulator/max77802-regulator.ko] undefined!
ERROR: "regulator_map_voltage_linear" [drivers/regulator/max77802-regulator.ko] undefined!
ERROR: "regulator_list_voltage_linear" [drivers/regulator/max77802-regulator.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/regulator/max77802-regulator.ko] undefined!
ERROR: "__platform_driver_register" [drivers/regulator/max77802-regulator.ko] undefined!
ERROR: "_dev_err" [drivers/regulator/max77802-regulator.ko] undefined!
ERROR: "devm_regulator_register" [drivers/regulator/max77802-regulator.ko] undefined!
ERROR: "regmap_read" [drivers/regulator/max77802-regulator.ko] undefined!
ERROR: "devm_kmalloc" [drivers/regulator/max77802-regulator.ko] undefined!
ERROR: "_dev_warn" [drivers/regulator/max77802-regulator.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/regulator/max77802-regulator.ko] undefined!
ERROR: "rdev_get_id" [drivers/regulator/max77802-regulator.ko] undefined!
ERROR: "rdev_get_drvdata" [drivers/regulator/max77802-regulator.ko] undefined!
ERROR: "regulator_get_voltage_sel_regmap" [drivers/regulator/max77693-regulator.ko] undefined!
ERROR: "regulator_set_voltage_sel_regmap" [drivers/regulator/max77693-regulator.ko] undefined!
ERROR: "regulator_list_voltage_table" [drivers/regulator/max77693-regulator.ko] undefined!
ERROR: "regulator_is_enabled_regmap" [drivers/regulator/max77693-regulator.ko] undefined!
ERROR: "regulator_disable_regmap" [drivers/regulator/max77693-regulator.ko] undefined!
ERROR: "regulator_enable_regmap" [drivers/regulator/max77693-regulator.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/regulator/max77693-regulator.ko] undefined!
ERROR: "__platform_driver_register" [drivers/regulator/max77693-regulator.ko] undefined!
ERROR: "regmap_write" [drivers/regulator/max77693-regulator.ko] undefined!
ERROR: "regmap_read" [drivers/regulator/max77693-regulator.ko] undefined!
ERROR: "rdev_get_drvdata" [drivers/regulator/max77693-regulator.ko] undefined!
ERROR: "_dev_err" [drivers/regulator/max77693-regulator.ko] undefined!
ERROR: "devm_regulator_register" [drivers/regulator/max77693-regulator.ko] undefined!
ERROR: "regulator_set_voltage_time_sel" [drivers/regulator/max77686-regulator.ko] undefined!
ERROR: "regulator_is_enabled_regmap" [drivers/regulator/max77686-regulator.ko] undefined!
ERROR: "regulator_disable_regmap" [drivers/regulator/max77686-regulator.ko] undefined!
ERROR: "regulator_get_voltage_sel_regmap" [drivers/regulator/max77686-regulator.ko] undefined!
ERROR: "regulator_set_voltage_sel_regmap" [drivers/regulator/max77686-regulator.ko] undefined!
ERROR: "regulator_map_voltage_linear" [drivers/regulator/max77686-regulator.ko] undefined!
ERROR: "regulator_list_voltage_linear" [drivers/regulator/max77686-regulator.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/regulator/max77686-regulator.ko] undefined!
ERROR: "__platform_driver_register" [drivers/regulator/max77686-regulator.ko] undefined!
ERROR: "_dev_err" [drivers/regulator/max77686-regulator.ko] undefined!
ERROR: "devm_regulator_register" [drivers/regulator/max77686-regulator.ko] undefined!
ERROR: "devm_kmalloc" [drivers/regulator/max77686-regulator.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/regulator/max77686-regulator.ko] undefined!
ERROR: "gpiod_put" [drivers/regulator/max77686-regulator.ko] undefined!
ERROR: "fwnode_gpiod_get_index" [drivers/regulator/max77686-regulator.ko] undefined!
ERROR: "printk" [drivers/regulator/max77686-regulator.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/regulator/max77686-regulator.ko] undefined!
ERROR: "rdev_get_id" [drivers/regulator/max77686-regulator.ko] undefined!
ERROR: "rdev_get_drvdata" [drivers/regulator/max77686-regulator.ko] undefined!
ERROR: "i2c_del_driver" [drivers/regulator/max8973-regulator.ko] undefined!
ERROR: "i2c_register_driver" [drivers/regulator/max8973-regulator.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/regulator/max8973-regulator.ko] undefined!
ERROR: "irq_get_irq_data" [drivers/regulator/max8973-regulator.ko] undefined!
ERROR: "devm_thermal_zone_of_sensor_register" [drivers/regulator/max8973-regulator.ko] undefined!
ERROR: "devm_regulator_register" [drivers/regulator/max8973-regulator.ko] undefined!
ERROR: "devm_gpiod_unhinge" [drivers/regulator/max8973-regulator.ko] undefined!
ERROR: "regmap_write" [drivers/regulator/max8973-regulator.ko] undefined!
ERROR: "devm_gpiod_get_optional" [drivers/regulator/max8973-regulator.ko] undefined!
ERROR: "regulator_is_enabled_regmap" [drivers/regulator/max8973-regulator.ko] undefined!
ERROR: "regulator_disable_regmap" [drivers/regulator/max8973-regulator.ko] undefined!
ERROR: "regulator_enable_regmap" [drivers/regulator/max8973-regulator.ko] undefined!
ERROR: "of_get_regulator_init_data" [drivers/regulator/max8973-regulator.ko] undefined!
ERROR: "regulator_get_voltage_sel_regmap" [drivers/regulator/max8973-regulator.ko] undefined!
ERROR: "regulator_set_voltage_sel_regmap" [drivers/regulator/max8973-regulator.ko] undefined!
ERROR: "devm_gpio_request_one" [drivers/regulator/max8973-regulator.ko] undefined!
ERROR: "regulator_set_voltage_time_sel" [drivers/regulator/max8973-regulator.ko] undefined!
ERROR: "regulator_list_voltage_linear" [drivers/regulator/max8973-regulator.ko] undefined!
ERROR: "_dev_info" [drivers/regulator/max8973-regulator.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/regulator/max8973-regulator.ko] undefined!
ERROR: "of_get_named_gpio_flags" [drivers/regulator/max8973-regulator.ko] undefined!
ERROR: "of_find_property" [drivers/regulator/max8973-regulator.ko] undefined!
ERROR: "of_match_device" [drivers/regulator/max8973-regulator.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/regulator/max8973-regulator.ko] undefined!
ERROR: "devm_kmalloc" [drivers/regulator/max8973-regulator.ko] undefined!
ERROR: "thermal_zone_device_update" [drivers/regulator/max8973-regulator.ko] undefined!
ERROR: "gpiod_set_raw_value_cansleep" [drivers/regulator/max8973-regulator.ko] undefined!
ERROR: "gpio_to_desc" [drivers/regulator/max8973-regulator.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/regulator/max8973-regulator.ko] undefined!
ERROR: "rdev_get_drvdata" [drivers/regulator/max8973-regulator.ko] undefined!
ERROR: "_dev_err" [drivers/regulator/max8973-regulator.ko] undefined!
ERROR: "regmap_read" [drivers/regulator/max8973-regulator.ko] undefined!
ERROR: "regulator_map_voltage_linear" [drivers/regulator/max8660.ko] undefined!
ERROR: "regulator_list_voltage_linear" [drivers/regulator/max8660.ko] undefined!
ERROR: "i2c_del_driver" [drivers/regulator/max8660.ko] undefined!
ERROR: "i2c_register_driver" [drivers/regulator/max8660.ko] undefined!
ERROR: "of_match_device" [drivers/regulator/max8660.ko] undefined!
ERROR: "devm_regulator_register" [drivers/regulator/max8660.ko] undefined!
ERROR: "_dev_err" [drivers/regulator/max8660.ko] undefined!
ERROR: "devm_kmalloc" [drivers/regulator/max8660.ko] undefined!
ERROR: "of_node_put" [drivers/regulator/max8660.ko] undefined!
ERROR: "of_regulator_match" [drivers/regulator/max8660.ko] undefined!
ERROR: "of_get_child_by_name" [drivers/regulator/max8660.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/regulator/max8660.ko] undefined!
ERROR: "rdev_get_id" [drivers/regulator/max8660.ko] undefined!
ERROR: "rdev_get_drvdata" [drivers/regulator/max8660.ko] undefined!
ERROR: "regulator_set_voltage_time_sel" [drivers/regulator/ltc3589.ko] undefined!
ERROR: "regulator_list_voltage_linear" [drivers/regulator/ltc3589.ko] undefined!
ERROR: "regulator_is_enabled_regmap" [drivers/regulator/ltc3589.ko] undefined!
ERROR: "regulator_disable_regmap" [drivers/regulator/ltc3589.ko] undefined!
ERROR: "regulator_enable_regmap" [drivers/regulator/ltc3589.ko] undefined!
ERROR: "regulator_get_voltage_sel_regmap" [drivers/regulator/ltc3589.ko] undefined!
ERROR: "regulator_set_voltage_sel_regmap" [drivers/regulator/ltc3589.ko] undefined!
ERROR: "regulator_list_voltage_table" [drivers/regulator/ltc3589.ko] undefined!
ERROR: "i2c_del_driver" [drivers/regulator/ltc3589.ko] undefined!
ERROR: "i2c_register_driver" [drivers/regulator/ltc3589.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/regulator/ltc3589.ko] undefined!
ERROR: "_dev_err" [drivers/regulator/ltc3589.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/regulator/ltc3589.ko] undefined!
ERROR: "devm_regulator_register" [drivers/regulator/ltc3589.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/regulator/ltc3589.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/regulator/ltc3589.ko] undefined!
ERROR: "devm_kmalloc" [drivers/regulator/ltc3589.ko] undefined!
ERROR: "regulator_map_voltage_linear" [drivers/regulator/ltc3589.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/regulator/ltc3589.ko] undefined!
ERROR: "rdev_get_drvdata" [drivers/regulator/ltc3589.ko] undefined!
ERROR: "regmap_write" [drivers/regulator/ltc3589.ko] undefined!
ERROR: "regulator_unlock" [drivers/regulator/ltc3589.ko] undefined!
ERROR: "regulator_notifier_call_chain" [drivers/regulator/ltc3589.ko] undefined!
ERROR: "regulator_lock" [drivers/regulator/ltc3589.ko] undefined!
ERROR: "regmap_read" [drivers/regulator/ltc3589.ko] undefined!
ERROR: "regulator_get_voltage_sel_regmap" [drivers/regulator/lp8788-ldo.ko] undefined!
ERROR: "regulator_set_voltage_sel_regmap" [drivers/regulator/lp8788-ldo.ko] undefined!
ERROR: "regulator_list_voltage_table" [drivers/regulator/lp8788-ldo.ko] undefined!
ERROR: "regulator_is_enabled_regmap" [drivers/regulator/lp8788-ldo.ko] undefined!
ERROR: "regulator_disable_regmap" [drivers/regulator/lp8788-ldo.ko] undefined!
ERROR: "regulator_enable_regmap" [drivers/regulator/lp8788-ldo.ko] undefined!
ERROR: "regulator_list_voltage_linear" [drivers/regulator/lp8788-ldo.ko] undefined!
ERROR: "platform_unregister_drivers" [drivers/regulator/lp8788-ldo.ko] undefined!
ERROR: "__platform_register_drivers" [drivers/regulator/lp8788-ldo.ko] undefined!
ERROR: "_dev_err" [drivers/regulator/lp8788-ldo.ko] undefined!
ERROR: "devm_regulator_register" [drivers/regulator/lp8788-ldo.ko] undefined!
ERROR: "devm_kmalloc" [drivers/regulator/lp8788-ldo.ko] undefined!
ERROR: "lp8788_update_bits" [drivers/regulator/lp8788-ldo.ko] undefined!
ERROR: "gpiod_get_index_optional" [drivers/regulator/lp8788-ldo.ko] undefined!
ERROR: "lp8788_read_byte" [drivers/regulator/lp8788-ldo.ko] undefined!
ERROR: "rdev_get_id" [drivers/regulator/lp8788-ldo.ko] undefined!
ERROR: "rdev_get_drvdata" [drivers/regulator/lp8788-ldo.ko] undefined!
ERROR: "regulator_is_enabled_regmap" [drivers/regulator/lp8788-buck.ko] undefined!
ERROR: "regulator_disable_regmap" [drivers/regulator/lp8788-buck.ko] undefined!
ERROR: "regulator_enable_regmap" [drivers/regulator/lp8788-buck.ko] undefined!
ERROR: "regulator_get_voltage_sel_regmap" [drivers/regulator/lp8788-buck.ko] undefined!
ERROR: "regulator_set_voltage_sel_regmap" [drivers/regulator/lp8788-buck.ko] undefined!
ERROR: "regulator_map_voltage_linear_range" [drivers/regulator/lp8788-buck.ko] undefined!
ERROR: "regulator_list_voltage_linear_range" [drivers/regulator/lp8788-buck.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/regulator/lp8788-buck.ko] undefined!
ERROR: "__platform_driver_register" [drivers/regulator/lp8788-buck.ko] undefined!
ERROR: "_dev_err" [drivers/regulator/lp8788-buck.ko] undefined!
ERROR: "devm_regulator_register" [drivers/regulator/lp8788-buck.ko] undefined!
ERROR: "devm_gpio_request_one" [drivers/regulator/lp8788-buck.ko] undefined!
ERROR: "devm_kmalloc" [drivers/regulator/lp8788-buck.ko] undefined!
ERROR: "gpiod_set_raw_value" [drivers/regulator/lp8788-buck.ko] undefined!
ERROR: "gpiod_get_raw_value" [drivers/regulator/lp8788-buck.ko] undefined!
ERROR: "gpio_to_desc" [drivers/regulator/lp8788-buck.ko] undefined!
ERROR: "lp8788_update_bits" [drivers/regulator/lp8788-buck.ko] undefined!
ERROR: "lp8788_read_byte" [drivers/regulator/lp8788-buck.ko] undefined!
ERROR: "rdev_get_id" [drivers/regulator/lp8788-buck.ko] undefined!
ERROR: "rdev_get_drvdata" [drivers/regulator/lp8788-buck.ko] undefined!
ERROR: "regulator_set_voltage_time_sel" [drivers/regulator/lp87565-regulator.ko] undefined!
ERROR: "regulator_is_enabled_regmap" [drivers/regulator/lp87565-regulator.ko] undefined!
ERROR: "regulator_disable_regmap" [drivers/regulator/lp87565-regulator.ko] undefined!
ERROR: "regulator_enable_regmap" [drivers/regulator/lp87565-regulator.ko] undefined!
ERROR: "regulator_get_current_limit_regmap" [drivers/regulator/lp87565-regulator.ko] undefined!
ERROR: "regulator_set_current_limit_regmap" [drivers/regulator/lp87565-regulator.ko] undefined!
ERROR: "regulator_get_voltage_sel_regmap" [drivers/regulator/lp87565-regulator.ko] undefined!
ERROR: "regulator_set_voltage_sel_regmap" [drivers/regulator/lp87565-regulator.ko] undefined!
ERROR: "regulator_map_voltage_linear_range" [drivers/regulator/lp87565-regulator.ko] undefined!
ERROR: "regulator_list_voltage_linear_range" [drivers/regulator/lp87565-regulator.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/regulator/lp87565-regulator.ko] undefined!
ERROR: "__platform_driver_register" [drivers/regulator/lp87565-regulator.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/regulator/lp87565-regulator.ko] undefined!
ERROR: "rdev_get_id" [drivers/regulator/lp87565-regulator.ko] undefined!
ERROR: "_dev_err" [drivers/regulator/lp87565-regulator.ko] undefined!
ERROR: "devm_regulator_register" [drivers/regulator/lp87565-regulator.ko] undefined!
ERROR: "regulator_set_voltage_time_sel" [drivers/regulator/lp873x-regulator.ko] undefined!
ERROR: "regulator_get_current_limit_regmap" [drivers/regulator/lp873x-regulator.ko] undefined!
ERROR: "regulator_set_current_limit_regmap" [drivers/regulator/lp873x-regulator.ko] undefined!
ERROR: "regulator_is_enabled_regmap" [drivers/regulator/lp873x-regulator.ko] undefined!
ERROR: "regulator_disable_regmap" [drivers/regulator/lp873x-regulator.ko] undefined!
ERROR: "regulator_enable_regmap" [drivers/regulator/lp873x-regulator.ko] undefined!
ERROR: "regulator_get_voltage_sel_regmap" [drivers/regulator/lp873x-regulator.ko] undefined!
ERROR: "regulator_set_voltage_sel_regmap" [drivers/regulator/lp873x-regulator.ko] undefined!
ERROR: "regulator_map_voltage_linear_range" [drivers/regulator/lp873x-regulator.ko] undefined!
ERROR: "regulator_list_voltage_linear_range" [drivers/regulator/lp873x-regulator.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/regulator/lp873x-regulator.ko] undefined!
ERROR: "__platform_driver_register" [drivers/regulator/lp873x-regulator.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/regulator/lp873x-regulator.ko] undefined!
ERROR: "rdev_get_drvdata" [drivers/regulator/lp873x-regulator.ko] undefined!
ERROR: "rdev_get_id" [drivers/regulator/lp873x-regulator.ko] undefined!
ERROR: "_dev_err" [drivers/regulator/lp873x-regulator.ko] undefined!
ERROR: "devm_regulator_register" [drivers/regulator/lp873x-regulator.ko] undefined!
ERROR: "regulator_map_voltage_linear" [drivers/regulator/isl6271a-regulator.ko] undefined!
ERROR: "regulator_list_voltage_linear" [drivers/regulator/isl6271a-regulator.ko] undefined!
ERROR: "i2c_del_driver" [drivers/regulator/isl6271a-regulator.ko] undefined!
ERROR: "i2c_register_driver" [drivers/regulator/isl6271a-regulator.ko] undefined!
ERROR: "devm_regulator_register" [drivers/regulator/isl6271a-regulator.ko] undefined!
ERROR: "__mutex_init" [drivers/regulator/isl6271a-regulator.ko] undefined!
ERROR: "devm_kmalloc" [drivers/regulator/isl6271a-regulator.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/regulator/isl6271a-regulator.ko] undefined!
ERROR: "i2c_smbus_write_byte" [drivers/regulator/isl6271a-regulator.ko] undefined!
ERROR: "_dev_err" [drivers/regulator/isl6271a-regulator.ko] undefined!
ERROR: "mutex_unlock" [drivers/regulator/isl6271a-regulator.ko] undefined!
ERROR: "i2c_smbus_read_byte" [drivers/regulator/isl6271a-regulator.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/regulator/isl6271a-regulator.ko] undefined!
ERROR: "rdev_get_drvdata" [drivers/regulator/isl6271a-regulator.ko] undefined!
ERROR: "regulator_list_voltage_table" [drivers/regulator/hi655x-regulator.ko] undefined!
ERROR: "regulator_enable_regmap" [drivers/regulator/hi655x-regulator.ko] undefined!
ERROR: "regulator_get_voltage_sel_regmap" [drivers/regulator/hi655x-regulator.ko] undefined!
ERROR: "regulator_set_voltage_sel_regmap" [drivers/regulator/hi655x-regulator.ko] undefined!
ERROR: "regulator_list_voltage_linear" [drivers/regulator/hi655x-regulator.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/regulator/hi655x-regulator.ko] undefined!
ERROR: "__platform_driver_register" [drivers/regulator/hi655x-regulator.ko] undefined!
ERROR: "_dev_err" [drivers/regulator/hi655x-regulator.ko] undefined!
ERROR: "devm_regulator_register" [drivers/regulator/hi655x-regulator.ko] undefined!
ERROR: "devm_kmalloc" [drivers/regulator/hi655x-regulator.ko] undefined!
ERROR: "regmap_write" [drivers/regulator/hi655x-regulator.ko] undefined!
ERROR: "regmap_read" [drivers/regulator/hi655x-regulator.ko] undefined!
ERROR: "rdev_get_drvdata" [drivers/regulator/hi655x-regulator.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/regulator/gpio-regulator.ko] undefined!
ERROR: "__platform_driver_register" [drivers/regulator/gpio-regulator.ko] undefined!
ERROR: "_dev_warn" [drivers/regulator/gpio-regulator.ko] undefined!
ERROR: "_dev_err" [drivers/regulator/gpio-regulator.ko] undefined!
ERROR: "strncmp" [drivers/regulator/gpio-regulator.ko] undefined!
ERROR: "devm_regulator_register" [drivers/regulator/gpio-regulator.ko] undefined!
ERROR: "gpiod_get_optional" [drivers/regulator/gpio-regulator.ko] undefined!
ERROR: "devm_kmemdup" [drivers/regulator/gpio-regulator.ko] undefined!
ERROR: "devm_gpiod_get_index" [drivers/regulator/gpio-regulator.ko] undefined!
ERROR: "gpiod_set_consumer_name" [drivers/regulator/gpio-regulator.ko] undefined!
ERROR: "devm_kstrdup" [drivers/regulator/gpio-regulator.ko] undefined!
ERROR: "of_property_read_string" [drivers/regulator/gpio-regulator.ko] undefined!
ERROR: "of_property_count_elems_of_size" [drivers/regulator/gpio-regulator.ko] undefined!
ERROR: "of_property_read_u32_index" [drivers/regulator/gpio-regulator.ko] undefined!
ERROR: "gpiod_count" [drivers/regulator/gpio-regulator.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/regulator/gpio-regulator.ko] undefined!
ERROR: "of_find_property" [drivers/regulator/gpio-regulator.ko] undefined!
ERROR: "of_get_regulator_init_data" [drivers/regulator/gpio-regulator.ko] undefined!
ERROR: "devm_kmalloc" [drivers/regulator/gpio-regulator.ko] undefined!
ERROR: "gpiod_set_value_cansleep" [drivers/regulator/gpio-regulator.ko] undefined!
ERROR: "rdev_get_drvdata" [drivers/regulator/gpio-regulator.ko] undefined!
ERROR: "regulator_is_enabled_regmap" [drivers/regulator/da9210-regulator.ko] undefined!
ERROR: "regulator_disable_regmap" [drivers/regulator/da9210-regulator.ko] undefined!
ERROR: "regulator_enable_regmap" [drivers/regulator/da9210-regulator.ko] undefined!
ERROR: "regulator_get_current_limit_regmap" [drivers/regulator/da9210-regulator.ko] undefined!
ERROR: "regulator_set_current_limit_regmap" [drivers/regulator/da9210-regulator.ko] undefined!
ERROR: "regulator_get_voltage_sel_regmap" [drivers/regulator/da9210-regulator.ko] undefined!
ERROR: "regulator_set_voltage_sel_regmap" [drivers/regulator/da9210-regulator.ko] undefined!
ERROR: "regulator_list_voltage_linear" [drivers/regulator/da9210-regulator.ko] undefined!
ERROR: "i2c_del_driver" [drivers/regulator/da9210-regulator.ko] undefined!
ERROR: "i2c_register_driver" [drivers/regulator/da9210-regulator.ko] undefined!
ERROR: "_dev_warn" [drivers/regulator/da9210-regulator.ko] undefined!
ERROR: "of_match_device" [drivers/regulator/da9210-regulator.ko] undefined!
ERROR: "of_get_regulator_init_data" [drivers/regulator/da9210-regulator.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/regulator/da9210-regulator.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/regulator/da9210-regulator.ko] undefined!
ERROR: "devm_regulator_register" [drivers/regulator/da9210-regulator.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/regulator/da9210-regulator.ko] undefined!
ERROR: "devm_kmalloc" [drivers/regulator/da9210-regulator.ko] undefined!
ERROR: "_dev_err" [drivers/regulator/da9210-regulator.ko] undefined!
ERROR: "regmap_get_device" [drivers/regulator/da9210-regulator.ko] undefined!
ERROR: "regmap_write" [drivers/regulator/da9210-regulator.ko] undefined!
ERROR: "regulator_notifier_call_chain" [drivers/regulator/da9210-regulator.ko] undefined!
ERROR: "regulator_unlock" [drivers/regulator/da9210-regulator.ko] undefined!
ERROR: "regulator_lock" [drivers/regulator/da9210-regulator.ko] undefined!
ERROR: "regmap_read" [drivers/regulator/da9210-regulator.ko] undefined!
ERROR: "regulator_get_voltage_sel_regmap" [drivers/regulator/bd9571mwv-regulator.ko] undefined!
ERROR: "regulator_map_voltage_linear" [drivers/regulator/bd9571mwv-regulator.ko] undefined!
ERROR: "regulator_list_voltage_linear" [drivers/regulator/bd9571mwv-regulator.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/regulator/bd9571mwv-regulator.ko] undefined!
ERROR: "__platform_driver_register" [drivers/regulator/bd9571mwv-regulator.ko] undefined!
ERROR: "kstrtobool" [drivers/regulator/bd9571mwv-regulator.ko] undefined!
ERROR: "regmap_write" [drivers/regulator/bd9571mwv-regulator.ko] undefined!
ERROR: "_dev_err" [drivers/regulator/bd9571mwv-regulator.ko] undefined!
ERROR: "device_create_file" [drivers/regulator/bd9571mwv-regulator.ko] undefined!
ERROR: "of_find_property" [drivers/regulator/bd9571mwv-regulator.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/regulator/bd9571mwv-regulator.ko] undefined!
ERROR: "devm_regulator_register" [drivers/regulator/bd9571mwv-regulator.ko] undefined!
ERROR: "devm_kmalloc" [drivers/regulator/bd9571mwv-regulator.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/regulator/bd9571mwv-regulator.ko] undefined!
ERROR: "sprintf" [drivers/regulator/bd9571mwv-regulator.ko] undefined!
ERROR: "device_remove_file" [drivers/regulator/bd9571mwv-regulator.ko] undefined!
ERROR: "regmap_read" [drivers/regulator/bd9571mwv-regulator.ko] undefined!
ERROR: "regulator_list_voltage_linear_range" [drivers/regulator/axp20x-regulator.ko] undefined!
ERROR: "regulator_list_voltage_linear" [drivers/regulator/axp20x-regulator.ko] undefined!
ERROR: "regulator_disable_regmap" [drivers/regulator/axp20x-regulator.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/regulator/axp20x-regulator.ko] undefined!
ERROR: "__platform_driver_register" [drivers/regulator/axp20x-regulator.ko] undefined!
ERROR: "_dev_warn" [drivers/regulator/axp20x-regulator.ko] undefined!
ERROR: "devm_kmalloc" [drivers/regulator/axp20x-regulator.ko] undefined!
ERROR: "of_property_read_string" [drivers/regulator/axp20x-regulator.ko] undefined!
ERROR: "of_find_property" [drivers/regulator/axp20x-regulator.ko] undefined!
ERROR: "regmap_read" [drivers/regulator/axp20x-regulator.ko] undefined!
ERROR: "devm_regulator_register" [drivers/regulator/axp20x-regulator.ko] undefined!
ERROR: "of_node_put" [drivers/regulator/axp20x-regulator.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/regulator/axp20x-regulator.ko] undefined!
ERROR: "of_get_child_by_name" [drivers/regulator/axp20x-regulator.ko] undefined!
ERROR: "of_node_get" [drivers/regulator/axp20x-regulator.ko] undefined!
ERROR: "usleep_range" [drivers/regulator/axp20x-regulator.ko] undefined!
ERROR: "regulator_set_voltage_sel_regmap" [drivers/regulator/axp20x-regulator.ko] undefined!
ERROR: "regulator_get_voltage_sel_regmap" [drivers/regulator/axp20x-regulator.ko] undefined!
ERROR: "regulator_is_enabled_regmap" [drivers/regulator/axp20x-regulator.ko] undefined!
ERROR: "regulator_enable_regmap" [drivers/regulator/axp20x-regulator.ko] undefined!
ERROR: "_dev_err" [drivers/regulator/axp20x-regulator.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/regulator/axp20x-regulator.ko] undefined!
ERROR: "rdev_get_id" [drivers/regulator/axp20x-regulator.ko] undefined!
ERROR: "rdev_get_drvdata" [drivers/regulator/axp20x-regulator.ko] undefined!
ERROR: "regulator_is_enabled_regmap" [drivers/regulator/as3711-regulator.ko] undefined!
ERROR: "regulator_disable_regmap" [drivers/regulator/as3711-regulator.ko] undefined!
ERROR: "regulator_enable_regmap" [drivers/regulator/as3711-regulator.ko] undefined!
ERROR: "regulator_get_voltage_sel_regmap" [drivers/regulator/as3711-regulator.ko] undefined!
ERROR: "regulator_set_voltage_sel_regmap" [drivers/regulator/as3711-regulator.ko] undefined!
ERROR: "regulator_map_voltage_linear_range" [drivers/regulator/as3711-regulator.ko] undefined!
ERROR: "regulator_list_voltage_linear_range" [drivers/regulator/as3711-regulator.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/regulator/as3711-regulator.ko] undefined!
ERROR: "__platform_driver_register" [drivers/regulator/as3711-regulator.ko] undefined!
ERROR: "_dev_err" [drivers/regulator/as3711-regulator.ko] undefined!
ERROR: "devm_regulator_register" [drivers/regulator/as3711-regulator.ko] undefined!
ERROR: "of_node_put" [drivers/regulator/as3711-regulator.ko] undefined!
ERROR: "of_regulator_match" [drivers/regulator/as3711-regulator.ko] undefined!
ERROR: "of_get_child_by_name" [drivers/regulator/as3711-regulator.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/regulator/as3711-regulator.ko] undefined!
ERROR: "regmap_read" [drivers/regulator/as3711-regulator.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/soc/xilinx/xlnx_vcu.ko] undefined!
ERROR: "__platform_driver_register" [drivers/soc/xilinx/xlnx_vcu.ko] undefined!
ERROR: "_dev_warn" [drivers/soc/xilinx/xlnx_vcu.ko] undefined!
ERROR: "_dev_info" [drivers/soc/xilinx/xlnx_vcu.ko] undefined!
ERROR: "jiffies" [drivers/soc/xilinx/xlnx_vcu.ko] undefined!
ERROR: "clk_get_rate" [drivers/soc/xilinx/xlnx_vcu.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/soc/xilinx/xlnx_vcu.ko] undefined!
ERROR: "clk_set_rate" [drivers/soc/xilinx/xlnx_vcu.ko] undefined!
ERROR: "ioread32" [drivers/soc/xilinx/xlnx_vcu.ko] undefined!
ERROR: "clk_enable" [drivers/soc/xilinx/xlnx_vcu.ko] undefined!
ERROR: "_dev_err" [drivers/soc/xilinx/xlnx_vcu.ko] undefined!
ERROR: "clk_prepare" [drivers/soc/xilinx/xlnx_vcu.ko] undefined!
ERROR: "devm_clk_get" [drivers/soc/xilinx/xlnx_vcu.ko] undefined!
ERROR: "devm_ioremap" [drivers/soc/xilinx/xlnx_vcu.ko] undefined!
ERROR: "platform_get_resource_byname" [drivers/soc/xilinx/xlnx_vcu.ko] undefined!
ERROR: "devm_kmalloc" [drivers/soc/xilinx/xlnx_vcu.ko] undefined!
ERROR: "clk_unprepare" [drivers/soc/xilinx/xlnx_vcu.ko] undefined!
ERROR: "clk_disable" [drivers/soc/xilinx/xlnx_vcu.ko] undefined!
ERROR: "iowrite32" [drivers/soc/xilinx/xlnx_vcu.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/soc/qcom/llcc-qcom.ko] undefined!
ERROR: "__platform_driver_register" [drivers/soc/qcom/llcc-qcom.ko] undefined!
ERROR: "_dev_err" [drivers/soc/qcom/llcc-qcom.ko] undefined!
ERROR: "platform_device_register_full" [drivers/soc/qcom/llcc-qcom.ko] undefined!
ERROR: "platform_get_irq" [drivers/soc/qcom/llcc-qcom.ko] undefined!
ERROR: "__mutex_init" [drivers/soc/qcom/llcc-qcom.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/soc/qcom/llcc-qcom.ko] undefined!
ERROR: "devm_kmalloc" [drivers/soc/qcom/llcc-qcom.ko] undefined!
ERROR: "mutex_unlock" [drivers/soc/qcom/llcc-qcom.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/soc/qcom/llcc-qcom.ko] undefined!
ERROR: "kfree" [drivers/soc/qcom/llcc-qcom.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/soc/qcom/llcc-qcom.ko] undefined!
ERROR: "kmalloc_caches" [drivers/soc/qcom/llcc-qcom.ko] undefined!
ERROR: "__devm_regmap_init_mmio_clk" [drivers/soc/qcom/llcc-qcom.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/soc/qcom/llcc-qcom.ko] undefined!
ERROR: "platform_get_resource_byname" [drivers/soc/qcom/llcc-qcom.ko] undefined!
ERROR: "regmap_read" [drivers/soc/qcom/llcc-qcom.ko] undefined!
ERROR: "ktime_get" [drivers/soc/qcom/llcc-qcom.ko] undefined!
ERROR: "regmap_write" [drivers/soc/qcom/llcc-qcom.ko] undefined!
ERROR: "unregister_rpmsg_driver" [drivers/soc/qcom/smd-rpm.ko] undefined!
ERROR: "__register_rpmsg_driver" [drivers/soc/qcom/smd-rpm.ko] undefined!
ERROR: "mutex_unlock" [drivers/soc/qcom/smd-rpm.ko] undefined!
ERROR: "kfree" [drivers/soc/qcom/smd-rpm.ko] undefined!
ERROR: "wait_for_completion_timeout" [drivers/soc/qcom/smd-rpm.ko] undefined!
ERROR: "rpmsg_send" [drivers/soc/qcom/smd-rpm.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/soc/qcom/smd-rpm.ko] undefined!
ERROR: "__kmalloc" [drivers/soc/qcom/smd-rpm.ko] undefined!
ERROR: "of_platform_populate" [drivers/soc/qcom/smd-rpm.ko] undefined!
ERROR: "platform_device_register_full" [drivers/soc/qcom/smd-rpm.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/soc/qcom/smd-rpm.ko] undefined!
ERROR: "__mutex_init" [drivers/soc/qcom/smd-rpm.ko] undefined!
ERROR: "devm_kmalloc" [drivers/soc/qcom/smd-rpm.ko] undefined!
ERROR: "of_platform_depopulate" [drivers/soc/qcom/smd-rpm.ko] undefined!
ERROR: "platform_device_unregister" [drivers/soc/qcom/smd-rpm.ko] undefined!
ERROR: "_dev_err" [drivers/soc/qcom/smd-rpm.ko] undefined!
ERROR: "complete" [drivers/soc/qcom/smd-rpm.ko] undefined!
ERROR: "strcmp" [drivers/soc/qcom/smd-rpm.ko] undefined!
ERROR: "memcpy_fromio" [drivers/soc/qcom/smd-rpm.ko] undefined!
ERROR: "kmalloc_caches" [drivers/soc/qcom/qmi_helpers.ko] undefined!
ERROR: "__kmalloc" [drivers/soc/qcom/qmi_helpers.ko] undefined!
ERROR: "kernel_sendmsg" [drivers/soc/qcom/qmi_helpers.ko] undefined!
ERROR: "strlen" [drivers/soc/qcom/qmi_helpers.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/soc/qcom/qmi_helpers.ko] undefined!
ERROR: "sock_release" [drivers/soc/qcom/qmi_helpers.ko] undefined!
ERROR: "cancel_work_sync" [drivers/soc/qcom/qmi_helpers.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/soc/qcom/qmi_helpers.ko] undefined!
ERROR: "sock_create_kern" [drivers/soc/qcom/qmi_helpers.ko] undefined!
ERROR: "mutex_unlock" [drivers/soc/qcom/qmi_helpers.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/soc/qcom/qmi_helpers.ko] undefined!
ERROR: "idr_destroy" [drivers/soc/qcom/qmi_helpers.ko] undefined!
ERROR: "idr_alloc_cyclic" [drivers/soc/qcom/qmi_helpers.ko] undefined!
ERROR: "__mutex_init" [drivers/soc/qcom/qmi_helpers.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/soc/qcom/qmi_helpers.ko] undefined!
ERROR: "printk" [drivers/soc/qcom/qmi_helpers.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/soc/qcom/qmi_helpers.ko] undefined!
ERROR: "destroy_workqueue" [drivers/soc/qcom/qmi_helpers.ko] undefined!
ERROR: "kernel_getsockname" [drivers/soc/qcom/qmi_helpers.ko] undefined!
ERROR: "init_net" [drivers/soc/qcom/qmi_helpers.ko] undefined!
ERROR: "__list_add_valid" [drivers/soc/qcom/qmi_helpers.ko] undefined!
ERROR: "idr_remove" [drivers/soc/qcom/qmi_helpers.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/soc/qcom/qmi_helpers.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/soc/qcom/qmi_helpers.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/soc/qcom/qmi_helpers.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/soc/qcom/qmi_helpers.ko] undefined!
ERROR: "kernel_recvmsg" [drivers/soc/qcom/qmi_helpers.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/soc/qcom/qmi_helpers.ko] undefined!
ERROR: "kfree" [drivers/soc/qcom/qmi_helpers.ko] undefined!
ERROR: "lockdep_init_map" [drivers/soc/qcom/qmi_helpers.ko] undefined!
ERROR: "queue_work_on" [drivers/soc/qcom/qmi_helpers.ko] undefined!
ERROR: "complete" [drivers/soc/qcom/qmi_helpers.ko] undefined!
ERROR: "wait_for_completion_timeout" [drivers/soc/qcom/qmi_helpers.ko] undefined!
ERROR: "idr_find" [drivers/soc/qcom/qmi_helpers.ko] undefined!
ERROR: "alloc_workqueue" [drivers/soc/qcom/qmi_helpers.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/soc/amlogic/meson-canvas.ko] undefined!
ERROR: "__platform_driver_register" [drivers/soc/amlogic/meson-canvas.ko] undefined!
ERROR: "_dev_err" [drivers/soc/amlogic/meson-canvas.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/soc/amlogic/meson-canvas.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/soc/amlogic/meson-canvas.ko] undefined!
ERROR: "of_node_put" [drivers/soc/amlogic/meson-canvas.ko] undefined!
ERROR: "of_find_device_by_node" [drivers/soc/amlogic/meson-canvas.ko] undefined!
ERROR: "of_parse_phandle" [drivers/soc/amlogic/meson-canvas.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/soc/amlogic/meson-canvas.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/soc/amlogic/meson-canvas.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/soc/amlogic/meson-canvas.ko] undefined!
ERROR: "platform_get_resource" [drivers/soc/amlogic/meson-canvas.ko] undefined!
ERROR: "devm_kmalloc" [drivers/soc/amlogic/meson-canvas.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/soc/aspeed/aspeed-p2a-ctrl.ko] undefined!
ERROR: "__platform_driver_register" [drivers/soc/aspeed/aspeed-p2a-ctrl.ko] undefined!
ERROR: "_dev_err" [drivers/soc/aspeed/aspeed-p2a-ctrl.ko] undefined!
ERROR: "misc_register" [drivers/soc/aspeed/aspeed-p2a-ctrl.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/soc/aspeed/aspeed-p2a-ctrl.ko] undefined!
ERROR: "syscon_node_to_regmap" [drivers/soc/aspeed/aspeed-p2a-ctrl.ko] undefined!
ERROR: "of_node_put" [drivers/soc/aspeed/aspeed-p2a-ctrl.ko] undefined!
ERROR: "of_address_to_resource" [drivers/soc/aspeed/aspeed-p2a-ctrl.ko] undefined!
ERROR: "of_parse_phandle" [drivers/soc/aspeed/aspeed-p2a-ctrl.ko] undefined!
ERROR: "__mutex_init" [drivers/soc/aspeed/aspeed-p2a-ctrl.ko] undefined!
ERROR: "devm_kmalloc" [drivers/soc/aspeed/aspeed-p2a-ctrl.ko] undefined!
ERROR: "_copy_to_user" [drivers/soc/aspeed/aspeed-p2a-ctrl.ko] undefined!
ERROR: "_copy_from_user" [drivers/soc/aspeed/aspeed-p2a-ctrl.ko] undefined!
ERROR: "__cachemode2pte_tbl" [drivers/soc/aspeed/aspeed-p2a-ctrl.ko] undefined!
ERROR: "remap_pfn_range" [drivers/soc/aspeed/aspeed-p2a-ctrl.ko] undefined!
ERROR: "boot_cpu_data" [drivers/soc/aspeed/aspeed-p2a-ctrl.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/soc/aspeed/aspeed-p2a-ctrl.ko] undefined!
ERROR: "kmalloc_caches" [drivers/soc/aspeed/aspeed-p2a-ctrl.ko] undefined!
ERROR: "kfree" [drivers/soc/aspeed/aspeed-p2a-ctrl.ko] undefined!
ERROR: "mutex_unlock" [drivers/soc/aspeed/aspeed-p2a-ctrl.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/soc/aspeed/aspeed-p2a-ctrl.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/soc/aspeed/aspeed-p2a-ctrl.ko] undefined!
ERROR: "misc_deregister" [drivers/soc/aspeed/aspeed-p2a-ctrl.ko] undefined!
ERROR: "noop_llseek" [drivers/soc/aspeed/aspeed-lpc-snoop.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/soc/aspeed/aspeed-lpc-snoop.ko] undefined!
ERROR: "__platform_driver_register" [drivers/soc/aspeed/aspeed-lpc-snoop.ko] undefined!
ERROR: "_dev_warn" [drivers/soc/aspeed/aspeed-lpc-snoop.ko] undefined!
ERROR: "_dev_err" [drivers/soc/aspeed/aspeed-lpc-snoop.ko] undefined!
ERROR: "misc_deregister" [drivers/soc/aspeed/aspeed-lpc-snoop.ko] undefined!
ERROR: "__kfifo_free" [drivers/soc/aspeed/aspeed-lpc-snoop.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/soc/aspeed/aspeed-lpc-snoop.ko] undefined!
ERROR: "platform_get_irq" [drivers/soc/aspeed/aspeed-lpc-snoop.ko] undefined!
ERROR: "of_property_read_u32_index" [drivers/soc/aspeed/aspeed-lpc-snoop.ko] undefined!
ERROR: "syscon_node_to_regmap" [drivers/soc/aspeed/aspeed-lpc-snoop.ko] undefined!
ERROR: "devm_kmalloc" [drivers/soc/aspeed/aspeed-lpc-snoop.ko] undefined!
ERROR: "finish_wait" [drivers/soc/aspeed/aspeed-lpc-snoop.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/soc/aspeed/aspeed-lpc-snoop.ko] undefined!
ERROR: "schedule" [drivers/soc/aspeed/aspeed-lpc-snoop.ko] undefined!
ERROR: "init_wait_entry" [drivers/soc/aspeed/aspeed-lpc-snoop.ko] undefined!
ERROR: "__kfifo_to_user" [drivers/soc/aspeed/aspeed-lpc-snoop.ko] undefined!
ERROR: "__might_sleep" [drivers/soc/aspeed/aspeed-lpc-snoop.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/soc/aspeed/aspeed-lpc-snoop.ko] undefined!
ERROR: "misc_register" [drivers/soc/aspeed/aspeed-lpc-snoop.ko] undefined!
ERROR: "devm_kasprintf" [drivers/soc/aspeed/aspeed-lpc-snoop.ko] undefined!
ERROR: "__kfifo_alloc" [drivers/soc/aspeed/aspeed-lpc-snoop.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/soc/aspeed/aspeed-lpc-snoop.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/soc/aspeed/aspeed-lpc-snoop.ko] undefined!
ERROR: "regmap_write" [drivers/soc/aspeed/aspeed-lpc-snoop.ko] undefined!
ERROR: "regmap_read" [drivers/soc/aspeed/aspeed-lpc-snoop.ko] undefined!
ERROR: "__wake_up" [drivers/soc/aspeed/aspeed-lpc-snoop.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/soc/aspeed/aspeed-lpc-snoop.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/soc/aspeed/aspeed-lpc-ctrl.ko] undefined!
ERROR: "__platform_driver_register" [drivers/soc/aspeed/aspeed-lpc-ctrl.ko] undefined!
ERROR: "misc_register" [drivers/soc/aspeed/aspeed-lpc-ctrl.ko] undefined!
ERROR: "clk_enable" [drivers/soc/aspeed/aspeed-lpc-ctrl.ko] undefined!
ERROR: "_dev_err" [drivers/soc/aspeed/aspeed-lpc-ctrl.ko] undefined!
ERROR: "clk_prepare" [drivers/soc/aspeed/aspeed-lpc-ctrl.ko] undefined!
ERROR: "devm_clk_get" [drivers/soc/aspeed/aspeed-lpc-ctrl.ko] undefined!
ERROR: "syscon_node_to_regmap" [drivers/soc/aspeed/aspeed-lpc-ctrl.ko] undefined!
ERROR: "of_node_put" [drivers/soc/aspeed/aspeed-lpc-ctrl.ko] undefined!
ERROR: "of_address_to_resource" [drivers/soc/aspeed/aspeed-lpc-ctrl.ko] undefined!
ERROR: "of_parse_phandle" [drivers/soc/aspeed/aspeed-lpc-ctrl.ko] undefined!
ERROR: "devm_kmalloc" [drivers/soc/aspeed/aspeed-lpc-ctrl.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/soc/aspeed/aspeed-lpc-ctrl.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/soc/aspeed/aspeed-lpc-ctrl.ko] undefined!
ERROR: "regmap_write" [drivers/soc/aspeed/aspeed-lpc-ctrl.ko] undefined!
ERROR: "_copy_to_user" [drivers/soc/aspeed/aspeed-lpc-ctrl.ko] undefined!
ERROR: "_copy_from_user" [drivers/soc/aspeed/aspeed-lpc-ctrl.ko] undefined!
ERROR: "__cachemode2pte_tbl" [drivers/soc/aspeed/aspeed-lpc-ctrl.ko] undefined!
ERROR: "remap_pfn_range" [drivers/soc/aspeed/aspeed-lpc-ctrl.ko] undefined!
ERROR: "boot_cpu_data" [drivers/soc/aspeed/aspeed-lpc-ctrl.ko] undefined!
ERROR: "clk_unprepare" [drivers/soc/aspeed/aspeed-lpc-ctrl.ko] undefined!
ERROR: "clk_disable" [drivers/soc/aspeed/aspeed-lpc-ctrl.ko] undefined!
ERROR: "misc_deregister" [drivers/soc/aspeed/aspeed-lpc-ctrl.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/dma/timb_dma.ko] undefined!
ERROR: "__platform_driver_register" [drivers/dma/timb_dma.ko] undefined!
ERROR: "__warn_printk" [drivers/dma/timb_dma.ko] undefined!
ERROR: "dev_driver_string" [drivers/dma/timb_dma.ko] undefined!
ERROR: "dma_direct_map_page" [drivers/dma/timb_dma.ko] undefined!
ERROR: "mem_section" [drivers/dma/timb_dma.ko] undefined!
ERROR: "__phys_addr" [drivers/dma/timb_dma.ko] undefined!
ERROR: "is_vmalloc_addr" [drivers/dma/timb_dma.ko] undefined!
ERROR: "dma_async_tx_descriptor_init" [drivers/dma/timb_dma.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/dma/timb_dma.ko] undefined!
ERROR: "kmalloc_caches" [drivers/dma/timb_dma.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/dma/timb_dma.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/dma/timb_dma.ko] undefined!
ERROR: "kmalloc_order_trace" [drivers/dma/timb_dma.ko] undefined!
ERROR: "dma_async_device_register" [drivers/dma/timb_dma.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/dma/timb_dma.ko] undefined!
ERROR: "request_threaded_irq" [drivers/dma/timb_dma.ko] undefined!
ERROR: "tasklet_init" [drivers/dma/timb_dma.ko] undefined!
ERROR: "ioremap" [drivers/dma/timb_dma.ko] undefined!
ERROR: "__kmalloc" [drivers/dma/timb_dma.ko] undefined!
ERROR: "__request_region" [drivers/dma/timb_dma.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/dma/timb_dma.ko] undefined!
ERROR: "__tasklet_schedule" [drivers/dma/timb_dma.ko] undefined!
ERROR: "ioread32" [drivers/dma/timb_dma.ko] undefined!
ERROR: "_dev_err" [drivers/dma/timb_dma.ko] undefined!
ERROR: "dma_ops" [drivers/dma/timb_dma.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/dma/timb_dma.ko] undefined!
ERROR: "sg_next" [drivers/dma/timb_dma.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/dma/timb_dma.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/dma/timb_dma.ko] undefined!
ERROR: "dmaengine_unmap_put" [drivers/dma/timb_dma.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/dma/timb_dma.ko] undefined!
ERROR: "iowrite32" [drivers/dma/timb_dma.ko] undefined!
ERROR: "_raw_spin_unlock_bh" [drivers/dma/timb_dma.ko] undefined!
ERROR: "__list_add_valid" [drivers/dma/timb_dma.ko] undefined!
ERROR: "_raw_spin_lock_bh" [drivers/dma/timb_dma.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/dma/timb_dma.ko] undefined!
ERROR: "__release_region" [drivers/dma/timb_dma.ko] undefined!
ERROR: "iomem_resource" [drivers/dma/timb_dma.ko] undefined!
ERROR: "kfree" [drivers/dma/timb_dma.ko] undefined!
ERROR: "iounmap" [drivers/dma/timb_dma.ko] undefined!
ERROR: "tasklet_kill" [drivers/dma/timb_dma.ko] undefined!
ERROR: "free_irq" [drivers/dma/timb_dma.ko] undefined!
ERROR: "dma_async_device_unregister" [drivers/dma/timb_dma.ko] undefined!
ERROR: "platform_get_irq" [drivers/dma/timb_dma.ko] undefined!
ERROR: "platform_get_resource" [drivers/dma/timb_dma.ko] undefined!
ERROR: "pm_runtime_force_resume" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "pm_runtime_force_suspend" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "__platform_driver_register" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "tasklet_kill" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "_dev_info" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "of_dma_controller_register" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "dma_async_device_register" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "usleep_range" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "__might_sleep" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "of_irq_get" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "vchan_init" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "devm_clk_get" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "platform_get_resource" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "devm_kmalloc" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "free_irq" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "request_threaded_irq" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "__tasklet_schedule" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "__list_add_valid" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "vchan_tx_desc_free" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "vchan_tx_submit" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "dma_async_tx_descriptor_init" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "kmalloc_caches" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "vchan_find_desc" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "__warn_printk" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "dev_driver_string" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "vchan_dma_desc_free_list" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "ktime_get" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "kfree" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "__const_udelay" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "dma_get_any_slave_channel" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "__pm_runtime_idle" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "irq_dispose_mapping" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "dma_async_device_unregister" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "of_dma_controller_free" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "clk_disable" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "clk_unprepare" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "clk_enable" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "_dev_err" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "clk_prepare" [drivers/dma/tegra210-adma.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/dma/sprd-dma.ko] undefined!
ERROR: "__platform_driver_register" [drivers/dma/sprd-dma.ko] undefined!
ERROR: "__pm_runtime_idle" [drivers/dma/sprd-dma.ko] undefined!
ERROR: "of_dma_controller_register" [drivers/dma/sprd-dma.ko] undefined!
ERROR: "of_dma_simple_xlate" [drivers/dma/sprd-dma.ko] undefined!
ERROR: "dma_async_device_register" [drivers/dma/sprd-dma.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/dma/sprd-dma.ko] undefined!
ERROR: "__pm_runtime_set_status" [drivers/dma/sprd-dma.ko] undefined!
ERROR: "vchan_init" [drivers/dma/sprd-dma.ko] undefined!
ERROR: "devm_platform_ioremap_resource" [drivers/dma/sprd-dma.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/dma/sprd-dma.ko] undefined!
ERROR: "platform_get_irq" [drivers/dma/sprd-dma.ko] undefined!
ERROR: "devm_clk_get" [drivers/dma/sprd-dma.ko] undefined!
ERROR: "devm_kmalloc" [drivers/dma/sprd-dma.ko] undefined!
ERROR: "device_property_read_u32_array" [drivers/dma/sprd-dma.ko] undefined!
ERROR: "clk_enable" [drivers/dma/sprd-dma.ko] undefined!
ERROR: "clk_prepare" [drivers/dma/sprd-dma.ko] undefined!
ERROR: "__tasklet_schedule" [drivers/dma/sprd-dma.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/dma/sprd-dma.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/dma/sprd-dma.ko] undefined!
ERROR: "vchan_find_desc" [drivers/dma/sprd-dma.ko] undefined!
ERROR: "__list_add_valid" [drivers/dma/sprd-dma.ko] undefined!
ERROR: "vchan_tx_desc_free" [drivers/dma/sprd-dma.ko] undefined!
ERROR: "vchan_tx_submit" [drivers/dma/sprd-dma.ko] undefined!
ERROR: "dma_async_tx_descriptor_init" [drivers/dma/sprd-dma.ko] undefined!
ERROR: "sg_next" [drivers/dma/sprd-dma.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/dma/sprd-dma.ko] undefined!
ERROR: "kmalloc_caches" [drivers/dma/sprd-dma.ko] undefined!
ERROR: "vchan_dma_desc_free_list" [drivers/dma/sprd-dma.ko] undefined!
ERROR: "kfree" [drivers/dma/sprd-dma.ko] undefined!
ERROR: "_dev_warn" [drivers/dma/sprd-dma.ko] undefined!
ERROR: "devm_free_irq" [drivers/dma/sprd-dma.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/dma/sprd-dma.ko] undefined!
ERROR: "dma_async_device_unregister" [drivers/dma/sprd-dma.ko] undefined!
ERROR: "of_dma_controller_free" [drivers/dma/sprd-dma.ko] undefined!
ERROR: "tasklet_kill" [drivers/dma/sprd-dma.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/dma/sprd-dma.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/dma/sprd-dma.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/dma/sprd-dma.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/dma/sprd-dma.ko] undefined!
ERROR: "clk_unprepare" [drivers/dma/sprd-dma.ko] undefined!
ERROR: "clk_disable" [drivers/dma/sprd-dma.ko] undefined!
ERROR: "_dev_err" [drivers/dma/sprd-dma.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/dma/plx_dma.ko] undefined!
ERROR: "__pci_register_driver" [drivers/dma/plx_dma.ko] undefined!
ERROR: "dma_async_tx_descriptor_init" [drivers/dma/plx_dma.ko] undefined!
ERROR: "dma_alloc_attrs" [drivers/dma/plx_dma.ko] undefined!
ERROR: "synchronize_irq" [drivers/dma/plx_dma.ko] undefined!
ERROR: "dma_free_attrs" [drivers/dma/plx_dma.ko] undefined!
ERROR: "tasklet_kill" [drivers/dma/plx_dma.ko] undefined!
ERROR: "lockdep_rcu_suspicious" [drivers/dma/plx_dma.ko] undefined!
ERROR: "rcu_read_lock_held" [drivers/dma/plx_dma.ko] undefined!
ERROR: "lock_release" [drivers/dma/plx_dma.ko] undefined!
ERROR: "debug_lockdep_rcu_enabled" [drivers/dma/plx_dma.ko] undefined!
ERROR: "lock_acquire" [drivers/dma/plx_dma.ko] undefined!
ERROR: "rcu_lock_map" [drivers/dma/plx_dma.ko] undefined!
ERROR: "__preempt_count" [drivers/dma/plx_dma.ko] undefined!
ERROR: "dma_async_device_unregister" [drivers/dma/plx_dma.ko] undefined!
ERROR: "synchronize_rcu" [drivers/dma/plx_dma.ko] undefined!
ERROR: "free_irq" [drivers/dma/plx_dma.ko] undefined!
ERROR: "_dev_info" [drivers/dma/plx_dma.ko] undefined!
ERROR: "dma_async_device_register" [drivers/dma/plx_dma.ko] undefined!
ERROR: "__list_add_valid" [drivers/dma/plx_dma.ko] undefined!
ERROR: "get_device" [drivers/dma/plx_dma.ko] undefined!
ERROR: "pcim_iomap_table" [drivers/dma/plx_dma.ko] undefined!
ERROR: "tasklet_init" [drivers/dma/plx_dma.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/dma/plx_dma.ko] undefined!
ERROR: "request_threaded_irq" [drivers/dma/plx_dma.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/dma/plx_dma.ko] undefined!
ERROR: "kmalloc_caches" [drivers/dma/plx_dma.ko] undefined!
ERROR: "pci_set_master" [drivers/dma/plx_dma.ko] undefined!
ERROR: "pcim_iomap_regions" [drivers/dma/plx_dma.ko] undefined!
ERROR: "dma_set_coherent_mask" [drivers/dma/plx_dma.ko] undefined!
ERROR: "dma_set_mask" [drivers/dma/plx_dma.ko] undefined!
ERROR: "pcim_enable_device" [drivers/dma/plx_dma.ko] undefined!
ERROR: "__tasklet_schedule" [drivers/dma/plx_dma.ko] undefined!
ERROR: "kfree" [drivers/dma/plx_dma.ko] undefined!
ERROR: "put_device" [drivers/dma/plx_dma.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/dma/plx_dma.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/dma/plx_dma.ko] undefined!
ERROR: "dmaengine_unmap_put" [drivers/dma/plx_dma.ko] undefined!
ERROR: "_dev_err" [drivers/dma/plx_dma.ko] undefined!
ERROR: "jiffies" [drivers/dma/plx_dma.ko] undefined!
ERROR: "_raw_spin_unlock_bh" [drivers/dma/plx_dma.ko] undefined!
ERROR: "_raw_spin_lock_bh" [drivers/dma/plx_dma.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/dma/iop-adma.ko] undefined!
ERROR: "__platform_driver_register" [drivers/dma/iop-adma.ko] undefined!
ERROR: "dma_async_device_register" [drivers/dma/iop-adma.ko] undefined!
ERROR: "_dev_info" [drivers/dma/iop-adma.ko] undefined!
ERROR: "__warn_printk" [drivers/dma/iop-adma.ko] undefined!
ERROR: "dev_driver_string" [drivers/dma/iop-adma.ko] undefined!
ERROR: "__free_pages" [drivers/dma/iop-adma.ko] undefined!
ERROR: "memcmp" [drivers/dma/iop-adma.ko] undefined!
ERROR: "mem_section" [drivers/dma/iop-adma.ko] undefined!
ERROR: "__phys_addr" [drivers/dma/iop-adma.ko] undefined!
ERROR: "is_vmalloc_addr" [drivers/dma/iop-adma.ko] undefined!
ERROR: "dma_direct_map_page" [drivers/dma/iop-adma.ko] undefined!
ERROR: "dma_ops" [drivers/dma/iop-adma.ko] undefined!
ERROR: "msleep" [drivers/dma/iop-adma.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/dma/iop-adma.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/dma/iop-adma.ko] undefined!
ERROR: "page_address" [drivers/dma/iop-adma.ko] undefined!
ERROR: "__alloc_pages_nodemask" [drivers/dma/iop-adma.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/dma/iop-adma.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/dma/iop-adma.ko] undefined!
ERROR: "platform_get_irq" [drivers/dma/iop-adma.ko] undefined!
ERROR: "tasklet_init" [drivers/dma/iop-adma.ko] undefined!
ERROR: "devm_ioremap" [drivers/dma/iop-adma.ko] undefined!
ERROR: "dma_alloc_attrs" [drivers/dma/iop-adma.ko] undefined!
ERROR: "__devm_request_region" [drivers/dma/iop-adma.ko] undefined!
ERROR: "iomem_resource" [drivers/dma/iop-adma.ko] undefined!
ERROR: "platform_get_resource" [drivers/dma/iop-adma.ko] undefined!
ERROR: "printk" [drivers/dma/iop-adma.ko] undefined!
ERROR: "dma_async_tx_descriptor_init" [drivers/dma/iop-adma.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/dma/iop-adma.ko] undefined!
ERROR: "kmalloc_caches" [drivers/dma/iop-adma.ko] undefined!
ERROR: "__list_add_valid" [drivers/dma/iop-adma.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/dma/iop-adma.ko] undefined!
ERROR: "_raw_spin_lock_nested" [drivers/dma/iop-adma.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/dma/iop-adma.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/dma/iop-adma.ko] undefined!
ERROR: "dmaengine_unmap_put" [drivers/dma/iop-adma.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/dma/iop-adma.ko] undefined!
ERROR: "dma_run_dependencies" [drivers/dma/iop-adma.ko] undefined!
ERROR: "__tasklet_schedule" [drivers/dma/iop-adma.ko] undefined!
ERROR: "_dev_err" [drivers/dma/iop-adma.ko] undefined!
ERROR: "_raw_spin_unlock_bh" [drivers/dma/iop-adma.ko] undefined!
ERROR: "_raw_spin_lock_bh" [drivers/dma/iop-adma.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/dma/iop-adma.ko] undefined!
ERROR: "kfree" [drivers/dma/iop-adma.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/dma/iop-adma.ko] undefined!
ERROR: "dma_free_attrs" [drivers/dma/iop-adma.ko] undefined!
ERROR: "dma_async_device_unregister" [drivers/dma/iop-adma.ko] undefined!
ERROR: "tasklet_kill" [drivers/dma/fsl-edma-common.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/dma/fsl-edma-common.ko] undefined!
ERROR: "dma_pool_destroy" [drivers/dma/fsl-edma-common.ko] undefined!
ERROR: "dma_pool_create" [drivers/dma/fsl-edma-common.ko] undefined!
ERROR: "iowrite16be" [drivers/dma/fsl-edma-common.ko] undefined!
ERROR: "iowrite32be" [drivers/dma/fsl-edma-common.ko] undefined!
ERROR: "iowrite16" [drivers/dma/fsl-edma-common.ko] undefined!
ERROR: "sg_next" [drivers/dma/fsl-edma-common.ko] undefined!
ERROR: "__list_add_valid" [drivers/dma/fsl-edma-common.ko] undefined!
ERROR: "vchan_tx_desc_free" [drivers/dma/fsl-edma-common.ko] undefined!
ERROR: "vchan_tx_submit" [drivers/dma/fsl-edma-common.ko] undefined!
ERROR: "dma_async_tx_descriptor_init" [drivers/dma/fsl-edma-common.ko] undefined!
ERROR: "vchan_find_desc" [drivers/dma/fsl-edma-common.ko] undefined!
ERROR: "vchan_dma_desc_free_list" [drivers/dma/fsl-edma-common.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/dma/fsl-edma-common.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/dma/fsl-edma-common.ko] undefined!
ERROR: "iowrite32" [drivers/dma/fsl-edma-common.ko] undefined!
ERROR: "iowrite8" [drivers/dma/fsl-edma-common.ko] undefined!
ERROR: "ioread32be" [drivers/dma/fsl-edma-common.ko] undefined!
ERROR: "ioread32" [drivers/dma/fsl-edma-common.ko] undefined!
ERROR: "kmalloc_order_trace" [drivers/dma/fsl-edma-common.ko] undefined!
ERROR: "kfree" [drivers/dma/fsl-edma-common.ko] undefined!
ERROR: "dma_pool_free" [drivers/dma/fsl-edma-common.ko] undefined!
ERROR: "dma_pool_alloc" [drivers/dma/fsl-edma-common.ko] undefined!
ERROR: "__kmalloc" [drivers/dma/fsl-edma-common.ko] undefined!
ERROR: "dma_direct_map_resource" [drivers/dma/fsl-edma-common.ko] undefined!
ERROR: "mem_section" [drivers/dma/fsl-edma-common.ko] undefined!
ERROR: "dma_ops" [drivers/dma/fsl-edma-common.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/dma/fsl-edma-common.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "__platform_driver_register" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "of_dma_controller_register" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "dma_async_device_register" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "fsl_edma_issue_pending" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "fsl_edma_terminate_all" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "fsl_edma_resume" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "fsl_edma_pause" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "fsl_edma_slave_config" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "fsl_edma_prep_dma_cyclic" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "fsl_edma_prep_slave_sg" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "fsl_edma_tx_status" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "fsl_edma_free_chan_resources" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "fsl_edma_alloc_chan_resources" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "vchan_init" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "fsl_edma_free_desc" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "of_find_property" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "clk_enable" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "clk_prepare" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "devm_clk_get" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "fsl_edma_setup_regs" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "platform_get_resource" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "__mutex_init" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "devm_kmalloc" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "of_match_device" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "iowrite32" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "iowrite32be" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "iowrite16" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "iowrite16be" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "vchan_dma_desc_free_list" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "tasklet_kill" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "mutex_unlock" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "dma_get_slave_channel" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "dma_async_device_unregister" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "of_dma_controller_free" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "fsl_edma_cleanup_vchan" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "devm_free_irq" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "clk_unprepare" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "clk_disable" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "fsl_edma_chan_mux" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "fsl_edma_disable_request" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "_dev_warn" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "platform_get_irq_byname" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "_dev_err" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "sprintf" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "platform_get_irq" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "platform_irq_count" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "__tasklet_schedule" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "ioread32" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "fsl_edma_xfer_desc" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "__list_add_valid" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "iowrite8" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "ioread32be" [drivers/dma/fsl-edma.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/dma/ti/edma.ko] undefined!
ERROR: "__platform_driver_register" [drivers/dma/ti/edma.ko] undefined!
ERROR: "kmalloc_order_trace" [drivers/dma/ti/edma.ko] undefined!
ERROR: "sg_next" [drivers/dma/ti/edma.ko] undefined!
ERROR: "vchan_tx_desc_free" [drivers/dma/ti/edma.ko] undefined!
ERROR: "vchan_tx_submit" [drivers/dma/ti/edma.ko] undefined!
ERROR: "dma_async_tx_descriptor_init" [drivers/dma/ti/edma.ko] undefined!
ERROR: "_dev_info" [drivers/dma/ti/edma.ko] undefined!
ERROR: "of_dma_controller_register" [drivers/dma/ti/edma.ko] undefined!
ERROR: "dma_async_device_register" [drivers/dma/ti/edma.ko] undefined!
ERROR: "vchan_init" [drivers/dma/ti/edma.ko] undefined!
ERROR: "irq_of_parse_and_map" [drivers/dma/ti/edma.ko] undefined!
ERROR: "platform_get_resource" [drivers/dma/ti/edma.ko] undefined!
ERROR: "of_parse_phandle_with_fixed_args" [drivers/dma/ti/edma.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/dma/ti/edma.ko] undefined!
ERROR: "devm_kasprintf" [drivers/dma/ti/edma.ko] undefined!
ERROR: "platform_get_irq_byname" [drivers/dma/ti/edma.ko] undefined!
ERROR: "__bitmap_clear" [drivers/dma/ti/edma.ko] undefined!
ERROR: "__bitmap_set" [drivers/dma/ti/edma.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/dma/ti/edma.ko] undefined!
ERROR: "platform_get_resource_byname" [drivers/dma/ti/edma.ko] undefined!
ERROR: "dma_set_coherent_mask" [drivers/dma/ti/edma.ko] undefined!
ERROR: "dma_set_mask" [drivers/dma/ti/edma.ko] undefined!
ERROR: "of_match_node" [drivers/dma/ti/edma.ko] undefined!
ERROR: "__kmalloc" [drivers/dma/ti/edma.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/dma/ti/edma.ko] undefined!
ERROR: "of_find_property" [drivers/dma/ti/edma.ko] undefined!
ERROR: "of_property_read_variable_u16_array" [drivers/dma/ti/edma.ko] undefined!
ERROR: "devm_ioremap" [drivers/dma/ti/edma.ko] undefined!
ERROR: "of_address_to_resource" [drivers/dma/ti/edma.ko] undefined!
ERROR: "devm_kmalloc" [drivers/dma/ti/edma.ko] undefined!
ERROR: "___ratelimit" [drivers/dma/ti/edma.ko] undefined!
ERROR: "__tasklet_schedule" [drivers/dma/ti/edma.ko] undefined!
ERROR: "__list_add_valid" [drivers/dma/ti/edma.ko] undefined!
ERROR: "vchan_find_desc" [drivers/dma/ti/edma.ko] undefined!
ERROR: "vchan_dma_desc_free_list" [drivers/dma/ti/edma.ko] undefined!
ERROR: "find_next_zero_bit" [drivers/dma/ti/edma.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/dma/ti/edma.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/dma/ti/edma.ko] undefined!
ERROR: "kfree" [drivers/dma/ti/edma.ko] undefined!
ERROR: "memcpy_fromio" [drivers/dma/ti/edma.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/dma/ti/edma.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/dma/ti/edma.ko] undefined!
ERROR: "find_next_bit" [drivers/dma/ti/edma.ko] undefined!
ERROR: "dma_get_slave_channel" [drivers/dma/ti/edma.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/dma/ti/edma.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/dma/ti/edma.ko] undefined!
ERROR: "_dev_warn" [drivers/dma/ti/edma.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/dma/ti/edma.ko] undefined!
ERROR: "_dev_err" [drivers/dma/ti/edma.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/dma/ti/edma.ko] undefined!
ERROR: "__pm_runtime_idle" [drivers/dma/ti/edma.ko] undefined!
ERROR: "dma_async_device_unregister" [drivers/dma/ti/edma.ko] undefined!
ERROR: "of_dma_controller_free" [drivers/dma/ti/edma.ko] undefined!
ERROR: "tasklet_kill" [drivers/dma/ti/edma.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/dma/ti/edma.ko] undefined!
ERROR: "devm_free_irq" [drivers/dma/ti/edma.ko] undefined!
ERROR: "memcpy_toio" [drivers/dma/ti/edma.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "__platform_driver_register" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "refcount_warn_saturate" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "vchan_tx_desc_free" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "vchan_tx_submit" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "dma_async_tx_descriptor_init" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "kmalloc_caches" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "__kmalloc" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "_dev_info" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "tasklet_init" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "clk_enable" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "clk_prepare" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "of_dma_controller_register" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "of_dma_xlate_by_chan_id" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "dma_async_device_register" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "vchan_init" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "platform_get_resource" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "devm_platform_ioremap_resource" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "devm_clk_get" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "devm_kmalloc" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "of_dma_controller_free" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "dma_async_device_unregister" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "__pm_runtime_idle" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "clk_unprepare" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "clk_disable" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "synchronize_irq" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "lock_is_held_type" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "debug_locks" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "complete" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "__list_add_valid" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "enable_irq" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "dma_run_dependencies" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "_dev_err" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "__const_udelay" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "ktime_get" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "__warn_printk" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "wait_for_completion" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "tasklet_kill" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "vchan_dma_desc_free_list" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "__tasklet_schedule" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "disable_irq_nosync" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "kfree" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/dma/mediatek/mtk-cqdma.ko] undefined!
ERROR: "i2c_del_driver" [drivers/clk/clk-versaclock5.ko] undefined!
ERROR: "i2c_register_driver" [drivers/clk/clk-versaclock5.ko] undefined!
ERROR: "of_clk_add_hw_provider" [drivers/clk/clk-versaclock5.ko] undefined!
ERROR: "devm_clk_hw_register" [drivers/clk/clk-versaclock5.ko] undefined!
ERROR: "__clk_get_name" [drivers/clk/clk-versaclock5.ko] undefined!
ERROR: "clk_register_fixed_rate" [drivers/clk/clk-versaclock5.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/clk/clk-versaclock5.ko] undefined!
ERROR: "devm_clk_get" [drivers/clk/clk-versaclock5.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/clk/clk-versaclock5.ko] undefined!
ERROR: "devm_kmalloc" [drivers/clk/clk-versaclock5.ko] undefined!
ERROR: "regmap_bulk_read" [drivers/clk/clk-versaclock5.ko] undefined!
ERROR: "div64_u64" [drivers/clk/clk-versaclock5.ko] undefined!
ERROR: "regmap_bulk_write" [drivers/clk/clk-versaclock5.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/clk/clk-versaclock5.ko] undefined!
ERROR: "_dev_warn" [drivers/clk/clk-versaclock5.ko] undefined!
ERROR: "regmap_read" [drivers/clk/clk-versaclock5.ko] undefined!
ERROR: "clk_unregister_fixed_rate" [drivers/clk/clk-versaclock5.ko] undefined!
ERROR: "of_clk_del_provider" [drivers/clk/clk-versaclock5.ko] undefined!
ERROR: "regcache_mark_dirty" [drivers/clk/clk-versaclock5.ko] undefined!
ERROR: "_dev_err" [drivers/clk/clk-versaclock5.ko] undefined!
ERROR: "regcache_sync" [drivers/clk/clk-versaclock5.ko] undefined!
ERROR: "regcache_cache_only" [drivers/clk/clk-versaclock5.ko] undefined!
ERROR: "i2c_del_driver" [drivers/clk/clk-si570.ko] undefined!
ERROR: "i2c_register_driver" [drivers/clk/clk-si570.ko] undefined!
ERROR: "_dev_info" [drivers/clk/clk-si570.ko] undefined!
ERROR: "clk_set_rate" [drivers/clk/clk-si570.ko] undefined!
ERROR: "of_clk_add_hw_provider" [drivers/clk/clk-si570.ko] undefined!
ERROR: "of_clk_hw_simple_get" [drivers/clk/clk-si570.ko] undefined!
ERROR: "devm_clk_hw_register" [drivers/clk/clk-si570.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/clk/clk-si570.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/clk/clk-si570.ko] undefined!
ERROR: "of_property_read_string" [drivers/clk/clk-si570.ko] undefined!
ERROR: "devm_kmalloc" [drivers/clk/clk-si570.ko] undefined!
ERROR: "regmap_bulk_read" [drivers/clk/clk-si570.ko] undefined!
ERROR: "usleep_range" [drivers/clk/clk-si570.ko] undefined!
ERROR: "regmap_write" [drivers/clk/clk-si570.ko] undefined!
ERROR: "regmap_bulk_write" [drivers/clk/clk-si570.ko] undefined!
ERROR: "_dev_err" [drivers/clk/clk-si570.ko] undefined!
ERROR: "div64_u64" [drivers/clk/clk-si570.ko] undefined!
ERROR: "of_clk_del_provider" [drivers/clk/clk-si570.ko] undefined!
ERROR: "i2c_del_driver" [drivers/clk/clk-si5351.ko] undefined!
ERROR: "i2c_register_driver" [drivers/clk/clk-si5351.ko] undefined!
ERROR: "regmap_bulk_read" [drivers/clk/clk-si5351.ko] undefined!
ERROR: "regmap_raw_write" [drivers/clk/clk-si5351.ko] undefined!
ERROR: "regmap_read" [drivers/clk/clk-si5351.ko] undefined!
ERROR: "of_node_put" [drivers/clk/clk-si5351.ko] undefined!
ERROR: "of_clk_add_hw_provider" [drivers/clk/clk-si5351.ko] undefined!
ERROR: "clk_set_rate" [drivers/clk/clk-si5351.ko] undefined!
ERROR: "__clk_get_name" [drivers/clk/clk-si5351.ko] undefined!
ERROR: "devm_clk_hw_register" [drivers/clk/clk-si5351.ko] undefined!
ERROR: "regmap_write" [drivers/clk/clk-si5351.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/clk/clk-si5351.ko] undefined!
ERROR: "devm_clk_get" [drivers/clk/clk-si5351.ko] undefined!
ERROR: "_dev_err" [drivers/clk/clk-si5351.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/clk/clk-si5351.ko] undefined!
ERROR: "of_get_next_child" [drivers/clk/clk-si5351.ko] undefined!
ERROR: "of_prop_next_u32" [drivers/clk/clk-si5351.ko] undefined!
ERROR: "of_find_property" [drivers/clk/clk-si5351.ko] undefined!
ERROR: "devm_kmalloc" [drivers/clk/clk-si5351.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/clk/clk-si5351.ko] undefined!
ERROR: "_dev_warn" [drivers/clk/clk-si5351.ko] undefined!
ERROR: "rational_best_approximation" [drivers/clk/clk-si5351.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/clk/clk-si5351.ko] undefined!
ERROR: "clk_hw_get_name" [drivers/clk/clk-si5351.ko] undefined!
ERROR: "clk_hw_get_flags" [drivers/clk/clk-si5351.ko] undefined!
ERROR: "printk" [drivers/clk/clk-si5351.ko] undefined!
ERROR: "of_clk_del_provider" [drivers/clk/clk-si5351.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/clk/clk-scpi.ko] undefined!
ERROR: "__platform_driver_register" [drivers/clk/clk-scpi.ko] undefined!
ERROR: "printk" [drivers/clk/clk-scpi.ko] undefined!
ERROR: "of_node_put" [drivers/clk/clk-scpi.ko] undefined!
ERROR: "platform_device_register_full" [drivers/clk/clk-scpi.ko] undefined!
ERROR: "clk_hw_set_rate_range" [drivers/clk/clk-scpi.ko] undefined!
ERROR: "of_clk_add_hw_provider" [drivers/clk/clk-scpi.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/clk/clk-scpi.ko] undefined!
ERROR: "_dev_err" [drivers/clk/clk-scpi.ko] undefined!
ERROR: "devm_clk_hw_register" [drivers/clk/clk-scpi.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/clk/clk-scpi.ko] undefined!
ERROR: "of_property_read_u32_index" [drivers/clk/clk-scpi.ko] undefined!
ERROR: "devm_kmalloc" [drivers/clk/clk-scpi.ko] undefined!
ERROR: "of_property_read_string_helper" [drivers/clk/clk-scpi.ko] undefined!
ERROR: "of_match_node" [drivers/clk/clk-scpi.ko] undefined!
ERROR: "get_scpi_ops" [drivers/clk/clk-scpi.ko] undefined!
ERROR: "of_get_next_available_child" [drivers/clk/clk-scpi.ko] undefined!
ERROR: "of_clk_del_provider" [drivers/clk/clk-scpi.ko] undefined!
ERROR: "platform_device_unregister" [drivers/clk/clk-scpi.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/clk/clk-scpi.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/clk/clk-scpi.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/clk/clk-s2mps11.ko] undefined!
ERROR: "__platform_driver_register" [drivers/clk/clk-s2mps11.ko] undefined!
ERROR: "_dev_err" [drivers/clk/clk-s2mps11.ko] undefined!
ERROR: "of_clk_add_hw_provider" [drivers/clk/clk-s2mps11.ko] undefined!
ERROR: "of_clk_hw_onecell_get" [drivers/clk/clk-s2mps11.ko] undefined!
ERROR: "clkdev_hw_create" [drivers/clk/clk-s2mps11.ko] undefined!
ERROR: "devm_clk_register" [drivers/clk/clk-s2mps11.ko] undefined!
ERROR: "of_property_read_string_helper" [drivers/clk/clk-s2mps11.ko] undefined!
ERROR: "of_get_child_by_name" [drivers/clk/clk-s2mps11.ko] undefined!
ERROR: "devm_kmalloc" [drivers/clk/clk-s2mps11.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/clk/clk-s2mps11.ko] undefined!
ERROR: "regmap_read" [drivers/clk/clk-s2mps11.ko] undefined!
ERROR: "clkdev_drop" [drivers/clk/clk-s2mps11.ko] undefined!
ERROR: "of_node_put" [drivers/clk/clk-s2mps11.ko] undefined!
ERROR: "of_clk_del_provider" [drivers/clk/clk-s2mps11.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/clk/clk-rk808.ko] undefined!
ERROR: "__platform_driver_register" [drivers/clk/clk-rk808.ko] undefined!
ERROR: "devm_of_clk_add_hw_provider" [drivers/clk/clk-rk808.ko] undefined!
ERROR: "devm_clk_hw_register" [drivers/clk/clk-rk808.ko] undefined!
ERROR: "of_property_read_string_helper" [drivers/clk/clk-rk808.ko] undefined!
ERROR: "devm_kmalloc" [drivers/clk/clk-rk808.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/clk/clk-rk808.ko] undefined!
ERROR: "regmap_read" [drivers/clk/clk-rk808.ko] undefined!
ERROR: "printk" [drivers/clk/clk-rk808.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/clk/clk-pwm.ko] undefined!
ERROR: "__platform_driver_register" [drivers/clk/clk-pwm.ko] undefined!
ERROR: "_dev_err" [drivers/clk/clk-pwm.ko] undefined!
ERROR: "of_clk_add_hw_provider" [drivers/clk/clk-pwm.ko] undefined!
ERROR: "of_clk_hw_simple_get" [drivers/clk/clk-pwm.ko] undefined!
ERROR: "devm_clk_hw_register" [drivers/clk/clk-pwm.ko] undefined!
ERROR: "of_property_read_string" [drivers/clk/clk-pwm.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/clk/clk-pwm.ko] undefined!
ERROR: "devm_pwm_get" [drivers/clk/clk-pwm.ko] undefined!
ERROR: "devm_kmalloc" [drivers/clk/clk-pwm.ko] undefined!
ERROR: "pwm_apply_state" [drivers/clk/clk-pwm.ko] undefined!
ERROR: "of_clk_del_provider" [drivers/clk/clk-pwm.ko] undefined!
ERROR: "acpi_bus_unregister_driver" [drivers/acpi/acpi_pad.ko] undefined!
ERROR: "acpi_bus_register_driver" [drivers/acpi/acpi_pad.ko] undefined!
ERROR: "__cpu_online_mask" [drivers/acpi/acpi_pad.ko] undefined!
ERROR: "cpu_bit_bitmap" [drivers/acpi/acpi_pad.ko] undefined!
ERROR: "mark_tsc_unstable" [drivers/acpi/acpi_pad.ko] undefined!
ERROR: "schedule" [drivers/acpi/acpi_pad.ko] undefined!
ERROR: "schedule_timeout_killable" [drivers/acpi/acpi_pad.ko] undefined!
ERROR: "trace_hardirqs_on" [drivers/acpi/acpi_pad.ko] undefined!
ERROR: "__preempt_count" [drivers/acpi/acpi_pad.ko] undefined!
ERROR: "mds_idle_clear" [drivers/acpi/acpi_pad.ko] undefined!
ERROR: "tick_broadcast_oneshot_control" [drivers/acpi/acpi_pad.ko] undefined!
ERROR: "tick_broadcast_control" [drivers/acpi/acpi_pad.ko] undefined!
ERROR: "trace_hardirqs_off" [drivers/acpi/acpi_pad.ko] undefined!
ERROR: "jiffies" [drivers/acpi/acpi_pad.ko] undefined!
ERROR: "kthread_should_stop" [drivers/acpi/acpi_pad.ko] undefined!
ERROR: "boot_cpu_data" [drivers/acpi/acpi_pad.ko] undefined!
ERROR: "sched_setscheduler" [drivers/acpi/acpi_pad.ko] undefined!
ERROR: "current_task" [drivers/acpi/acpi_pad.ko] undefined!
ERROR: "acpi_install_notify_handler" [drivers/acpi/acpi_pad.ko] undefined!
ERROR: "device_create_file" [drivers/acpi/acpi_pad.ko] undefined!
ERROR: "strcpy" [drivers/acpi/acpi_pad.ko] undefined!
ERROR: "bitmap_print_to_pagebuf" [drivers/acpi/acpi_pad.ko] undefined!
ERROR: "scnprintf" [drivers/acpi/acpi_pad.ko] undefined!
ERROR: "_kstrtoul" [drivers/acpi/acpi_pad.ko] undefined!
ERROR: "acpi_remove_notify_handler" [drivers/acpi/acpi_pad.ko] undefined!
ERROR: "device_remove_file" [drivers/acpi/acpi_pad.ko] undefined!
ERROR: "printk" [drivers/acpi/acpi_pad.ko] undefined!
ERROR: "acpi_evaluate_ost" [drivers/acpi/acpi_pad.ko] undefined!
ERROR: "acpi_bus_generate_netlink_event" [drivers/acpi/acpi_pad.ko] undefined!
ERROR: "mutex_unlock" [drivers/acpi/acpi_pad.ko] undefined!
ERROR: "kfree" [drivers/acpi/acpi_pad.ko] undefined!
ERROR: "acpi_evaluate_object" [drivers/acpi/acpi_pad.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/acpi/acpi_pad.ko] undefined!
ERROR: "wake_up_process" [drivers/acpi/acpi_pad.ko] undefined!
ERROR: "kthread_create_on_node" [drivers/acpi/acpi_pad.ko] undefined!
ERROR: "kthread_stop" [drivers/acpi/acpi_pad.ko] undefined!
ERROR: "param_ops_bool" [drivers/acpi/ec_sys.ko] undefined!
ERROR: "simple_open" [drivers/acpi/ec_sys.ko] undefined!
ERROR: "default_llseek" [drivers/acpi/ec_sys.ko] undefined!
ERROR: "debugfs_remove_recursive" [drivers/acpi/ec_sys.ko] undefined!
ERROR: "debugfs_create_file" [drivers/acpi/ec_sys.ko] undefined!
ERROR: "debugfs_create_bool" [drivers/acpi/ec_sys.ko] undefined!
ERROR: "debugfs_create_x32" [drivers/acpi/ec_sys.ko] undefined!
ERROR: "sprintf" [drivers/acpi/ec_sys.ko] undefined!
ERROR: "debugfs_create_dir" [drivers/acpi/ec_sys.ko] undefined!
ERROR: "first_ec" [drivers/acpi/ec_sys.ko] undefined!
ERROR: "__put_user_1" [drivers/acpi/ec_sys.ko] undefined!
ERROR: "ec_read" [drivers/acpi/ec_sys.ko] undefined!
ERROR: "__get_user_1" [drivers/acpi/ec_sys.ko] undefined!
ERROR: "__might_fault" [drivers/acpi/ec_sys.ko] undefined!
ERROR: "ec_write" [drivers/acpi/ec_sys.ko] undefined!
ERROR: "param_ops_uint" [drivers/acpi/battery.ko] undefined!
ERROR: "acpi_bus_unregister_driver" [drivers/acpi/battery.ko] undefined!
ERROR: "async_synchronize_cookie" [drivers/acpi/battery.ko] undefined!
ERROR: "async_schedule_node" [drivers/acpi/battery.ko] undefined!
ERROR: "acpi_disabled" [drivers/acpi/battery.ko] undefined!
ERROR: "register_pm_notifier" [drivers/acpi/battery.ko] undefined!
ERROR: "msleep" [drivers/acpi/battery.ko] undefined!
ERROR: "__mutex_init" [drivers/acpi/battery.ko] undefined!
ERROR: "strcpy" [drivers/acpi/battery.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/acpi/battery.ko] undefined!
ERROR: "kmalloc_caches" [drivers/acpi/battery.ko] undefined!
ERROR: "power_supply_changed" [drivers/acpi/battery.ko] undefined!
ERROR: "acpi_notifier_call_chain" [drivers/acpi/battery.ko] undefined!
ERROR: "acpi_bus_generate_netlink_event" [drivers/acpi/battery.ko] undefined!
ERROR: "acpi_pm_wakeup_event" [drivers/acpi/battery.ko] undefined!
ERROR: "acpi_bus_get_status" [drivers/acpi/battery.ko] undefined!
ERROR: "mutex_destroy" [drivers/acpi/battery.ko] undefined!
ERROR: "unregister_pm_notifier" [drivers/acpi/battery.ko] undefined!
ERROR: "device_init_wakeup" [drivers/acpi/battery.ko] undefined!
ERROR: "power_supply_is_system_supplied" [drivers/acpi/battery.ko] undefined!
ERROR: "strncasecmp" [drivers/acpi/battery.ko] undefined!
ERROR: "strcasecmp" [drivers/acpi/battery.ko] undefined!
ERROR: "device_create_file" [drivers/acpi/battery.ko] undefined!
ERROR: "__list_add_valid" [drivers/acpi/battery.ko] undefined!
ERROR: "power_supply_register_no_ws" [drivers/acpi/battery.ko] undefined!
ERROR: "acpi_exception" [drivers/acpi/battery.ko] undefined!
ERROR: "kfree" [drivers/acpi/battery.ko] undefined!
ERROR: "acpi_evaluate_object" [drivers/acpi/battery.ko] undefined!
ERROR: "__msecs_to_jiffies" [drivers/acpi/battery.ko] undefined!
ERROR: "jiffies" [drivers/acpi/battery.ko] undefined!
ERROR: "acpi_has_method" [drivers/acpi/battery.ko] undefined!
ERROR: "strncpy" [drivers/acpi/battery.ko] undefined!
ERROR: "sprintf" [drivers/acpi/battery.ko] undefined!
ERROR: "sscanf" [drivers/acpi/battery.ko] undefined!
ERROR: "power_supply_get_drvdata" [drivers/acpi/battery.ko] undefined!
ERROR: "acpi_debug_print" [drivers/acpi/battery.ko] undefined!
ERROR: "acpi_dbg_layer" [drivers/acpi/battery.ko] undefined!
ERROR: "acpi_dbg_level" [drivers/acpi/battery.ko] undefined!
ERROR: "acpi_execute_simple_method" [drivers/acpi/battery.ko] undefined!
ERROR: "power_supply_unregister" [drivers/acpi/battery.ko] undefined!
ERROR: "device_remove_file" [drivers/acpi/battery.ko] undefined!
ERROR: "acpi_bus_register_driver" [drivers/acpi/battery.ko] undefined!
ERROR: "acpi_dev_present" [drivers/acpi/battery.ko] undefined!
ERROR: "printk" [drivers/acpi/battery.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/acpi/battery.ko] undefined!
ERROR: "mutex_unlock" [drivers/acpi/battery.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/acpi/battery.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/acpi/battery.ko] undefined!
ERROR: "acpi_bus_register_driver" [drivers/acpi/video.ko] undefined!
ERROR: "system_wq" [drivers/acpi/video.ko] undefined!
ERROR: "kmalloc_caches" [drivers/acpi/video.ko] undefined!
ERROR: "__kmalloc" [drivers/acpi/video.ko] undefined!
ERROR: "acpi_remove_notify_handler" [drivers/acpi/video.ko] undefined!
ERROR: "param_ops_int" [drivers/acpi/video.ko] undefined!
ERROR: "acpi_evaluate_integer" [drivers/acpi/video.ko] undefined!
ERROR: "backlight_unregister_notifier" [drivers/acpi/video.ko] undefined!
ERROR: "acpi_install_notify_handler" [drivers/acpi/video.ko] undefined!
ERROR: "thermal_cooling_device_unregister" [drivers/acpi/video.ko] undefined!
ERROR: "backlight_device_register" [drivers/acpi/video.ko] undefined!
ERROR: "acpi_debug_print" [drivers/acpi/video.ko] undefined!
ERROR: "acpi_bus_get_device" [drivers/acpi/video.ko] undefined!
ERROR: "delayed_work_timer_fn" [drivers/acpi/video.ko] undefined!
ERROR: "acpi_evaluate_object" [drivers/acpi/video.ko] undefined!
ERROR: "acpi_bus_unregister_driver" [drivers/acpi/video.ko] undefined!
ERROR: "param_ops_bool" [drivers/acpi/video.ko] undefined!
ERROR: "init_timer_key" [drivers/acpi/video.ko] undefined!
ERROR: "mutex_unlock" [drivers/acpi/video.ko] undefined!
ERROR: "acpi_notifier_call_chain" [drivers/acpi/video.ko] undefined!
ERROR: "strcmp" [drivers/acpi/video.ko] undefined!
ERROR: "kasprintf" [drivers/acpi/video.ko] undefined!
ERROR: "acpi_match_device_ids" [drivers/acpi/video.ko] undefined!
ERROR: "input_event" [drivers/acpi/video.ko] undefined!
ERROR: "acpi_is_video_device" [drivers/acpi/video.ko] undefined!
ERROR: "backlight_device_get_by_type" [drivers/acpi/video.ko] undefined!
ERROR: "acpi_dbg_layer" [drivers/acpi/video.ko] undefined!
ERROR: "cancel_delayed_work" [drivers/acpi/video.ko] undefined!
ERROR: "__mutex_init" [drivers/acpi/video.ko] undefined!
ERROR: "printk" [drivers/acpi/video.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/acpi/video.ko] undefined!
ERROR: "acpi_get_pci_dev" [drivers/acpi/video.ko] undefined!
ERROR: "register_pm_notifier" [drivers/acpi/video.ko] undefined!
ERROR: "acpi_execute_simple_method" [drivers/acpi/video.ko] undefined!
ERROR: "acpi_disabled" [drivers/acpi/video.ko] undefined!
ERROR: "sysfs_remove_link" [drivers/acpi/video.ko] undefined!
ERROR: "sort" [drivers/acpi/video.ko] undefined!
ERROR: "_dev_err" [drivers/acpi/video.ko] undefined!
ERROR: "__list_add_valid" [drivers/acpi/video.ko] undefined!
ERROR: "acpi_video_backlight_string" [drivers/acpi/video.ko] undefined!
ERROR: "sysfs_create_link" [drivers/acpi/video.ko] undefined!
ERROR: "_dev_info" [drivers/acpi/video.ko] undefined!
ERROR: "queue_delayed_work_on" [drivers/acpi/video.ko] undefined!
ERROR: "input_register_device" [drivers/acpi/video.ko] undefined!
ERROR: "input_free_device" [drivers/acpi/video.ko] undefined!
ERROR: "pci_read_config_dword" [drivers/acpi/video.ko] undefined!
ERROR: "backlight_register_notifier" [drivers/acpi/video.ko] undefined!
ERROR: "acpi_osi_is_win8" [drivers/acpi/video.ko] undefined!
ERROR: "acpi_dbg_level" [drivers/acpi/video.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/acpi/video.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/acpi/video.ko] undefined!
ERROR: "acpi_warning" [drivers/acpi/video.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/acpi/video.ko] undefined!
ERROR: "thermal_cooling_device_register" [drivers/acpi/video.ko] undefined!
ERROR: "kfree" [drivers/acpi/video.ko] undefined!
ERROR: "input_unregister_device" [drivers/acpi/video.ko] undefined!
ERROR: "unregister_pm_notifier" [drivers/acpi/video.ko] undefined!
ERROR: "acpi_error" [drivers/acpi/video.ko] undefined!
ERROR: "acpi_get_parent" [drivers/acpi/video.ko] undefined!
ERROR: "lockdep_init_map" [drivers/acpi/video.ko] undefined!
ERROR: "pci_get_device" [drivers/acpi/video.ko] undefined!
ERROR: "pci_dev_put" [drivers/acpi/video.ko] undefined!
ERROR: "queue_work_on" [drivers/acpi/video.ko] undefined!
ERROR: "snprintf" [drivers/acpi/video.ko] undefined!
ERROR: "backlight_force_update" [drivers/acpi/video.ko] undefined!
ERROR: "acpi_walk_namespace" [drivers/acpi/video.ko] undefined!
ERROR: "acpi_exception" [drivers/acpi/video.ko] undefined!
ERROR: "backlight_device_unregister" [drivers/acpi/video.ko] undefined!
ERROR: "acpi_has_method" [drivers/acpi/video.ko] undefined!
ERROR: "acpi_device_hid" [drivers/acpi/video.ko] undefined!
ERROR: "strcpy" [drivers/acpi/video.ko] undefined!
ERROR: "input_allocate_device" [drivers/acpi/video.ko] undefined!
ERROR: "acpi_bus_unregister_driver" [drivers/acpi/ac.ko] undefined!
ERROR: "acpi_bus_register_driver" [drivers/acpi/ac.ko] undefined!
ERROR: "acpi_dev_present" [drivers/acpi/ac.ko] undefined!
ERROR: "acpi_disabled" [drivers/acpi/ac.ko] undefined!
ERROR: "register_acpi_notifier" [drivers/acpi/ac.ko] undefined!
ERROR: "printk" [drivers/acpi/ac.ko] undefined!
ERROR: "power_supply_register" [drivers/acpi/ac.ko] undefined!
ERROR: "strcpy" [drivers/acpi/ac.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/acpi/ac.ko] undefined!
ERROR: "kmalloc_caches" [drivers/acpi/ac.ko] undefined!
ERROR: "power_supply_get_drvdata" [drivers/acpi/ac.ko] undefined!
ERROR: "strcmp" [drivers/acpi/ac.ko] undefined!
ERROR: "kfree" [drivers/acpi/ac.ko] undefined!
ERROR: "unregister_acpi_notifier" [drivers/acpi/ac.ko] undefined!
ERROR: "power_supply_unregister" [drivers/acpi/ac.ko] undefined!
ERROR: "acpi_debug_print" [drivers/acpi/ac.ko] undefined!
ERROR: "acpi_notifier_call_chain" [drivers/acpi/ac.ko] undefined!
ERROR: "acpi_bus_generate_netlink_event" [drivers/acpi/ac.ko] undefined!
ERROR: "acpi_dbg_layer" [drivers/acpi/ac.ko] undefined!
ERROR: "acpi_dbg_level" [drivers/acpi/ac.ko] undefined!
ERROR: "kobject_uevent" [drivers/acpi/ac.ko] undefined!
ERROR: "acpi_exception" [drivers/acpi/ac.ko] undefined!
ERROR: "acpi_evaluate_integer" [drivers/acpi/ac.ko] undefined!
ERROR: "no_llseek" [drivers/acpi/apei/erst-dbg.ko] undefined!
ERROR: "misc_deregister" [drivers/acpi/apei/erst-dbg.ko] undefined!
ERROR: "misc_register" [drivers/acpi/apei/erst-dbg.ko] undefined!
ERROR: "_copy_to_user" [drivers/acpi/apei/erst-dbg.ko] undefined!
ERROR: "erst_read" [drivers/acpi/apei/erst-dbg.ko] undefined!
ERROR: "erst_get_record_id_next" [drivers/acpi/apei/erst-dbg.ko] undefined!
ERROR: "printk" [drivers/acpi/apei/erst-dbg.ko] undefined!
ERROR: "erst_write" [drivers/acpi/apei/erst-dbg.ko] undefined!
ERROR: "kfree" [drivers/acpi/apei/erst-dbg.ko] undefined!
ERROR: "__kmalloc" [drivers/acpi/apei/erst-dbg.ko] undefined!
ERROR: "mutex_unlock" [drivers/acpi/apei/erst-dbg.ko] undefined!
ERROR: "mutex_lock_interruptible_nested" [drivers/acpi/apei/erst-dbg.ko] undefined!
ERROR: "capable" [drivers/acpi/apei/erst-dbg.ko] undefined!
ERROR: "erst_clear" [drivers/acpi/apei/erst-dbg.ko] undefined!
ERROR: "_copy_from_user" [drivers/acpi/apei/erst-dbg.ko] undefined!
ERROR: "__put_user_4" [drivers/acpi/apei/erst-dbg.ko] undefined!
ERROR: "__might_fault" [drivers/acpi/apei/erst-dbg.ko] undefined!
ERROR: "erst_get_record_count" [drivers/acpi/apei/erst-dbg.ko] undefined!
ERROR: "nonseekable_open" [drivers/acpi/apei/erst-dbg.ko] undefined!
ERROR: "erst_get_record_id_begin" [drivers/acpi/apei/erst-dbg.ko] undefined!
ERROR: "erst_disable" [drivers/acpi/apei/erst-dbg.ko] undefined!
ERROR: "erst_get_record_id_end" [drivers/acpi/apei/erst-dbg.ko] undefined!
ERROR: "param_ops_ulong" [drivers/video/fbdev/vfb.ko] undefined!
ERROR: "param_ops_charp" [drivers/video/fbdev/vfb.ko] undefined!
ERROR: "param_ops_bool" [drivers/video/fbdev/vfb.ko] undefined!
ERROR: "sys_imageblit" [drivers/video/fbdev/vfb.ko] undefined!
ERROR: "sys_copyarea" [drivers/video/fbdev/vfb.ko] undefined!
ERROR: "sys_fillrect" [drivers/video/fbdev/vfb.ko] undefined!
ERROR: "fb_sys_write" [drivers/video/fbdev/vfb.ko] undefined!
ERROR: "fb_sys_read" [drivers/video/fbdev/vfb.ko] undefined!
ERROR: "platform_device_unregister" [drivers/video/fbdev/vfb.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/video/fbdev/vfb.ko] undefined!
ERROR: "platform_device_put" [drivers/video/fbdev/vfb.ko] undefined!
ERROR: "platform_device_add" [drivers/video/fbdev/vfb.ko] undefined!
ERROR: "platform_device_alloc" [drivers/video/fbdev/vfb.ko] undefined!
ERROR: "__platform_driver_register" [drivers/video/fbdev/vfb.ko] undefined!
ERROR: "remap_vmalloc_range" [drivers/video/fbdev/vfb.ko] undefined!
ERROR: "printk" [drivers/video/fbdev/vfb.ko] undefined!
ERROR: "register_framebuffer" [drivers/video/fbdev/vfb.ko] undefined!
ERROR: "fb_alloc_cmap" [drivers/video/fbdev/vfb.ko] undefined!
ERROR: "fb_find_mode" [drivers/video/fbdev/vfb.ko] undefined!
ERROR: "framebuffer_alloc" [drivers/video/fbdev/vfb.ko] undefined!
ERROR: "vmalloc_32_user" [drivers/video/fbdev/vfb.ko] undefined!
ERROR: "framebuffer_release" [drivers/video/fbdev/vfb.ko] undefined!
ERROR: "fb_dealloc_cmap" [drivers/video/fbdev/vfb.ko] undefined!
ERROR: "vfree" [drivers/video/fbdev/vfb.ko] undefined!
ERROR: "unregister_framebuffer" [drivers/video/fbdev/vfb.ko] undefined!
ERROR: "param_ops_uint" [drivers/video/fbdev/ssd1307fb.ko] undefined!
ERROR: "fb_sys_read" [drivers/video/fbdev/ssd1307fb.ko] undefined!
ERROR: "i2c_del_driver" [drivers/video/fbdev/ssd1307fb.ko] undefined!
ERROR: "i2c_register_driver" [drivers/video/fbdev/ssd1307fb.ko] undefined!
ERROR: "_dev_info" [drivers/video/fbdev/ssd1307fb.ko] undefined!
ERROR: "_dev_warn" [drivers/video/fbdev/ssd1307fb.ko] undefined!
ERROR: "regulator_disable" [drivers/video/fbdev/ssd1307fb.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/video/fbdev/ssd1307fb.ko] undefined!
ERROR: "backlight_device_register" [drivers/video/fbdev/ssd1307fb.ko] undefined!
ERROR: "snprintf" [drivers/video/fbdev/ssd1307fb.ko] undefined!
ERROR: "register_framebuffer" [drivers/video/fbdev/ssd1307fb.ko] undefined!
ERROR: "pwm_get" [drivers/video/fbdev/ssd1307fb.ko] undefined!
ERROR: "regulator_enable" [drivers/video/fbdev/ssd1307fb.ko] undefined!
ERROR: "__const_udelay" [drivers/video/fbdev/ssd1307fb.ko] undefined!
ERROR: "gpiod_set_value_cansleep" [drivers/video/fbdev/ssd1307fb.ko] undefined!
ERROR: "fb_deferred_io_init" [drivers/video/fbdev/ssd1307fb.ko] undefined!
ERROR: "__phys_addr" [drivers/video/fbdev/ssd1307fb.ko] undefined!
ERROR: "devm_kmalloc" [drivers/video/fbdev/ssd1307fb.ko] undefined!
ERROR: "__get_free_pages" [drivers/video/fbdev/ssd1307fb.ko] undefined!
ERROR: "of_find_property" [drivers/video/fbdev/ssd1307fb.ko] undefined!
ERROR: "of_property_read_variable_u8_array" [drivers/video/fbdev/ssd1307fb.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/video/fbdev/ssd1307fb.ko] undefined!
ERROR: "devm_regulator_get_optional" [drivers/video/fbdev/ssd1307fb.ko] undefined!
ERROR: "devm_gpiod_get_optional" [drivers/video/fbdev/ssd1307fb.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/video/fbdev/ssd1307fb.ko] undefined!
ERROR: "framebuffer_alloc" [drivers/video/fbdev/ssd1307fb.ko] undefined!
ERROR: "pwm_put" [drivers/video/fbdev/ssd1307fb.ko] undefined!
ERROR: "pwm_apply_state" [drivers/video/fbdev/ssd1307fb.ko] undefined!
ERROR: "framebuffer_release" [drivers/video/fbdev/ssd1307fb.ko] undefined!
ERROR: "__free_pages" [drivers/video/fbdev/ssd1307fb.ko] undefined!
ERROR: "fb_deferred_io_cleanup" [drivers/video/fbdev/ssd1307fb.ko] undefined!
ERROR: "unregister_framebuffer" [drivers/video/fbdev/ssd1307fb.ko] undefined!
ERROR: "backlight_device_unregister" [drivers/video/fbdev/ssd1307fb.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/video/fbdev/ssd1307fb.ko] undefined!
ERROR: "kmalloc_caches" [drivers/video/fbdev/ssd1307fb.ko] undefined!
ERROR: "sys_fillrect" [drivers/video/fbdev/ssd1307fb.ko] undefined!
ERROR: "sys_copyarea" [drivers/video/fbdev/ssd1307fb.ko] undefined!
ERROR: "sys_imageblit" [drivers/video/fbdev/ssd1307fb.ko] undefined!
ERROR: "_copy_from_user" [drivers/video/fbdev/ssd1307fb.ko] undefined!
ERROR: "_dev_err" [drivers/video/fbdev/ssd1307fb.ko] undefined!
ERROR: "kfree" [drivers/video/fbdev/ssd1307fb.ko] undefined!
ERROR: "i2c_transfer_buffer_flags" [drivers/video/fbdev/ssd1307fb.ko] undefined!
ERROR: "__kmalloc" [drivers/video/fbdev/ssd1307fb.ko] undefined!
ERROR: "cfb_imageblit" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "cfb_copyarea" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "cfb_fillrect" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "__platform_driver_register" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "fb_var_to_videomode" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "clk_set_rate" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "cpufreq_register_notifier" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "register_framebuffer" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "fb_set_var" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "_dev_warn" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "fb_alloc_cmap" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "platform_get_irq" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "dmam_alloc_attrs" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "lcm" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "fb_videomode_to_var" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "devm_regulator_get_optional" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "clk_get_rate" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "framebuffer_alloc" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "devm_clk_get" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "devm_platform_ioremap_resource" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "_dev_info" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "_dev_err" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "strcmp" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "clk_round_rate" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "_copy_from_user" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "__wake_up" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "framebuffer_release" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "fb_dealloc_cmap" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "unregister_framebuffer" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "cpufreq_unregister_notifier" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "__pm_runtime_idle" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "regulator_disable" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "printk" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "schedule_timeout" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "finish_wait" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "init_wait_entry" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "__might_sleep" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "console_unlock" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "fb_set_suspend" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "regulator_enable" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "console_lock" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "__const_udelay" [drivers/video/fbdev/da8xx-fb.ko] undefined!
ERROR: "device_remove_file" [drivers/video/fbdev/mb862xx/mb862xxfb.ko] undefined!
ERROR: "__kmalloc" [drivers/video/fbdev/mb862xx/mb862xxfb.ko] undefined!
ERROR: "framebuffer_release" [drivers/video/fbdev/mb862xx/mb862xxfb.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/video/fbdev/mb862xx/mb862xxfb.ko] undefined!
ERROR: "pci_disable_device" [drivers/video/fbdev/mb862xx/mb862xxfb.ko] undefined!
ERROR: "__const_udelay" [drivers/video/fbdev/mb862xx/mb862xxfb.ko] undefined!
ERROR: "pci_release_regions" [drivers/video/fbdev/mb862xx/mb862xxfb.ko] undefined!
ERROR: "cfb_fillrect" [drivers/video/fbdev/mb862xx/mb862xxfb.ko] undefined!
ERROR: "sprintf" [drivers/video/fbdev/mb862xx/mb862xxfb.ko] undefined!
ERROR: "i2c_add_adapter" [drivers/video/fbdev/mb862xx/mb862xxfb.ko] undefined!
ERROR: "_copy_to_user" [drivers/video/fbdev/mb862xx/mb862xxfb.ko] undefined!
ERROR: "cfb_imageblit" [drivers/video/fbdev/mb862xx/mb862xxfb.ko] undefined!
ERROR: "fb_alloc_cmap" [drivers/video/fbdev/mb862xx/mb862xxfb.ko] undefined!
ERROR: "ioremap" [drivers/video/fbdev/mb862xx/mb862xxfb.ko] undefined!
ERROR: "register_framebuffer" [drivers/video/fbdev/mb862xx/mb862xxfb.ko] undefined!
ERROR: "request_threaded_irq" [drivers/video/fbdev/mb862xx/mb862xxfb.ko] undefined!
ERROR: "_dev_err" [drivers/video/fbdev/mb862xx/mb862xxfb.ko] undefined!
ERROR: "device_create_file" [drivers/video/fbdev/mb862xx/mb862xxfb.ko] undefined!
ERROR: "fb_dealloc_cmap" [drivers/video/fbdev/mb862xx/mb862xxfb.ko] undefined!
ERROR: "i2c_del_adapter" [drivers/video/fbdev/mb862xx/mb862xxfb.ko] undefined!
ERROR: "_dev_info" [drivers/video/fbdev/mb862xx/mb862xxfb.ko] undefined!
ERROR: "fb_find_mode" [drivers/video/fbdev/mb862xx/mb862xxfb.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/video/fbdev/mb862xx/mb862xxfb.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/video/fbdev/mb862xx/mb862xxfb.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/video/fbdev/mb862xx/mb862xxfb.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/video/fbdev/mb862xx/mb862xxfb.ko] undefined!
ERROR: "framebuffer_alloc" [drivers/video/fbdev/mb862xx/mb862xxfb.ko] undefined!
ERROR: "kfree" [drivers/video/fbdev/mb862xx/mb862xxfb.ko] undefined!
ERROR: "pci_request_regions" [drivers/video/fbdev/mb862xx/mb862xxfb.ko] undefined!
ERROR: "iounmap" [drivers/video/fbdev/mb862xx/mb862xxfb.ko] undefined!
ERROR: "__pci_register_driver" [drivers/video/fbdev/mb862xx/mb862xxfb.ko] undefined!
ERROR: "cfb_copyarea" [drivers/video/fbdev/mb862xx/mb862xxfb.ko] undefined!
ERROR: "pci_enable_device" [drivers/video/fbdev/mb862xx/mb862xxfb.ko] undefined!
ERROR: "_copy_from_user" [drivers/video/fbdev/mb862xx/mb862xxfb.ko] undefined!
ERROR: "free_irq" [drivers/video/fbdev/mb862xx/mb862xxfb.ko] undefined!
ERROR: "fb_videomode_to_var" [drivers/video/fbdev/mb862xx/mb862xxfb.ko] undefined!
ERROR: "strcpy" [drivers/video/fbdev/mb862xx/mb862xxfb.ko] undefined!
ERROR: "unregister_framebuffer" [drivers/video/fbdev/mb862xx/mb862xxfb.ko] undefined!
ERROR: "fb_sys_read" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "param_ops_bool" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "usb_deregister" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "usb_register_driver" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "_dev_err" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "_dev_info" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "vmalloc" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "fb_find_nearest_mode" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "vesa_modes" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "register_framebuffer" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "mutex_unlock" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "fb_videomode_to_var" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "fb_find_best_display" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "fb_add_videomode" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "fb_edid_to_monspecs" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "fb_alloc_cmap" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "framebuffer_alloc" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "usb_alloc_coherent" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "usb_alloc_urb" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "init_timer_key" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "delayed_work_timer_fn" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "lockdep_init_map" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "fb_deferred_io_cleanup" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "fb_dealloc_cmap" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "framebuffer_release" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "fb_destroy_modelist" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "vfree" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "fb_destroy_modedb" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "unregister_framebuffer" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "refcount_warn_saturate" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "fb_deferred_io_init" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "msleep" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "fb_var_to_videomode" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "fb_sys_write" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "usb_control_msg" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "kmalloc_caches" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "sys_fillrect" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "sys_copyarea" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "sys_imageblit" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "_copy_to_user" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "usb_submit_urb" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "down_timeout" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "printk" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "queue_delayed_work_on" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "system_wq" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "__list_add_valid" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "up" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "remap_pfn_range" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "vmalloc_to_pfn" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "down_interruptible" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "usb_free_urb" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "usb_free_coherent" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "kfree" [drivers/video/fbdev/smscufx.ko] undefined!
ERROR: "param_ops_bool" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "param_ops_int" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "usb_deregister" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "usb_register_driver" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "device_create_bin_file" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "device_create_file" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "register_framebuffer" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "kmemdup" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "fb_alloc_cmap" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "usb_alloc_coherent" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "usb_alloc_urb" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "lockdep_init_map" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "__mutex_init" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "fb_sys_read" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "framebuffer_alloc" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "__usb_get_extra_descriptor" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "usb_get_descriptor" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "usb_get_dev" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "fb_find_nearest_mode" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "vesa_modes" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "fb_videomode_to_var" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "fb_find_best_display" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "fb_add_videomode" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "fb_edid_to_monspecs" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "usb_control_msg" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "fb_dealloc_cmap" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "framebuffer_release" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "usb_put_dev" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "fb_destroy_modelist" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "vfree" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "fb_destroy_modedb" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "mutex_destroy" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "cancel_work_sync" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "fb_var_to_videomode" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "fb_deferred_io_init" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "fb_deferred_io_cleanup" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "fb_sys_write" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "sys_fillrect" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "sys_copyarea" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "sys_imageblit" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "queue_work_on" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "system_wq" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "_copy_from_user" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "_copy_to_user" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "remap_pfn_range" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "vmalloc_to_pfn" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "unregister_framebuffer" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "device_remove_bin_file" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "device_remove_file" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "kfree" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "usb_free_urb" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "usb_free_coherent" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "down" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "snprintf" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "_dev_info" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "vzalloc" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "vmalloc" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "memcmp" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "mutex_unlock" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "usb_submit_urb" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "_dev_err" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "up" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "_dev_warn" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "_raw_spin_unlock_irq" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "_raw_spin_lock_irq" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "down_timeout" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "__list_add_valid" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "kmalloc_caches" [drivers/video/fbdev/udlfb.ko] undefined!
ERROR: "cfb_imageblit" [drivers/video/fbdev/s3c-fb.ko] undefined!
ERROR: "cfb_copyarea" [drivers/video/fbdev/s3c-fb.ko] undefined!
ERROR: "cfb_fillrect" [drivers/video/fbdev/s3c-fb.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/video/fbdev/s3c-fb.ko] undefined!
ERROR: "__platform_driver_register" [drivers/video/fbdev/s3c-fb.ko] undefined!
ERROR: "_dev_info" [drivers/video/fbdev/s3c-fb.ko] undefined!
ERROR: "register_framebuffer" [drivers/video/fbdev/s3c-fb.ko] undefined!
ERROR: "fb_set_cmap" [drivers/video/fbdev/s3c-fb.ko] undefined!
ERROR: "fb_alloc_cmap" [drivers/video/fbdev/s3c-fb.ko] undefined!
ERROR: "fb_videomode_to_var" [drivers/video/fbdev/s3c-fb.ko] undefined!
ERROR: "dma_alloc_attrs" [drivers/video/fbdev/s3c-fb.ko] undefined!
ERROR: "framebuffer_alloc" [drivers/video/fbdev/s3c-fb.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/video/fbdev/s3c-fb.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/video/fbdev/s3c-fb.ko] undefined!
ERROR: "platform_get_resource" [drivers/video/fbdev/s3c-fb.ko] undefined!
ERROR: "devm_platform_ioremap_resource" [drivers/video/fbdev/s3c-fb.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/video/fbdev/s3c-fb.ko] undefined!
ERROR: "devm_clk_get" [drivers/video/fbdev/s3c-fb.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/video/fbdev/s3c-fb.ko] undefined!
ERROR: "devm_kmalloc" [drivers/video/fbdev/s3c-fb.ko] undefined!
ERROR: "clk_enable" [drivers/video/fbdev/s3c-fb.ko] undefined!
ERROR: "__x86_indirect_thunk_eax" [drivers/video/fbdev/s3c-fb.ko] undefined!
ERROR: "clk_prepare" [drivers/video/fbdev/s3c-fb.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/video/fbdev/s3c-fb.ko] undefined!
ERROR: "fb_dealloc_cmap" [drivers/video/fbdev/s3c-fb.ko] undefined!
ERROR: "framebuffer_release" [drivers/video/fbdev/s3c-fb.ko] undefined!
ERROR: "dma_free_attrs" [drivers/video/fbdev/s3c-fb.ko] undefined!
ERROR: "unregister_framebuffer" [drivers/video/fbdev/s3c-fb.ko] undefined!
ERROR: "schedule_timeout" [drivers/video/fbdev/s3c-fb.ko] undefined!
ERROR: "finish_wait" [drivers/video/fbdev/s3c-fb.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/video/fbdev/s3c-fb.ko] undefined!
ERROR: "init_wait_entry" [drivers/video/fbdev/s3c-fb.ko] undefined!
ERROR: "__might_sleep" [drivers/video/fbdev/s3c-fb.ko] undefined!
ERROR: "__get_user_4" [drivers/video/fbdev/s3c-fb.ko] undefined!
ERROR: "__might_fault" [drivers/video/fbdev/s3c-fb.ko] undefined!
ERROR: "__wake_up" [drivers/video/fbdev/s3c-fb.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/video/fbdev/s3c-fb.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/video/fbdev/s3c-fb.ko] undefined!
ERROR: "_dev_err" [drivers/video/fbdev/s3c-fb.ko] undefined!
ERROR: "__pm_runtime_idle" [drivers/video/fbdev/s3c-fb.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/video/fbdev/s3c-fb.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/video/fbdev/s3c-fb.ko] undefined!
ERROR: "clk_get_rate" [drivers/video/fbdev/s3c-fb.ko] undefined!
ERROR: "clk_unprepare" [drivers/video/fbdev/s3c-fb.ko] undefined!
ERROR: "clk_disable" [drivers/video/fbdev/s3c-fb.ko] undefined!
ERROR: "fb_sys_read" [drivers/video/fbdev/broadsheetfb.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/video/fbdev/broadsheetfb.ko] undefined!
ERROR: "__platform_driver_register" [drivers/video/fbdev/broadsheetfb.ko] undefined!
ERROR: "release_firmware" [drivers/video/fbdev/broadsheetfb.ko] undefined!
ERROR: "kfree" [drivers/video/fbdev/broadsheetfb.ko] undefined!
ERROR: "__kmalloc" [drivers/video/fbdev/broadsheetfb.ko] undefined!
ERROR: "request_firmware" [drivers/video/fbdev/broadsheetfb.ko] undefined!
ERROR: "_dev_warn" [drivers/video/fbdev/broadsheetfb.ko] undefined!
ERROR: "_dev_err" [drivers/video/fbdev/broadsheetfb.ko] undefined!
ERROR: "printk" [drivers/video/fbdev/broadsheetfb.ko] undefined!
ERROR: "device_create_file" [drivers/video/fbdev/broadsheetfb.ko] undefined!
ERROR: "register_framebuffer" [drivers/video/fbdev/broadsheetfb.ko] undefined!
ERROR: "msleep" [drivers/video/fbdev/broadsheetfb.ko] undefined!
ERROR: "_dev_info" [drivers/video/fbdev/broadsheetfb.ko] undefined!
ERROR: "fb_alloc_cmap" [drivers/video/fbdev/broadsheetfb.ko] undefined!
ERROR: "fb_deferred_io_init" [drivers/video/fbdev/broadsheetfb.ko] undefined!
ERROR: "__mutex_init" [drivers/video/fbdev/broadsheetfb.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/video/fbdev/broadsheetfb.ko] undefined!
ERROR: "vzalloc" [drivers/video/fbdev/broadsheetfb.ko] undefined!
ERROR: "__x86_indirect_thunk_eax" [drivers/video/fbdev/broadsheetfb.ko] undefined!
ERROR: "framebuffer_alloc" [drivers/video/fbdev/broadsheetfb.ko] undefined!
ERROR: "__const_udelay" [drivers/video/fbdev/broadsheetfb.ko] undefined!
ERROR: "_copy_from_user" [drivers/video/fbdev/broadsheetfb.ko] undefined!
ERROR: "sys_fillrect" [drivers/video/fbdev/broadsheetfb.ko] undefined!
ERROR: "sys_copyarea" [drivers/video/fbdev/broadsheetfb.ko] undefined!
ERROR: "sys_imageblit" [drivers/video/fbdev/broadsheetfb.ko] undefined!
ERROR: "mutex_unlock" [drivers/video/fbdev/broadsheetfb.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/video/fbdev/broadsheetfb.ko] undefined!
ERROR: "framebuffer_release" [drivers/video/fbdev/broadsheetfb.ko] undefined!
ERROR: "vfree" [drivers/video/fbdev/broadsheetfb.ko] undefined!
ERROR: "fb_dealloc_cmap" [drivers/video/fbdev/broadsheetfb.ko] undefined!
ERROR: "fb_deferred_io_cleanup" [drivers/video/fbdev/broadsheetfb.ko] undefined!
ERROR: "unregister_framebuffer" [drivers/video/fbdev/broadsheetfb.ko] undefined!
ERROR: "device_remove_file" [drivers/video/fbdev/broadsheetfb.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/video/fbdev/broadsheetfb.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/video/fbdev/broadsheetfb.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/video/fbdev/broadsheetfb.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/video/fbdev/broadsheetfb.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/video/fbdev/broadsheetfb.ko] undefined!
ERROR: "cfb_imageblit" [drivers/video/fbdev/sstfb.ko] undefined!
ERROR: "cfb_copyarea" [drivers/video/fbdev/sstfb.ko] undefined!
ERROR: "cfb_fillrect" [drivers/video/fbdev/sstfb.ko] undefined!
ERROR: "param_ops_int" [drivers/video/fbdev/sstfb.ko] undefined!
ERROR: "param_ops_bool" [drivers/video/fbdev/sstfb.ko] undefined!
ERROR: "param_ops_charp" [drivers/video/fbdev/sstfb.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/video/fbdev/sstfb.ko] undefined!
ERROR: "strncmp" [drivers/video/fbdev/sstfb.ko] undefined!
ERROR: "__pci_register_driver" [drivers/video/fbdev/sstfb.ko] undefined!
ERROR: "strcmp" [drivers/video/fbdev/sstfb.ko] undefined!
ERROR: "strsep" [drivers/video/fbdev/sstfb.ko] undefined!
ERROR: "fb_get_options" [drivers/video/fbdev/sstfb.ko] undefined!
ERROR: "device_create_file" [drivers/video/fbdev/sstfb.ko] undefined!
ERROR: "memset_io" [drivers/video/fbdev/sstfb.ko] undefined!
ERROR: "register_framebuffer" [drivers/video/fbdev/sstfb.ko] undefined!
ERROR: "fb_alloc_cmap" [drivers/video/fbdev/sstfb.ko] undefined!
ERROR: "fb_find_mode" [drivers/video/fbdev/sstfb.ko] undefined!
ERROR: "strlcpy" [drivers/video/fbdev/sstfb.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/video/fbdev/sstfb.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/video/fbdev/sstfb.ko] undefined!
ERROR: "ioremap" [drivers/video/fbdev/sstfb.ko] undefined!
ERROR: "__request_region" [drivers/video/fbdev/sstfb.ko] undefined!
ERROR: "framebuffer_alloc" [drivers/video/fbdev/sstfb.ko] undefined!
ERROR: "pci_enable_device" [drivers/video/fbdev/sstfb.ko] undefined!
ERROR: "__const_udelay" [drivers/video/fbdev/sstfb.ko] undefined!
ERROR: "_copy_from_user" [drivers/video/fbdev/sstfb.ko] undefined!
ERROR: "_copy_to_user" [drivers/video/fbdev/sstfb.ko] undefined!
ERROR: "snprintf" [drivers/video/fbdev/sstfb.ko] undefined!
ERROR: "simple_strtoul" [drivers/video/fbdev/sstfb.ko] undefined!
ERROR: "printk" [drivers/video/fbdev/sstfb.ko] undefined!
ERROR: "pci_read_config_dword" [drivers/video/fbdev/sstfb.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/video/fbdev/sstfb.ko] undefined!
ERROR: "framebuffer_release" [drivers/video/fbdev/sstfb.ko] undefined!
ERROR: "unregister_framebuffer" [drivers/video/fbdev/sstfb.ko] undefined!
ERROR: "fb_dealloc_cmap" [drivers/video/fbdev/sstfb.ko] undefined!
ERROR: "__release_region" [drivers/video/fbdev/sstfb.ko] undefined!
ERROR: "iomem_resource" [drivers/video/fbdev/sstfb.ko] undefined!
ERROR: "iounmap" [drivers/video/fbdev/sstfb.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/video/fbdev/sstfb.ko] undefined!
ERROR: "pci_write_config_dword" [drivers/video/fbdev/sstfb.ko] undefined!
ERROR: "device_remove_file" [drivers/video/fbdev/sstfb.ko] undefined!
ERROR: "param_ops_charp" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "param_ops_int" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "svga_get_tilemax" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "svga_tileblit" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "svga_tilefill" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "svga_tilecopy" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "svga_get_caps" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "cfb_copyarea" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "__pci_register_driver" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "pci_set_master" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "pci_restore_state" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "svga_set_textmode_vga_regs" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "memset_io" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "svga_set_timings" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "svga_set_default_crt_regs" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "svga_set_default_seq_regs" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "svga_set_default_atc_regs" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "svga_set_default_gfx_regs" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "_dev_err" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "register_framebuffer" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "fb_alloc_cmap" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "fb_find_mode" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "strcpy" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "pcibios_bus_to_resource" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "pci_iomap_wc" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "kmalloc_caches" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "pci_request_regions" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "pci_enable_device" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "__mutex_init" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "framebuffer_alloc" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "pci_read_config_word" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "svga_compute_pll" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "kfree" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "save_vga" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "restore_vga" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "svga_check_timings" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "svga_match_format" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "cfb_fillrect" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "cfb_imageblit" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "framebuffer_release" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "pci_release_regions" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "pci_iounmap" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "fb_dealloc_cmap" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "unregister_framebuffer" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "console_unlock" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "mutex_unlock" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "pci_set_power_state" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "pci_choose_state" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "pci_disable_device" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "pci_save_state" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "fb_set_suspend" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "console_lock" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "_dev_info" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "svga_tilecursor" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "printk" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "svga_wcrt_multi" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "__x86_indirect_thunk_eax" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "pv_ops" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/video/fbdev/arkfb.ko] undefined!
ERROR: "printk" [drivers/video/fbdev/vermilion/crvml.ko] undefined!
ERROR: "ioremap" [drivers/video/fbdev/vermilion/crvml.ko] undefined!
ERROR: "vmlfb_unregister_subsys" [drivers/video/fbdev/vermilion/crvml.ko] undefined!
ERROR: "vmlfb_register_subsys" [drivers/video/fbdev/vermilion/crvml.ko] undefined!
ERROR: "pci_read_config_dword" [drivers/video/fbdev/vermilion/crvml.ko] undefined!
ERROR: "iounmap" [drivers/video/fbdev/vermilion/crvml.ko] undefined!
ERROR: "pci_get_device" [drivers/video/fbdev/vermilion/crvml.ko] undefined!
ERROR: "pci_dev_put" [drivers/video/fbdev/vermilion/crvml.ko] undefined!
ERROR: "iowrite32" [drivers/video/fbdev/vermilion/crvml.ko] undefined!
ERROR: "ioread32" [drivers/video/fbdev/vermilion/crvml.ko] undefined!
ERROR: "__request_region" [drivers/video/fbdev/vermilion/vmlfb.ko] undefined!
ERROR: "kmalloc_caches" [drivers/video/fbdev/vermilion/vmlfb.ko] undefined!
ERROR: "iomem_resource" [drivers/video/fbdev/vermilion/vmlfb.ko] undefined!
ERROR: "pci_disable_device" [drivers/video/fbdev/vermilion/vmlfb.ko] undefined!
ERROR: "__const_udelay" [drivers/video/fbdev/vermilion/vmlfb.ko] undefined!
ERROR: "cfb_fillrect" [drivers/video/fbdev/vermilion/vmlfb.ko] undefined!
ERROR: "mutex_unlock" [drivers/video/fbdev/vermilion/vmlfb.ko] undefined!
ERROR: "cfb_imageblit" [drivers/video/fbdev/vermilion/vmlfb.ko] undefined!
ERROR: "__mutex_init" [drivers/video/fbdev/vermilion/vmlfb.ko] undefined!
ERROR: "printk" [drivers/video/fbdev/vermilion/vmlfb.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/video/fbdev/vermilion/vmlfb.ko] undefined!
ERROR: "fb_alloc_cmap" [drivers/video/fbdev/vermilion/vmlfb.ko] undefined!
ERROR: "ioremap" [drivers/video/fbdev/vermilion/vmlfb.ko] undefined!
ERROR: "register_framebuffer" [drivers/video/fbdev/vermilion/vmlfb.ko] undefined!
ERROR: "mem_section" [drivers/video/fbdev/vermilion/vmlfb.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/video/fbdev/vermilion/vmlfb.ko] undefined!
ERROR: "__list_add_valid" [drivers/video/fbdev/vermilion/vmlfb.ko] undefined!
ERROR: "fb_dealloc_cmap" [drivers/video/fbdev/vermilion/vmlfb.ko] undefined!
ERROR: "fb_find_mode" [drivers/video/fbdev/vermilion/vmlfb.ko] undefined!
ERROR: "__cachemode2pte_tbl" [drivers/video/fbdev/vermilion/vmlfb.ko] undefined!
ERROR: "__get_free_pages" [drivers/video/fbdev/vermilion/vmlfb.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/video/fbdev/vermilion/vmlfb.ko] undefined!
ERROR: "set_pages_wb" [drivers/video/fbdev/vermilion/vmlfb.ko] undefined!
ERROR: "__release_region" [drivers/video/fbdev/vermilion/vmlfb.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/video/fbdev/vermilion/vmlfb.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/video/fbdev/vermilion/vmlfb.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/video/fbdev/vermilion/vmlfb.ko] undefined!
ERROR: "__phys_addr" [drivers/video/fbdev/vermilion/vmlfb.ko] undefined!
ERROR: "fb_set_var" [drivers/video/fbdev/vermilion/vmlfb.ko] undefined!
ERROR: "free_pages" [drivers/video/fbdev/vermilion/vmlfb.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/video/fbdev/vermilion/vmlfb.ko] undefined!
ERROR: "kfree" [drivers/video/fbdev/vermilion/vmlfb.ko] undefined!
ERROR: "iounmap" [drivers/video/fbdev/vermilion/vmlfb.ko] undefined!
ERROR: "__pci_register_driver" [drivers/video/fbdev/vermilion/vmlfb.ko] undefined!
ERROR: "set_pages_uc" [drivers/video/fbdev/vermilion/vmlfb.ko] undefined!
ERROR: "pci_get_device" [drivers/video/fbdev/vermilion/vmlfb.ko] undefined!
ERROR: "vm_iomap_memory" [drivers/video/fbdev/vermilion/vmlfb.ko] undefined!
ERROR: "cfb_copyarea" [drivers/video/fbdev/vermilion/vmlfb.ko] undefined!
ERROR: "dump_page" [drivers/video/fbdev/vermilion/vmlfb.ko] undefined!
ERROR: "iowrite32" [drivers/video/fbdev/vermilion/vmlfb.ko] undefined!
ERROR: "pci_enable_device" [drivers/video/fbdev/vermilion/vmlfb.ko] undefined!
ERROR: "ioread32" [drivers/video/fbdev/vermilion/vmlfb.ko] undefined!
ERROR: "strcpy" [drivers/video/fbdev/vermilion/vmlfb.ko] undefined!
ERROR: "unregister_framebuffer" [drivers/video/fbdev/vermilion/vmlfb.ko] undefined!
ERROR: "kmalloc_caches" [drivers/video/fbdev/savage/savagefb.ko] undefined!
ERROR: "ioremap_wc" [drivers/video/fbdev/savage/savagefb.ko] undefined!
ERROR: "framebuffer_release" [drivers/video/fbdev/savage/savagefb.ko] undefined!
ERROR: "memset_io" [drivers/video/fbdev/savage/savagefb.ko] undefined!
ERROR: "fb_find_best_display" [drivers/video/fbdev/savage/savagefb.ko] undefined!
ERROR: "pci_disable_device" [drivers/video/fbdev/savage/savagefb.ko] undefined!
ERROR: "__const_udelay" [drivers/video/fbdev/savage/savagefb.ko] undefined!
ERROR: "pci_release_regions" [drivers/video/fbdev/savage/savagefb.ko] undefined!
ERROR: "mutex_unlock" [drivers/video/fbdev/savage/savagefb.ko] undefined!
ERROR: "fb_set_suspend" [drivers/video/fbdev/savage/savagefb.ko] undefined!
ERROR: "fb_find_mode_cvt" [drivers/video/fbdev/savage/savagefb.ko] undefined!
ERROR: "console_unlock" [drivers/video/fbdev/savage/savagefb.ko] undefined!
ERROR: "param_ops_charp" [drivers/video/fbdev/savage/savagefb.ko] undefined!
ERROR: "pci_set_master" [drivers/video/fbdev/savage/savagefb.ko] undefined!
ERROR: "pci_restore_state" [drivers/video/fbdev/savage/savagefb.ko] undefined!
ERROR: "cfb_imageblit" [drivers/video/fbdev/savage/savagefb.ko] undefined!
ERROR: "fb_get_options" [drivers/video/fbdev/savage/savagefb.ko] undefined!
ERROR: "__mutex_init" [drivers/video/fbdev/savage/savagefb.ko] undefined!
ERROR: "printk" [drivers/video/fbdev/savage/savagefb.ko] undefined!
ERROR: "fb_alloc_cmap" [drivers/video/fbdev/savage/savagefb.ko] undefined!
ERROR: "ioremap" [drivers/video/fbdev/savage/savagefb.ko] undefined!
ERROR: "register_framebuffer" [drivers/video/fbdev/savage/savagefb.ko] undefined!
ERROR: "console_lock" [drivers/video/fbdev/savage/savagefb.ko] undefined!
ERROR: "restore_vga" [drivers/video/fbdev/savage/savagefb.ko] undefined!
ERROR: "fb_find_mode" [drivers/video/fbdev/savage/savagefb.ko] undefined!
ERROR: "usleep_range" [drivers/video/fbdev/savage/savagefb.ko] undefined!
ERROR: "save_vga" [drivers/video/fbdev/savage/savagefb.ko] undefined!
ERROR: "fb_get_mode" [drivers/video/fbdev/savage/savagefb.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/video/fbdev/savage/savagefb.ko] undefined!
ERROR: "fb_destroy_modedb" [drivers/video/fbdev/savage/savagefb.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/video/fbdev/savage/savagefb.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/video/fbdev/savage/savagefb.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/video/fbdev/savage/savagefb.ko] undefined!
ERROR: "fb_find_best_mode" [drivers/video/fbdev/savage/savagefb.ko] undefined!
ERROR: "pci_set_power_state" [drivers/video/fbdev/savage/savagefb.ko] undefined!
ERROR: "framebuffer_alloc" [drivers/video/fbdev/savage/savagefb.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/video/fbdev/savage/savagefb.ko] undefined!
ERROR: "kfree" [drivers/video/fbdev/savage/savagefb.ko] undefined!
ERROR: "pci_request_regions" [drivers/video/fbdev/savage/savagefb.ko] undefined!
ERROR: "fb_set_cmap" [drivers/video/fbdev/savage/savagefb.ko] undefined!
ERROR: "iounmap" [drivers/video/fbdev/savage/savagefb.ko] undefined!
ERROR: "__pci_register_driver" [drivers/video/fbdev/savage/savagefb.ko] undefined!
ERROR: "snprintf" [drivers/video/fbdev/savage/savagefb.ko] undefined!
ERROR: "pci_choose_state" [drivers/video/fbdev/savage/savagefb.ko] undefined!
ERROR: "pci_enable_device" [drivers/video/fbdev/savage/savagefb.ko] undefined!
ERROR: "fb_validate_mode" [drivers/video/fbdev/savage/savagefb.ko] undefined!
ERROR: "pci_save_state" [drivers/video/fbdev/savage/savagefb.ko] undefined!
ERROR: "unregister_framebuffer" [drivers/video/fbdev/savage/savagefb.ko] undefined!
ERROR: "__request_region" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "kmalloc_caches" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "pci_write_config_dword" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "vmalloc" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "ioremap_wc" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "param_ops_int" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "iomem_resource" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "strlen" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "pci_read_config_byte" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "framebuffer_release" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "pci_unmap_rom" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "memset_io" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "pci_get_slot" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "pci_disable_device" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "__might_fault" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "simple_strtoul" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "__get_user_4" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "pci_get_class" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "pci_write_config_byte" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "cfb_fillrect" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "mutex_unlock" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "vfree" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "sprintf" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "_copy_to_user" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "param_ops_charp" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "_dev_warn" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "cfb_imageblit" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "printk" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "sscanf" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "fb_alloc_cmap" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "ioremap" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "pci_map_rom" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "register_framebuffer" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "strncmp" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "pci_read_config_word" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "strlcpy" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "_dev_err" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "capable" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "_dev_info" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "__put_user_4" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "strncasecmp" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "pci_read_config_dword" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "__release_region" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "framebuffer_alloc" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "iounmap" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "memcpy_fromio" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "__pci_register_driver" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "pci_get_device" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "cfb_copyarea" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "pci_dev_put" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "pci_enable_device" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "_copy_from_user" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "strcpy" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "unregister_framebuffer" [drivers/video/fbdev/sis/sisfb.ko] undefined!
ERROR: "matroxfb_unregister_driver" [drivers/video/fbdev/matrox/i2c-matroxfb.ko] undefined!
ERROR: "matroxfb_register_driver" [drivers/video/fbdev/matrox/i2c-matroxfb.ko] undefined!
ERROR: "printk" [drivers/video/fbdev/matrox/i2c-matroxfb.ko] undefined!
ERROR: "i2c_new_scanned_device" [drivers/video/fbdev/matrox/i2c-matroxfb.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/video/fbdev/matrox/i2c-matroxfb.ko] undefined!
ERROR: "kmalloc_caches" [drivers/video/fbdev/matrox/i2c-matroxfb.ko] undefined!
ERROR: "matroxfb_DAC_out" [drivers/video/fbdev/matrox/i2c-matroxfb.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/video/fbdev/matrox/i2c-matroxfb.ko] undefined!
ERROR: "matroxfb_DAC_in" [drivers/video/fbdev/matrox/i2c-matroxfb.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/video/fbdev/matrox/i2c-matroxfb.ko] undefined!
ERROR: "i2c_bit_add_bus" [drivers/video/fbdev/matrox/i2c-matroxfb.ko] undefined!
ERROR: "snprintf" [drivers/video/fbdev/matrox/i2c-matroxfb.ko] undefined!
ERROR: "i2c_del_adapter" [drivers/video/fbdev/matrox/i2c-matroxfb.ko] undefined!
ERROR: "kfree" [drivers/video/fbdev/matrox/i2c-matroxfb.ko] undefined!
ERROR: "printk" [drivers/video/fbdev/matrox/matroxfb_misc.ko] undefined!
ERROR: "iounmap" [drivers/video/fbdev/matrox/matroxfb_misc.ko] undefined!
ERROR: "ioremap" [drivers/video/fbdev/matrox/matroxfb_misc.ko] undefined!
ERROR: "pci_write_config_dword" [drivers/video/fbdev/matrox/matroxfb_misc.ko] undefined!
ERROR: "pci_read_config_dword" [drivers/video/fbdev/matrox/matroxfb_misc.ko] undefined!
ERROR: "matroxfb_vgaHWinit" [drivers/video/fbdev/matrox/matroxfb_Ti3026.ko] undefined!
ERROR: "matroxfb_PLL_calcclock" [drivers/video/fbdev/matrox/matroxfb_Ti3026.ko] undefined!
ERROR: "printk" [drivers/video/fbdev/matrox/matroxfb_Ti3026.ko] undefined!
ERROR: "matroxfb_vgaHWrestore" [drivers/video/fbdev/matrox/matroxfb_Ti3026.ko] undefined!
ERROR: "__const_udelay" [drivers/video/fbdev/matrox/matroxfb_Ti3026.ko] undefined!
ERROR: "matroxfb_DAC_out" [drivers/video/fbdev/matrox/matroxfb_Ti3026.ko] undefined!
ERROR: "matroxfb_DAC_in" [drivers/video/fbdev/matrox/matroxfb_Ti3026.ko] undefined!
ERROR: "pci_write_config_dword" [drivers/video/fbdev/matrox/matroxfb_Ti3026.ko] undefined!
ERROR: "cfb_fillrect" [drivers/video/fbdev/matrox/matroxfb_accel.ko] undefined!
ERROR: "iowrite32_rep" [drivers/video/fbdev/matrox/matroxfb_accel.ko] undefined!
ERROR: "cfb_imageblit" [drivers/video/fbdev/matrox/matroxfb_accel.ko] undefined!
ERROR: "cfb_copyarea" [drivers/video/fbdev/matrox/matroxfb_accel.ko] undefined!
ERROR: "matrox_millennium" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "param_ops_int" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "param_ops_string" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "__pci_register_driver" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "__get_user_4" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "_copy_to_user" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "sprintf" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "_copy_from_user" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "__put_user_4" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "__might_fault" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "schedule_timeout" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "finish_wait" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "prepare_to_wait_event" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "init_wait_entry" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "__might_sleep" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "request_threaded_irq" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "__list_add_valid" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "fb_set_var" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "register_framebuffer" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "strcpy" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "fb_alloc_cmap" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "ioport_resource" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "matroxfb_read_pins" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "pci_write_config_dword" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "pci_dev_present" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "ioremap_wc" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "ioremap" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "__request_region" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "printk" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "__mutex_init" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "__init_rwsem" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "kmalloc_caches" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "pci_enable_device" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "pci_read_config_dword" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "free_irq" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "kfree" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "__release_region" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "iomem_resource" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "iounmap" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "unregister_framebuffer" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "matrox_cfbX_init" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "up_read" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "down_read" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "matroxfb_var2my" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "mutex_unlock" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "__wake_up" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/video/fbdev/matrox/matroxfb_base.ko] undefined!
ERROR: "param_ops_charp" [drivers/video/fbdev/pm3fb.ko] undefined!
ERROR: "param_ops_int" [drivers/video/fbdev/pm3fb.ko] undefined!
ERROR: "param_ops_bool" [drivers/video/fbdev/pm3fb.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/video/fbdev/pm3fb.ko] undefined!
ERROR: "__pci_register_driver" [drivers/video/fbdev/pm3fb.ko] undefined!
ERROR: "printk" [drivers/video/fbdev/pm3fb.ko] undefined!
ERROR: "register_framebuffer" [drivers/video/fbdev/pm3fb.ko] undefined!
ERROR: "fb_alloc_cmap" [drivers/video/fbdev/pm3fb.ko] undefined!
ERROR: "fb_find_mode" [drivers/video/fbdev/pm3fb.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/video/fbdev/pm3fb.ko] undefined!
ERROR: "kmalloc_caches" [drivers/video/fbdev/pm3fb.ko] undefined!
ERROR: "ioremap_wc" [drivers/video/fbdev/pm3fb.ko] undefined!
ERROR: "ioremap" [drivers/video/fbdev/pm3fb.ko] undefined!
ERROR: "__request_region" [drivers/video/fbdev/pm3fb.ko] undefined!
ERROR: "framebuffer_alloc" [drivers/video/fbdev/pm3fb.ko] undefined!
ERROR: "pci_enable_device" [drivers/video/fbdev/pm3fb.ko] undefined!
ERROR: "cfb_fillrect" [drivers/video/fbdev/pm3fb.ko] undefined!
ERROR: "cfb_copyarea" [drivers/video/fbdev/pm3fb.ko] undefined!
ERROR: "cfb_imageblit" [drivers/video/fbdev/pm3fb.ko] undefined!
ERROR: "framebuffer_release" [drivers/video/fbdev/pm3fb.ko] undefined!
ERROR: "kfree" [drivers/video/fbdev/pm3fb.ko] undefined!
ERROR: "__release_region" [drivers/video/fbdev/pm3fb.ko] undefined!
ERROR: "iomem_resource" [drivers/video/fbdev/pm3fb.ko] undefined!
ERROR: "iounmap" [drivers/video/fbdev/pm3fb.ko] undefined!
ERROR: "fb_dealloc_cmap" [drivers/video/fbdev/pm3fb.ko] undefined!
ERROR: "unregister_framebuffer" [drivers/video/fbdev/pm3fb.ko] undefined!
ERROR: "fb_sys_read" [drivers/video/fbdev/arcfb.ko] undefined!
ERROR: "param_ops_ulong" [drivers/video/fbdev/arcfb.ko] undefined!
ERROR: "param_ops_uint" [drivers/video/fbdev/arcfb.ko] undefined!
ERROR: "platform_device_unregister" [drivers/video/fbdev/arcfb.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/video/fbdev/arcfb.ko] undefined!
ERROR: "platform_device_put" [drivers/video/fbdev/arcfb.ko] undefined!
ERROR: "platform_device_add" [drivers/video/fbdev/arcfb.ko] undefined!
ERROR: "platform_device_alloc" [drivers/video/fbdev/arcfb.ko] undefined!
ERROR: "__platform_driver_register" [drivers/video/fbdev/arcfb.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/video/fbdev/arcfb.ko] undefined!
ERROR: "__wake_up" [drivers/video/fbdev/arcfb.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/video/fbdev/arcfb.ko] undefined!
ERROR: "sys_fillrect" [drivers/video/fbdev/arcfb.ko] undefined!
ERROR: "sys_copyarea" [drivers/video/fbdev/arcfb.ko] undefined!
ERROR: "sys_imageblit" [drivers/video/fbdev/arcfb.ko] undefined!
ERROR: "_copy_from_user" [drivers/video/fbdev/arcfb.ko] undefined!
ERROR: "printk" [drivers/video/fbdev/arcfb.ko] undefined!
ERROR: "request_threaded_irq" [drivers/video/fbdev/arcfb.ko] undefined!
ERROR: "register_framebuffer" [drivers/video/fbdev/arcfb.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/video/fbdev/arcfb.ko] undefined!
ERROR: "framebuffer_alloc" [drivers/video/fbdev/arcfb.ko] undefined!
ERROR: "vzalloc" [drivers/video/fbdev/arcfb.ko] undefined!
ERROR: "_copy_to_user" [drivers/video/fbdev/arcfb.ko] undefined!
ERROR: "finish_wait" [drivers/video/fbdev/arcfb.ko] undefined!
ERROR: "schedule" [drivers/video/fbdev/arcfb.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/video/fbdev/arcfb.ko] undefined!
ERROR: "prepare_to_wait" [drivers/video/fbdev/arcfb.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/video/fbdev/arcfb.ko] undefined!
ERROR: "autoremove_wake_function" [drivers/video/fbdev/arcfb.ko] undefined!
ERROR: "current_task" [drivers/video/fbdev/arcfb.ko] undefined!
ERROR: "__udelay" [drivers/video/fbdev/arcfb.ko] undefined!
ERROR: "framebuffer_release" [drivers/video/fbdev/arcfb.ko] undefined!
ERROR: "vfree" [drivers/video/fbdev/arcfb.ko] undefined!
ERROR: "unregister_framebuffer" [drivers/video/fbdev/arcfb.ko] undefined!
ERROR: "device_remove_file" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "kmalloc_caches" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "omapdss_compat_init" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "up_read" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "vmalloc" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "memparse" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "strchr" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "param_ops_int" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "strlen" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "framebuffer_release" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "omap_dss_get_overlay_manager" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "omap_dss_get_num_overlay_managers" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "of_alias_get_id" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "__might_fault" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "omap_dss_get_overlay" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "simple_strtoul" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "delayed_work_timer_fn" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "__warn_printk" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "__get_user_4" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "omapdss_is_initialized" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "cfb_fillrect" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "param_ops_bool" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "init_timer_key" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "cancel_delayed_work_sync" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "mutex_unlock" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "strsep" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "vfree" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "dma_free_attrs" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "__preempt_count" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "kstrdup" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "__platform_driver_register" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "down_write_nested" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "strcmp" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "omap_dss_put_device" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "_copy_to_user" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "param_ops_charp" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "pgprot_writecombine" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "_dev_warn" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "kstrtobool" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "omapdss_get_default_display_name" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "cfb_imageblit" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "current_task" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "__mutex_init" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "fb_alloc_cmap" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "omapdss_find_mgr_from_display" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "omap_dss_get_next_device" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "register_framebuffer" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "strlcpy" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "dma_alloc_attrs" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "destroy_workqueue" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "kstrtoint" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "up_write" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "_dev_err" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "flush_workqueue" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "device_create_file" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "fb_dealloc_cmap" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "_dev_info" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "__put_user_4" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "fb_find_mode" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "queue_delayed_work_on" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "_kstrtoul" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "fb_edid_to_monspecs" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "fb_destroy_modedb" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "framebuffer_alloc" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "omapdss_compat_uninit" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "kfree" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "kstrtouint" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "down_read_nested" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "omap_dss_get_device" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "iounmap" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "lockdep_init_map" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "vm_iomap_memory" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "cfb_copyarea" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "omap_dss_get_num_overlays" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "snprintf" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "devm_kmalloc" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "_copy_from_user" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "param_ops_uint" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "alloc_workqueue" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "__init_rwsem" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "unregister_framebuffer" [drivers/video/fbdev/omap2/omapfb/omap2fb.ko] undefined!
ERROR: "omapdss_default_get_resolution" [drivers/video/fbdev/omap2/omapfb/displays/panel-sharp-ls037v7dw01.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/video/fbdev/omap2/omapfb/displays/panel-sharp-ls037v7dw01.ko] undefined!
ERROR: "__platform_driver_register" [drivers/video/fbdev/omap2/omapfb/displays/panel-sharp-ls037v7dw01.ko] undefined!
ERROR: "_dev_err" [drivers/video/fbdev/omap2/omapfb/displays/panel-sharp-ls037v7dw01.ko] undefined!
ERROR: "omapdss_register_display" [drivers/video/fbdev/omap2/omapfb/displays/panel-sharp-ls037v7dw01.ko] undefined!
ERROR: "omapdss_of_find_source_for_first_ep" [drivers/video/fbdev/omap2/omapfb/displays/panel-sharp-ls037v7dw01.ko] undefined!
ERROR: "devm_gpiod_get_index" [drivers/video/fbdev/omap2/omapfb/displays/panel-sharp-ls037v7dw01.ko] undefined!
ERROR: "devm_regulator_get" [drivers/video/fbdev/omap2/omapfb/displays/panel-sharp-ls037v7dw01.ko] undefined!
ERROR: "devm_kmalloc" [drivers/video/fbdev/omap2/omapfb/displays/panel-sharp-ls037v7dw01.ko] undefined!
ERROR: "regulator_enable" [drivers/video/fbdev/omap2/omapfb/displays/panel-sharp-ls037v7dw01.ko] undefined!
ERROR: "omap_dss_put_device" [drivers/video/fbdev/omap2/omapfb/displays/panel-sharp-ls037v7dw01.ko] undefined!
ERROR: "omapdss_unregister_display" [drivers/video/fbdev/omap2/omapfb/displays/panel-sharp-ls037v7dw01.ko] undefined!
ERROR: "regulator_disable" [drivers/video/fbdev/omap2/omapfb/displays/panel-sharp-ls037v7dw01.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/video/fbdev/omap2/omapfb/displays/panel-sharp-ls037v7dw01.ko] undefined!
ERROR: "msleep" [drivers/video/fbdev/omap2/omapfb/displays/panel-sharp-ls037v7dw01.ko] undefined!
ERROR: "gpiod_set_value_cansleep" [drivers/video/fbdev/omap2/omapfb/displays/panel-sharp-ls037v7dw01.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/video/fbdev/omap2/omapfb/displays/panel-sharp-ls037v7dw01.ko] undefined!
ERROR: "omapdss_default_get_recommended_bpp" [drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.ko] undefined!
ERROR: "__platform_driver_register" [drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.ko] undefined!
ERROR: "sysfs_create_group" [drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.ko] undefined!
ERROR: "backlight_device_register" [drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.ko] undefined!
ERROR: "init_timer_key" [drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.ko] undefined!
ERROR: "delayed_work_timer_fn" [drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.ko] undefined!
ERROR: "lockdep_init_map" [drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.ko] undefined!
ERROR: "devm_gpio_request_one" [drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.ko] undefined!
ERROR: "__mutex_init" [drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.ko] undefined!
ERROR: "omapdss_register_display" [drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.ko] undefined!
ERROR: "omapdss_of_find_source_for_first_ep" [drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.ko] undefined!
ERROR: "of_get_named_gpio_flags" [drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.ko] undefined!
ERROR: "devm_kmalloc" [drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.ko] undefined!
ERROR: "omap_dss_put_device" [drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.ko] undefined!
ERROR: "backlight_device_unregister" [drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.ko] undefined!
ERROR: "sysfs_remove_group" [drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.ko] undefined!
ERROR: "omapdss_unregister_display" [drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.ko] undefined!
ERROR: "disable_irq" [drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.ko] undefined!
ERROR: "_kstrtoul" [drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.ko] undefined!
ERROR: "enable_irq" [drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.ko] undefined!
ERROR: "gpiod_to_irq" [drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.ko] undefined!
ERROR: "_dev_info" [drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.ko] undefined!
ERROR: "usleep_range" [drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.ko] undefined!
ERROR: "__const_udelay" [drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.ko] undefined!
ERROR: "gpiod_set_raw_value" [drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.ko] undefined!
ERROR: "gpio_to_desc" [drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.ko] undefined!
ERROR: "cancel_delayed_work" [drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.ko] undefined!
ERROR: "snprintf" [drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.ko] undefined!
ERROR: "queue_delayed_work_on" [drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.ko] undefined!
ERROR: "system_wq" [drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.ko] undefined!
ERROR: "__msecs_to_jiffies" [drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.ko] undefined!
ERROR: "schedule_timeout" [drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.ko] undefined!
ERROR: "current_task" [drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.ko] undefined!
ERROR: "jiffies" [drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.ko] undefined!
ERROR: "msleep" [drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.ko] undefined!
ERROR: "_dev_err" [drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.ko] undefined!
ERROR: "mutex_unlock" [drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.ko] undefined!
ERROR: "omapdss_default_get_resolution" [drivers/video/fbdev/omap2/omapfb/displays/panel-dpi.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/video/fbdev/omap2/omapfb/displays/panel-dpi.ko] undefined!
ERROR: "__platform_driver_register" [drivers/video/fbdev/omap2/omapfb/displays/panel-dpi.ko] undefined!
ERROR: "omapdss_register_display" [drivers/video/fbdev/omap2/omapfb/displays/panel-dpi.ko] undefined!
ERROR: "devm_gpio_request_one" [drivers/video/fbdev/omap2/omapfb/displays/panel-dpi.ko] undefined!
ERROR: "omap_dss_find_output" [drivers/video/fbdev/omap2/omapfb/displays/panel-dpi.ko] undefined!
ERROR: "devm_kmalloc" [drivers/video/fbdev/omap2/omapfb/displays/panel-dpi.ko] undefined!
ERROR: "_dev_err" [drivers/video/fbdev/omap2/omapfb/displays/panel-dpi.ko] undefined!
ERROR: "omapdss_of_find_source_for_first_ep" [drivers/video/fbdev/omap2/omapfb/displays/panel-dpi.ko] undefined!
ERROR: "videomode_to_omap_video_timings" [drivers/video/fbdev/omap2/omapfb/displays/panel-dpi.ko] undefined!
ERROR: "videomode_from_timing" [drivers/video/fbdev/omap2/omapfb/displays/panel-dpi.ko] undefined!
ERROR: "of_get_display_timing" [drivers/video/fbdev/omap2/omapfb/displays/panel-dpi.ko] undefined!
ERROR: "devm_gpiod_get_optional" [drivers/video/fbdev/omap2/omapfb/displays/panel-dpi.ko] undefined!
ERROR: "omap_dss_put_device" [drivers/video/fbdev/omap2/omapfb/displays/panel-dpi.ko] undefined!
ERROR: "omapdss_unregister_display" [drivers/video/fbdev/omap2/omapfb/displays/panel-dpi.ko] undefined!
ERROR: "gpiod_set_raw_value_cansleep" [drivers/video/fbdev/omap2/omapfb/displays/panel-dpi.ko] undefined!
ERROR: "gpio_to_desc" [drivers/video/fbdev/omap2/omapfb/displays/panel-dpi.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/video/fbdev/omap2/omapfb/displays/panel-dpi.ko] undefined!
ERROR: "gpiod_set_value_cansleep" [drivers/video/fbdev/omap2/omapfb/displays/panel-dpi.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/video/fbdev/omap2/omapfb/displays/panel-dpi.ko] undefined!
ERROR: "omapdss_default_get_resolution" [drivers/video/fbdev/omap2/omapfb/displays/connector-analog-tv.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/video/fbdev/omap2/omapfb/displays/connector-analog-tv.ko] undefined!
ERROR: "__platform_driver_register" [drivers/video/fbdev/omap2/omapfb/displays/connector-analog-tv.ko] undefined!
ERROR: "_dev_err" [drivers/video/fbdev/omap2/omapfb/displays/connector-analog-tv.ko] undefined!
ERROR: "omapdss_of_find_source_for_first_ep" [drivers/video/fbdev/omap2/omapfb/displays/connector-analog-tv.ko] undefined!
ERROR: "omapdss_register_display" [drivers/video/fbdev/omap2/omapfb/displays/connector-analog-tv.ko] undefined!
ERROR: "omap_dss_find_output" [drivers/video/fbdev/omap2/omapfb/displays/connector-analog-tv.ko] undefined!
ERROR: "devm_kmalloc" [drivers/video/fbdev/omap2/omapfb/displays/connector-analog-tv.ko] undefined!
ERROR: "omap_dss_put_device" [drivers/video/fbdev/omap2/omapfb/displays/connector-analog-tv.ko] undefined!
ERROR: "omapdss_unregister_display" [drivers/video/fbdev/omap2/omapfb/displays/connector-analog-tv.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/video/fbdev/omap2/omapfb/displays/connector-analog-tv.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/video/fbdev/omap2/omapfb/displays/connector-analog-tv.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/video/fbdev/omap2/omapfb/displays/connector-analog-tv.ko] undefined!
ERROR: "omapdss_default_get_resolution" [drivers/video/fbdev/omap2/omapfb/displays/connector-hdmi.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/video/fbdev/omap2/omapfb/displays/connector-hdmi.ko] undefined!
ERROR: "__platform_driver_register" [drivers/video/fbdev/omap2/omapfb/displays/connector-hdmi.ko] undefined!
ERROR: "_dev_err" [drivers/video/fbdev/omap2/omapfb/displays/connector-hdmi.ko] undefined!
ERROR: "devm_gpio_request_one" [drivers/video/fbdev/omap2/omapfb/displays/connector-hdmi.ko] undefined!
ERROR: "omapdss_register_display" [drivers/video/fbdev/omap2/omapfb/displays/connector-hdmi.ko] undefined!
ERROR: "omapdss_of_find_source_for_first_ep" [drivers/video/fbdev/omap2/omapfb/displays/connector-hdmi.ko] undefined!
ERROR: "of_get_named_gpio_flags" [drivers/video/fbdev/omap2/omapfb/displays/connector-hdmi.ko] undefined!
ERROR: "devm_kmalloc" [drivers/video/fbdev/omap2/omapfb/displays/connector-hdmi.ko] undefined!
ERROR: "gpiod_get_raw_value_cansleep" [drivers/video/fbdev/omap2/omapfb/displays/connector-hdmi.ko] undefined!
ERROR: "gpio_to_desc" [drivers/video/fbdev/omap2/omapfb/displays/connector-hdmi.ko] undefined!
ERROR: "omap_dss_put_device" [drivers/video/fbdev/omap2/omapfb/displays/connector-hdmi.ko] undefined!
ERROR: "omapdss_unregister_display" [drivers/video/fbdev/omap2/omapfb/displays/connector-hdmi.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/video/fbdev/omap2/omapfb/displays/connector-hdmi.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/video/fbdev/omap2/omapfb/displays/connector-hdmi.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/video/fbdev/omap2/omapfb/displays/connector-hdmi.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/video/fbdev/omap2/omapfb/displays/connector-hdmi.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/video/fbdev/omap2/omapfb/displays/encoder-tpd12s015.ko] undefined!
ERROR: "__platform_driver_register" [drivers/video/fbdev/omap2/omapfb/displays/encoder-tpd12s015.ko] undefined!
ERROR: "_dev_err" [drivers/video/fbdev/omap2/omapfb/displays/encoder-tpd12s015.ko] undefined!
ERROR: "omapdss_register_output" [drivers/video/fbdev/omap2/omapfb/displays/encoder-tpd12s015.ko] undefined!
ERROR: "devm_gpiod_get_index" [drivers/video/fbdev/omap2/omapfb/displays/encoder-tpd12s015.ko] undefined!
ERROR: "devm_gpiod_get_index_optional" [drivers/video/fbdev/omap2/omapfb/displays/encoder-tpd12s015.ko] undefined!
ERROR: "omapdss_of_find_source_for_first_ep" [drivers/video/fbdev/omap2/omapfb/displays/encoder-tpd12s015.ko] undefined!
ERROR: "devm_kmalloc" [drivers/video/fbdev/omap2/omapfb/displays/encoder-tpd12s015.ko] undefined!
ERROR: "__const_udelay" [drivers/video/fbdev/omap2/omapfb/displays/encoder-tpd12s015.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/video/fbdev/omap2/omapfb/displays/encoder-tpd12s015.ko] undefined!
ERROR: "gpiod_get_value_cansleep" [drivers/video/fbdev/omap2/omapfb/displays/encoder-tpd12s015.ko] undefined!
ERROR: "omap_dss_put_device" [drivers/video/fbdev/omap2/omapfb/displays/encoder-tpd12s015.ko] undefined!
ERROR: "omapdss_unregister_output" [drivers/video/fbdev/omap2/omapfb/displays/encoder-tpd12s015.ko] undefined!
ERROR: "gpiod_set_value_cansleep" [drivers/video/fbdev/omap2/omapfb/displays/encoder-tpd12s015.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/video/fbdev/omap2/omapfb/displays/encoder-tpd12s015.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/video/fbdev/omap2/omapfb/displays/encoder-tpd12s015.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/video/fbdev/omap2/omapfb/displays/encoder-tfp410.ko] undefined!
ERROR: "__platform_driver_register" [drivers/video/fbdev/omap2/omapfb/displays/encoder-tfp410.ko] undefined!
ERROR: "_dev_err" [drivers/video/fbdev/omap2/omapfb/displays/encoder-tfp410.ko] undefined!
ERROR: "devm_gpio_request_one" [drivers/video/fbdev/omap2/omapfb/displays/encoder-tfp410.ko] undefined!
ERROR: "omapdss_register_output" [drivers/video/fbdev/omap2/omapfb/displays/encoder-tfp410.ko] undefined!
ERROR: "omapdss_of_find_source_for_first_ep" [drivers/video/fbdev/omap2/omapfb/displays/encoder-tfp410.ko] undefined!
ERROR: "of_get_named_gpio_flags" [drivers/video/fbdev/omap2/omapfb/displays/encoder-tfp410.ko] undefined!
ERROR: "devm_kmalloc" [drivers/video/fbdev/omap2/omapfb/displays/encoder-tfp410.ko] undefined!
ERROR: "omap_dss_put_device" [drivers/video/fbdev/omap2/omapfb/displays/encoder-tfp410.ko] undefined!
ERROR: "omapdss_unregister_output" [drivers/video/fbdev/omap2/omapfb/displays/encoder-tfp410.ko] undefined!
ERROR: "gpiod_set_raw_value_cansleep" [drivers/video/fbdev/omap2/omapfb/displays/encoder-tfp410.ko] undefined!
ERROR: "gpio_to_desc" [drivers/video/fbdev/omap2/omapfb/displays/encoder-tfp410.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/video/fbdev/omap2/omapfb/displays/encoder-tfp410.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/video/fbdev/omap2/omapfb/displays/encoder-tfp410.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/video/fbdev/omap2/omapfb/displays/encoder-opa362.ko] undefined!
ERROR: "__platform_driver_register" [drivers/video/fbdev/omap2/omapfb/displays/encoder-opa362.ko] undefined!
ERROR: "_dev_err" [drivers/video/fbdev/omap2/omapfb/displays/encoder-opa362.ko] undefined!
ERROR: "omapdss_register_output" [drivers/video/fbdev/omap2/omapfb/displays/encoder-opa362.ko] undefined!
ERROR: "omapdss_of_find_source_for_first_ep" [drivers/video/fbdev/omap2/omapfb/displays/encoder-opa362.ko] undefined!
ERROR: "devm_gpiod_get_optional" [drivers/video/fbdev/omap2/omapfb/displays/encoder-opa362.ko] undefined!
ERROR: "devm_kmalloc" [drivers/video/fbdev/omap2/omapfb/displays/encoder-opa362.ko] undefined!
ERROR: "omap_dss_put_device" [drivers/video/fbdev/omap2/omapfb/displays/encoder-opa362.ko] undefined!
ERROR: "omapdss_unregister_output" [drivers/video/fbdev/omap2/omapfb/displays/encoder-opa362.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/video/fbdev/omap2/omapfb/displays/encoder-opa362.ko] undefined!
ERROR: "gpiod_set_value_cansleep" [drivers/video/fbdev/omap2/omapfb/displays/encoder-opa362.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/video/fbdev/omap2/omapfb/displays/encoder-opa362.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/video/fbdev/omap2/omapfb/displays/encoder-opa362.ko] undefined!
ERROR: "clk_unprepare" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "kobject_put" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "system_wq" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "__kmalloc" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "msleep" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "__pm_runtime_idle" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "clk_enable" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "debugfs_create_dir" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "single_open" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "component_unbind_all" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "schedule_hrtimeout" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "strlen" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "of_property_read_u32_index" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "component_add" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "regulator_disable" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "of_node_name_eq" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "single_release" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "clk_disable" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "__x86_indirect_thunk_eax" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "of_alias_get_id" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "simple_strtoul" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "seq_printf" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "__warn_printk" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "component_bind_all" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "clk_put" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "__const_udelay" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "mutex_unlock" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "component_match_add_release" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "kobject_del" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "__platform_driver_probe" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "component_master_del" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "platform_device_register_full" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "debugfs_create_file" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "debugfs_remove_recursive" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "clk_get_rate" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "seq_read" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "__platform_driver_register" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "jiffies" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "strcmp" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "complete_all" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "param_ops_charp" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "__sysfs_match_string" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "kstrtobool" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "kstrtou8" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "current_task" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "jiffies_to_msecs" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "__mutex_init" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "printk" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "sscanf" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "kobject_init_and_add" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "of_find_property" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "of_property_read_string" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "register_pm_notifier" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "strstr" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "platform_get_resource" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "platform_device_unregister" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "kstrtoint" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "pinctrl_pm_select_sleep_state" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "hdmi_avi_infoframe_pack" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "_dev_err" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "__list_add_valid" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "synchronize_irq" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "of_get_child_by_name" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "print_hex_dump" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "clk_round_rate" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "devm_regulator_get" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "usleep_range" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "devm_free_irq" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "syscon_regmap_lookup_by_phandle" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "put_device" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "of_get_next_child" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "clk_prepare" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "wait_for_completion_interruptible_timeout" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "pinctrl_pm_select_default_state" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "devm_clk_get" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "clk_get" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "get_device" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "clk_set_rate" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "platform_get_resource_byname" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "device_for_each_child" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "seq_lseek" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "of_get_parent" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "kfree" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "kstrtouint" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "component_del" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "devm_ioremap" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "unregister_pm_notifier" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "lockdep_init_map" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "sysfs_streq" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "component_master_add_with_match" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "queue_work_on" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "complete" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "snprintf" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "of_property_match_string" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "platform_get_irq" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "of_get_next_parent" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "of_node_put" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "devm_kmalloc" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "wait_for_completion_timeout" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "regulator_enable" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "of_graph_get_remote_endpoint" [drivers/video/fbdev/omap2/omapfb/dss/omapdss.ko] undefined!
ERROR: "cfb_imageblit" [drivers/video/fbdev/mmp/fb/mmpfb.ko] undefined!
ERROR: "cfb_copyarea" [drivers/video/fbdev/mmp/fb/mmpfb.ko] undefined!
ERROR: "cfb_fillrect" [drivers/video/fbdev/mmp/fb/mmpfb.ko] undefined!
ERROR: "__platform_driver_register" [drivers/video/fbdev/mmp/fb/mmpfb.ko] undefined!
ERROR: "kfree" [drivers/video/fbdev/mmp/fb/mmpfb.ko] undefined!
ERROR: "fb_videomode_to_modelist" [drivers/video/fbdev/mmp/fb/mmpfb.ko] undefined!
ERROR: "fb_show_logo" [drivers/video/fbdev/mmp/fb/mmpfb.ko] undefined!
ERROR: "fb_prepare_logo" [drivers/video/fbdev/mmp/fb/mmpfb.ko] undefined!
ERROR: "fb_dealloc_cmap" [drivers/video/fbdev/mmp/fb/mmpfb.ko] undefined!
ERROR: "register_framebuffer" [drivers/video/fbdev/mmp/fb/mmpfb.ko] undefined!
ERROR: "__kmalloc" [drivers/video/fbdev/mmp/fb/mmpfb.ko] undefined!
ERROR: "dma_free_attrs" [drivers/video/fbdev/mmp/fb/mmpfb.ko] undefined!
ERROR: "fb_alloc_cmap" [drivers/video/fbdev/mmp/fb/mmpfb.ko] undefined!
ERROR: "strcpy" [drivers/video/fbdev/mmp/fb/mmpfb.ko] undefined!
ERROR: "dma_alloc_attrs" [drivers/video/fbdev/mmp/fb/mmpfb.ko] undefined!
ERROR: "_dev_warn" [drivers/video/fbdev/mmp/fb/mmpfb.ko] undefined!
ERROR: "framebuffer_release" [drivers/video/fbdev/mmp/fb/mmpfb.ko] undefined!
ERROR: "mutex_destroy" [drivers/video/fbdev/mmp/fb/mmpfb.ko] undefined!
ERROR: "_dev_info" [drivers/video/fbdev/mmp/fb/mmpfb.ko] undefined!
ERROR: "mmp_get_path" [drivers/video/fbdev/mmp/fb/mmpfb.ko] undefined!
ERROR: "__mutex_init" [drivers/video/fbdev/mmp/fb/mmpfb.ko] undefined!
ERROR: "framebuffer_alloc" [drivers/video/fbdev/mmp/fb/mmpfb.ko] undefined!
ERROR: "fb_videomode_to_var" [drivers/video/fbdev/mmp/fb/mmpfb.ko] undefined!
ERROR: "fb_find_best_mode" [drivers/video/fbdev/mmp/fb/mmpfb.ko] undefined!
ERROR: "_dev_err" [drivers/video/fbdev/mmp/fb/mmpfb.ko] undefined!
ERROR: "fb_match_mode" [drivers/video/fbdev/mmp/fb/mmpfb.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/video/fbdev/mmp/fb/mmpfb.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/video/backlight/sky81452-backlight.ko] undefined!
ERROR: "__platform_driver_register" [drivers/video/backlight/sky81452-backlight.ko] undefined!
ERROR: "gpiod_set_raw_value_cansleep" [drivers/video/backlight/sky81452-backlight.ko] undefined!
ERROR: "gpio_to_desc" [drivers/video/backlight/sky81452-backlight.ko] undefined!
ERROR: "mutex_unlock" [drivers/video/backlight/sky81452-backlight.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/video/backlight/sky81452-backlight.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/video/backlight/sky81452-backlight.ko] undefined!
ERROR: "sysfs_remove_group" [drivers/video/backlight/sky81452-backlight.ko] undefined!
ERROR: "_dev_err" [drivers/video/backlight/sky81452-backlight.ko] undefined!
ERROR: "of_node_put" [drivers/video/backlight/sky81452-backlight.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/video/backlight/sky81452-backlight.ko] undefined!
ERROR: "of_property_count_elems_of_size" [drivers/video/backlight/sky81452-backlight.ko] undefined!
ERROR: "of_get_named_gpio_flags" [drivers/video/backlight/sky81452-backlight.ko] undefined!
ERROR: "of_find_property" [drivers/video/backlight/sky81452-backlight.ko] undefined!
ERROR: "of_property_read_string" [drivers/video/backlight/sky81452-backlight.ko] undefined!
ERROR: "devm_kmalloc" [drivers/video/backlight/sky81452-backlight.ko] undefined!
ERROR: "of_node_get" [drivers/video/backlight/sky81452-backlight.ko] undefined!
ERROR: "sysfs_create_group" [drivers/video/backlight/sky81452-backlight.ko] undefined!
ERROR: "devm_backlight_device_register" [drivers/video/backlight/sky81452-backlight.ko] undefined!
ERROR: "devm_gpio_request_one" [drivers/video/backlight/sky81452-backlight.ko] undefined!
ERROR: "regmap_write" [drivers/video/backlight/sky81452-backlight.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/video/backlight/sky81452-backlight.ko] undefined!
ERROR: "_kstrtoul" [drivers/video/backlight/sky81452-backlight.ko] undefined!
ERROR: "strcpy" [drivers/video/backlight/sky81452-backlight.ko] undefined!
ERROR: "sprintf" [drivers/video/backlight/sky81452-backlight.ko] undefined!
ERROR: "strcmp" [drivers/video/backlight/sky81452-backlight.ko] undefined!
ERROR: "strlen" [drivers/video/backlight/sky81452-backlight.ko] undefined!
ERROR: "strcat" [drivers/video/backlight/sky81452-backlight.ko] undefined!
ERROR: "regmap_read" [drivers/video/backlight/sky81452-backlight.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/video/backlight/pcf50633-backlight.ko] undefined!
ERROR: "__platform_driver_register" [drivers/video/backlight/pcf50633-backlight.ko] undefined!
ERROR: "mutex_unlock" [drivers/video/backlight/pcf50633-backlight.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/video/backlight/pcf50633-backlight.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/video/backlight/pcf50633-backlight.ko] undefined!
ERROR: "devm_backlight_device_register" [drivers/video/backlight/pcf50633-backlight.ko] undefined!
ERROR: "devm_kmalloc" [drivers/video/backlight/pcf50633-backlight.ko] undefined!
ERROR: "pcf50633_reg_write" [drivers/video/backlight/pcf50633-backlight.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/video/backlight/pandora_bl.ko] undefined!
ERROR: "__platform_driver_register" [drivers/video/backlight/pandora_bl.ko] undefined!
ERROR: "_dev_err" [drivers/video/backlight/pandora_bl.ko] undefined!
ERROR: "mutex_unlock" [drivers/video/backlight/pandora_bl.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/video/backlight/pandora_bl.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/video/backlight/pandora_bl.ko] undefined!
ERROR: "devm_backlight_device_register" [drivers/video/backlight/pandora_bl.ko] undefined!
ERROR: "devm_kmalloc" [drivers/video/backlight/pandora_bl.ko] undefined!
ERROR: "usleep_range" [drivers/video/backlight/pandora_bl.ko] undefined!
ERROR: "twl_i2c_read" [drivers/video/backlight/pandora_bl.ko] undefined!
ERROR: "twl_i2c_write" [drivers/video/backlight/pandora_bl.ko] undefined!
ERROR: "i2c_del_driver" [drivers/video/backlight/lm3630a_bl.ko] undefined!
ERROR: "i2c_register_driver" [drivers/video/backlight/lm3630a_bl.ko] undefined!
ERROR: "devm_pwm_get" [drivers/video/backlight/lm3630a_bl.ko] undefined!
ERROR: "fwnode_property_read_string" [drivers/video/backlight/lm3630a_bl.ko] undefined!
ERROR: "fwnode_property_present" [drivers/video/backlight/lm3630a_bl.ko] undefined!
ERROR: "fwnode_property_read_u32_array" [drivers/video/backlight/lm3630a_bl.ko] undefined!
ERROR: "device_get_next_child_node" [drivers/video/backlight/lm3630a_bl.ko] undefined!
ERROR: "request_threaded_irq" [drivers/video/backlight/lm3630a_bl.ko] undefined!
ERROR: "alloc_workqueue" [drivers/video/backlight/lm3630a_bl.ko] undefined!
ERROR: "init_timer_key" [drivers/video/backlight/lm3630a_bl.ko] undefined!
ERROR: "delayed_work_timer_fn" [drivers/video/backlight/lm3630a_bl.ko] undefined!
ERROR: "lockdep_init_map" [drivers/video/backlight/lm3630a_bl.ko] undefined!
ERROR: "devm_backlight_device_register" [drivers/video/backlight/lm3630a_bl.ko] undefined!
ERROR: "devm_gpiod_get_optional" [drivers/video/backlight/lm3630a_bl.ko] undefined!
ERROR: "__devm_regmap_init_i2c" [drivers/video/backlight/lm3630a_bl.ko] undefined!
ERROR: "devm_kmalloc" [drivers/video/backlight/lm3630a_bl.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/video/backlight/lm3630a_bl.ko] undefined!
ERROR: "pwm_apply_state" [drivers/video/backlight/lm3630a_bl.ko] undefined!
ERROR: "queue_delayed_work_on" [drivers/video/backlight/lm3630a_bl.ko] undefined!
ERROR: "_dev_info" [drivers/video/backlight/lm3630a_bl.ko] undefined!
ERROR: "usleep_range" [drivers/video/backlight/lm3630a_bl.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/video/backlight/lm3630a_bl.ko] undefined!
ERROR: "regmap_read" [drivers/video/backlight/lm3630a_bl.ko] undefined!
ERROR: "_dev_err" [drivers/video/backlight/lm3630a_bl.ko] undefined!
ERROR: "destroy_workqueue" [drivers/video/backlight/lm3630a_bl.ko] undefined!
ERROR: "flush_workqueue" [drivers/video/backlight/lm3630a_bl.ko] undefined!
ERROR: "free_irq" [drivers/video/backlight/lm3630a_bl.ko] undefined!
ERROR: "regmap_write" [drivers/video/backlight/lm3630a_bl.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/video/backlight/generic_bl.ko] undefined!
ERROR: "__platform_driver_register" [drivers/video/backlight/generic_bl.ko] undefined!
ERROR: "_dev_info" [drivers/video/backlight/generic_bl.ko] undefined!
ERROR: "mutex_unlock" [drivers/video/backlight/generic_bl.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/video/backlight/generic_bl.ko] undefined!
ERROR: "devm_backlight_device_register" [drivers/video/backlight/generic_bl.ko] undefined!
ERROR: "__x86_indirect_thunk_eax" [drivers/video/backlight/generic_bl.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/video/backlight/generic_bl.ko] undefined!
ERROR: "platform_device_unregister" [drivers/video/backlight/cr_bllcd.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/video/backlight/cr_bllcd.ko] undefined!
ERROR: "platform_device_register_full" [drivers/video/backlight/cr_bllcd.ko] undefined!
ERROR: "__platform_driver_register" [drivers/video/backlight/cr_bllcd.ko] undefined!
ERROR: "printk" [drivers/video/backlight/cr_bllcd.ko] undefined!
ERROR: "devm_kmalloc" [drivers/video/backlight/cr_bllcd.ko] undefined!
ERROR: "pci_read_config_dword" [drivers/video/backlight/cr_bllcd.ko] undefined!
ERROR: "devm_lcd_device_register" [drivers/video/backlight/cr_bllcd.ko] undefined!
ERROR: "devm_backlight_device_register" [drivers/video/backlight/cr_bllcd.ko] undefined!
ERROR: "pci_read_config_byte" [drivers/video/backlight/cr_bllcd.ko] undefined!
ERROR: "pci_get_device" [drivers/video/backlight/cr_bllcd.ko] undefined!
ERROR: "pci_dev_put" [drivers/video/backlight/cr_bllcd.ko] undefined!
ERROR: "schedule_timeout" [drivers/video/backlight/cr_bllcd.ko] undefined!
ERROR: "i2c_del_driver" [drivers/video/backlight/bd6107.ko] undefined!
ERROR: "i2c_register_driver" [drivers/video/backlight/bd6107.ko] undefined!
ERROR: "_dev_warn" [drivers/video/backlight/bd6107.ko] undefined!
ERROR: "_dev_err" [drivers/video/backlight/bd6107.ko] undefined!
ERROR: "mutex_unlock" [drivers/video/backlight/bd6107.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/video/backlight/bd6107.ko] undefined!
ERROR: "devm_backlight_device_register" [drivers/video/backlight/bd6107.ko] undefined!
ERROR: "devm_gpiod_get" [drivers/video/backlight/bd6107.ko] undefined!
ERROR: "devm_kmalloc" [drivers/video/backlight/bd6107.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/video/backlight/bd6107.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/video/backlight/bd6107.ko] undefined!
ERROR: "msleep" [drivers/video/backlight/bd6107.ko] undefined!
ERROR: "gpiod_set_value" [drivers/video/backlight/bd6107.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/video/backlight/adp5520_bl.ko] undefined!
ERROR: "__platform_driver_register" [drivers/video/backlight/adp5520_bl.ko] undefined!
ERROR: "_dev_err" [drivers/video/backlight/adp5520_bl.ko] undefined!
ERROR: "sysfs_create_group" [drivers/video/backlight/adp5520_bl.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/video/backlight/adp5520_bl.ko] undefined!
ERROR: "devm_backlight_device_register" [drivers/video/backlight/adp5520_bl.ko] undefined!
ERROR: "__mutex_init" [drivers/video/backlight/adp5520_bl.ko] undefined!
ERROR: "devm_kmalloc" [drivers/video/backlight/adp5520_bl.ko] undefined!
ERROR: "sprintf" [drivers/video/backlight/adp5520_bl.ko] undefined!
ERROR: "adp5520_read" [drivers/video/backlight/adp5520_bl.ko] undefined!
ERROR: "mutex_unlock" [drivers/video/backlight/adp5520_bl.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/video/backlight/adp5520_bl.ko] undefined!
ERROR: "_kstrtoul" [drivers/video/backlight/adp5520_bl.ko] undefined!
ERROR: "sysfs_remove_group" [drivers/video/backlight/adp5520_bl.ko] undefined!
ERROR: "adp5520_clr_bits" [drivers/video/backlight/adp5520_bl.ko] undefined!
ERROR: "adp5520_set_bits" [drivers/video/backlight/adp5520_bl.ko] undefined!
ERROR: "adp5520_write" [drivers/video/backlight/adp5520_bl.ko] undefined!
ERROR: "pci_sriov_configure_simple" [drivers/pci/pci-pf-stub.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/pci/pci-pf-stub.ko] undefined!
ERROR: "__pci_register_driver" [drivers/pci/pci-pf-stub.ko] undefined!
ERROR: "_dev_info" [drivers/pci/pci-pf-stub.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/pci/controller/pcie-altera.ko] undefined!
ERROR: "__platform_driver_register" [drivers/pci/controller/pcie-altera.ko] undefined!
ERROR: "jiffies" [drivers/pci/controller/pcie-altera.ko] undefined!
ERROR: "pci_bus_add_devices" [drivers/pci/controller/pcie-altera.ko] undefined!
ERROR: "pcie_bus_configure_settings" [drivers/pci/controller/pcie-altera.ko] undefined!
ERROR: "pci_assign_unassigned_bus_resources" [drivers/pci/controller/pcie-altera.ko] undefined!
ERROR: "pci_scan_root_bus_bridge" [drivers/pci/controller/pcie-altera.ko] undefined!
ERROR: "pci_common_swizzle" [drivers/pci/controller/pcie-altera.ko] undefined!
ERROR: "of_irq_parse_and_map_pci" [drivers/pci/controller/pcie-altera.ko] undefined!
ERROR: "__irq_domain_add" [drivers/pci/controller/pcie-altera.ko] undefined!
ERROR: "pci_parse_request_of_pci_ranges" [drivers/pci/controller/pcie-altera.ko] undefined!
ERROR: "platform_get_irq" [drivers/pci/controller/pcie-altera.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/pci/controller/pcie-altera.ko] undefined!
ERROR: "platform_get_resource_byname" [drivers/pci/controller/pcie-altera.ko] undefined!
ERROR: "of_match_device" [drivers/pci/controller/pcie-altera.ko] undefined!
ERROR: "devm_pci_alloc_host_bridge" [drivers/pci/controller/pcie-altera.ko] undefined!
ERROR: "irq_dispose_mapping" [drivers/pci/controller/pcie-altera.ko] undefined!
ERROR: "irq_domain_remove" [drivers/pci/controller/pcie-altera.ko] undefined!
ERROR: "irq_set_chained_handler_and_data" [drivers/pci/controller/pcie-altera.ko] undefined!
ERROR: "pci_remove_root_bus" [drivers/pci/controller/pcie-altera.ko] undefined!
ERROR: "pci_stop_root_bus" [drivers/pci/controller/pcie-altera.ko] undefined!
ERROR: "irq_set_chip_data" [drivers/pci/controller/pcie-altera.ko] undefined!
ERROR: "irq_set_chip_and_handler_name" [drivers/pci/controller/pcie-altera.ko] undefined!
ERROR: "dummy_irq_chip" [drivers/pci/controller/pcie-altera.ko] undefined!
ERROR: "handle_simple_irq" [drivers/pci/controller/pcie-altera.ko] undefined!
ERROR: "_dev_err" [drivers/pci/controller/pcie-altera.ko] undefined!
ERROR: "irq_find_mapping" [drivers/pci/controller/pcie-altera.ko] undefined!
ERROR: "find_next_bit" [drivers/pci/controller/pcie-altera.ko] undefined!
ERROR: "generic_handle_irq" [drivers/pci/controller/pcie-altera.ko] undefined!
ERROR: "find_first_bit" [drivers/pci/controller/pcie-altera.ko] undefined!
ERROR: "_dev_warn" [drivers/pci/controller/pcie-altera.ko] undefined!
ERROR: "__const_udelay" [drivers/pci/controller/pcie-altera.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/pci/controller/pcie-altera.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/pci/controller/pcie-altera.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/pci/controller/pcie-altera.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/pci/controller/pcie-altera.ko] undefined!
ERROR: "__request_region" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "kmalloc_caches" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "pci_bus_read_config_byte" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "__kmalloc" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "msleep" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "pci_hp_del" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "pci_read_config_byte" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "pci_stop_and_remove_bus_device" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "__warn_printk" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "pci_hp_add_bridge" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "pci_write_config_byte" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "param_ops_bool" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "pci_unlock_rescan_remove" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "mutex_unlock" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "pci_bus_write_config_word" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "__pci_hp_register" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "sprintf" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "kthread_create_on_node" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "pci_hp_destroy" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "wait_for_completion" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "ioport_resource" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "printk" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "kthread_stop" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "__list_del_entry_valid" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "ioremap" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "pci_scan_bus" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "pci_read_config_word" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "pci_bus_write_config_dword" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "pci_get_domain_bus_and_slot" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "pci_bus_add_devices" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "pci_find_bus" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "pci_dev_present" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "pci_scan_slot" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "__list_add_valid" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "pci_bus_read_config_word" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "pci_bus_read_config_dword" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "wake_up_process" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "__release_region" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "pci_lock_rescan_remove" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "IO_APIC_get_PCI_irq_vector" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "kthread_should_stop" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "pci_bus_write_config_byte" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "kfree" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "pcibios_get_irq_routing_table" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "iounmap" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "__pci_register_driver" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "pci_dev_put" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "complete" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "snprintf" [drivers/pci/hotplug/ibmphp.ko] undefined!
ERROR: "__request_region" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "kmalloc_caches" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "pci_bus_read_config_byte" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "simple_read_from_buffer" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "debugfs_create_dir" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "del_timer" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "iomem_resource" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "pci_read_config_byte" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "pci_stop_and_remove_bus_device" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "remove_wait_queue" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "pci_disable_device" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "pci_hp_add_bridge" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "kmemdup" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "pci_write_config_byte" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "__const_udelay" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "param_ops_bool" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "init_timer_key" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "pci_unlock_rescan_remove" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "mutex_unlock" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "pci_bus_write_config_word" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "debugfs_create_file" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "_dev_notice" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "__pci_hp_register" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "sprintf" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "kthread_create_on_node" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "jiffies" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "pci_hp_deregister" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "__init_waitqueue_head" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "default_wake_function" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "pcibios_set_irq_routing" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "current_task" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "jiffies_to_msecs" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "__mutex_init" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "printk" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "kthread_stop" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "ioremap" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "fixed_size_llseek" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "debugfs_remove" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "pci_bus_write_config_dword" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "pci_get_domain_bus_and_slot" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "pci_bus_add_devices" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "add_timer" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "request_threaded_irq" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "pci_scan_slot" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "pci_bus_read_config_word" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "pci_bus_read_config_dword" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "schedule" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "kmalloc_order_trace" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "wake_up_process" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "__release_region" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "pci_unregister_driver" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "msleep_interruptible" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "pci_lock_rescan_remove" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "__wake_up" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "kthread_should_stop" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "pci_bus_write_config_byte" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "add_wait_queue" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "kfree" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "pcibios_get_irq_routing_table" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "iounmap" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "__pci_register_driver" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "pci_dev_put" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "snprintf" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "pci_enable_device" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "free_irq" [drivers/pci/hotplug/cpqphp.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/pwm/pwm-twl.ko] undefined!
ERROR: "__platform_driver_register" [drivers/pwm/pwm-twl.ko] undefined!
ERROR: "pwmchip_add" [drivers/pwm/pwm-twl.ko] undefined!
ERROR: "__mutex_init" [drivers/pwm/pwm-twl.ko] undefined!
ERROR: "twl_rev" [drivers/pwm/pwm-twl.ko] undefined!
ERROR: "devm_kmalloc" [drivers/pwm/pwm-twl.ko] undefined!
ERROR: "twl_i2c_read" [drivers/pwm/pwm-twl.ko] undefined!
ERROR: "_dev_err" [drivers/pwm/pwm-twl.ko] undefined!
ERROR: "mutex_unlock" [drivers/pwm/pwm-twl.ko] undefined!
ERROR: "twl_i2c_write" [drivers/pwm/pwm-twl.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/pwm/pwm-twl.ko] undefined!
ERROR: "pwmchip_remove" [drivers/pwm/pwm-twl.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/pwm/pwm-sprd.ko] undefined!
ERROR: "__platform_driver_register" [drivers/pwm/pwm-sprd.ko] undefined!
ERROR: "clk_bulk_enable" [drivers/pwm/pwm-sprd.ko] undefined!
ERROR: "clk_bulk_unprepare" [drivers/pwm/pwm-sprd.ko] undefined!
ERROR: "clk_bulk_disable" [drivers/pwm/pwm-sprd.ko] undefined!
ERROR: "clk_bulk_prepare" [drivers/pwm/pwm-sprd.ko] undefined!
ERROR: "_dev_err" [drivers/pwm/pwm-sprd.ko] undefined!
ERROR: "pwmchip_add" [drivers/pwm/pwm-sprd.ko] undefined!
ERROR: "clk_get_rate" [drivers/pwm/pwm-sprd.ko] undefined!
ERROR: "devm_clk_bulk_get" [drivers/pwm/pwm-sprd.ko] undefined!
ERROR: "devm_platform_ioremap_resource" [drivers/pwm/pwm-sprd.ko] undefined!
ERROR: "devm_kmalloc" [drivers/pwm/pwm-sprd.ko] undefined!
ERROR: "pwmchip_remove" [drivers/pwm/pwm-sprd.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/pwm/pwm-sifive.ko] undefined!
ERROR: "__platform_driver_register" [drivers/pwm/pwm-sifive.ko] undefined!
ERROR: "pwmchip_add" [drivers/pwm/pwm-sifive.ko] undefined!
ERROR: "clk_notifier_register" [drivers/pwm/pwm-sifive.ko] undefined!
ERROR: "clk_prepare" [drivers/pwm/pwm-sifive.ko] undefined!
ERROR: "devm_clk_get" [drivers/pwm/pwm-sifive.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/pwm/pwm-sifive.ko] undefined!
ERROR: "platform_get_resource" [drivers/pwm/pwm-sifive.ko] undefined!
ERROR: "of_pwm_xlate_with_flags" [drivers/pwm/pwm-sifive.ko] undefined!
ERROR: "__mutex_init" [drivers/pwm/pwm-sifive.ko] undefined!
ERROR: "devm_kmalloc" [drivers/pwm/pwm-sifive.ko] undefined!
ERROR: "_dev_err" [drivers/pwm/pwm-sifive.ko] undefined!
ERROR: "clk_get_rate" [drivers/pwm/pwm-sifive.ko] undefined!
ERROR: "mutex_unlock" [drivers/pwm/pwm-sifive.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/pwm/pwm-sifive.ko] undefined!
ERROR: "clk_enable" [drivers/pwm/pwm-sifive.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/pwm/pwm-sifive.ko] undefined!
ERROR: "clk_notifier_unregister" [drivers/pwm/pwm-sifive.ko] undefined!
ERROR: "pwmchip_remove" [drivers/pwm/pwm-sifive.ko] undefined!
ERROR: "clk_unprepare" [drivers/pwm/pwm-sifive.ko] undefined!
ERROR: "clk_disable" [drivers/pwm/pwm-sifive.ko] undefined!
ERROR: "pwm_lpss_resume" [drivers/pwm/pwm-lpss-platform.ko] undefined!
ERROR: "pwm_lpss_suspend" [drivers/pwm/pwm-lpss-platform.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/pwm/pwm-lpss-platform.ko] undefined!
ERROR: "__platform_driver_register" [drivers/pwm/pwm-lpss-platform.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/pwm/pwm-lpss-platform.ko] undefined!
ERROR: "__pm_runtime_set_status" [drivers/pwm/pwm-lpss-platform.ko] undefined!
ERROR: "pwm_lpss_probe" [drivers/pwm/pwm-lpss-platform.ko] undefined!
ERROR: "platform_get_resource" [drivers/pwm/pwm-lpss-platform.ko] undefined!
ERROR: "acpi_match_device" [drivers/pwm/pwm-lpss-platform.ko] undefined!
ERROR: "pwm_lpss_remove" [drivers/pwm/pwm-lpss-platform.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/pwm/pwm-lpss-platform.ko] undefined!
ERROR: "pwmchip_remove" [drivers/pwm/pwm-lpss.ko] undefined!
ERROR: "pwmchip_add" [drivers/pwm/pwm-lpss.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/pwm/pwm-lpss.ko] undefined!
ERROR: "devm_kmalloc" [drivers/pwm/pwm-lpss.ko] undefined!
ERROR: "__pm_runtime_idle" [drivers/pwm/pwm-lpss.ko] undefined!
ERROR: "_dev_err" [drivers/pwm/pwm-lpss.ko] undefined!
ERROR: "usleep_range" [drivers/pwm/pwm-lpss.ko] undefined!
ERROR: "__might_sleep" [drivers/pwm/pwm-lpss.ko] undefined!
ERROR: "ktime_get" [drivers/pwm/pwm-lpss.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/pwm/pwm-lpss.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/pwm/pwm-fsl-ftm.ko] undefined!
ERROR: "__platform_driver_register" [drivers/pwm/pwm-fsl-ftm.ko] undefined!
ERROR: "regmap_read" [drivers/pwm/pwm-fsl-ftm.ko] undefined!
ERROR: "regcache_sync" [drivers/pwm/pwm-fsl-ftm.ko] undefined!
ERROR: "_dev_err" [drivers/pwm/pwm-fsl-ftm.ko] undefined!
ERROR: "regmap_write" [drivers/pwm/pwm-fsl-ftm.ko] undefined!
ERROR: "clk_enable" [drivers/pwm/pwm-fsl-ftm.ko] undefined!
ERROR: "clk_prepare" [drivers/pwm/pwm-fsl-ftm.ko] undefined!
ERROR: "pwmchip_add" [drivers/pwm/pwm-fsl-ftm.ko] undefined!
ERROR: "of_pwm_xlate_with_flags" [drivers/pwm/pwm-fsl-ftm.ko] undefined!
ERROR: "devm_clk_get" [drivers/pwm/pwm-fsl-ftm.ko] undefined!
ERROR: "__devm_regmap_init_mmio_clk" [drivers/pwm/pwm-fsl-ftm.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/pwm/pwm-fsl-ftm.ko] undefined!
ERROR: "platform_get_resource" [drivers/pwm/pwm-fsl-ftm.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/pwm/pwm-fsl-ftm.ko] undefined!
ERROR: "__mutex_init" [drivers/pwm/pwm-fsl-ftm.ko] undefined!
ERROR: "devm_kmalloc" [drivers/pwm/pwm-fsl-ftm.ko] undefined!
ERROR: "clk_get_rate" [drivers/pwm/pwm-fsl-ftm.ko] undefined!
ERROR: "mutex_unlock" [drivers/pwm/pwm-fsl-ftm.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/pwm/pwm-fsl-ftm.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/pwm/pwm-fsl-ftm.ko] undefined!
ERROR: "pwmchip_remove" [drivers/pwm/pwm-fsl-ftm.ko] undefined!
ERROR: "clk_unprepare" [drivers/pwm/pwm-fsl-ftm.ko] undefined!
ERROR: "clk_disable" [drivers/pwm/pwm-fsl-ftm.ko] undefined!
ERROR: "regcache_mark_dirty" [drivers/pwm/pwm-fsl-ftm.ko] undefined!
ERROR: "regcache_cache_only" [drivers/pwm/pwm-fsl-ftm.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/pwm/pwm-cros-ec.ko] undefined!
ERROR: "__platform_driver_register" [drivers/pwm/pwm-cros-ec.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/pwm/pwm-cros-ec.ko] undefined!
ERROR: "pwmchip_add" [drivers/pwm/pwm-cros-ec.ko] undefined!
ERROR: "devm_kmalloc" [drivers/pwm/pwm-cros-ec.ko] undefined!
ERROR: "_dev_err" [drivers/pwm/pwm-cros-ec.ko] undefined!
ERROR: "cros_ec_cmd_xfer_status" [drivers/pwm/pwm-cros-ec.ko] undefined!
ERROR: "pwm_request_from_chip" [drivers/pwm/pwm-cros-ec.ko] undefined!
ERROR: "pwmchip_remove" [drivers/pwm/pwm-cros-ec.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/pwm/pwm-bcm-iproc.ko] undefined!
ERROR: "__platform_driver_register" [drivers/pwm/pwm-bcm-iproc.ko] undefined!
ERROR: "_dev_err" [drivers/pwm/pwm-bcm-iproc.ko] undefined!
ERROR: "pwmchip_add" [drivers/pwm/pwm-bcm-iproc.ko] undefined!
ERROR: "clk_enable" [drivers/pwm/pwm-bcm-iproc.ko] undefined!
ERROR: "clk_prepare" [drivers/pwm/pwm-bcm-iproc.ko] undefined!
ERROR: "devm_clk_get" [drivers/pwm/pwm-bcm-iproc.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/pwm/pwm-bcm-iproc.ko] undefined!
ERROR: "platform_get_resource" [drivers/pwm/pwm-bcm-iproc.ko] undefined!
ERROR: "of_pwm_xlate_with_flags" [drivers/pwm/pwm-bcm-iproc.ko] undefined!
ERROR: "devm_kmalloc" [drivers/pwm/pwm-bcm-iproc.ko] undefined!
ERROR: "__const_udelay" [drivers/pwm/pwm-bcm-iproc.ko] undefined!
ERROR: "div64_u64" [drivers/pwm/pwm-bcm-iproc.ko] undefined!
ERROR: "clk_get_rate" [drivers/pwm/pwm-bcm-iproc.ko] undefined!
ERROR: "pwmchip_remove" [drivers/pwm/pwm-bcm-iproc.ko] undefined!
ERROR: "clk_unprepare" [drivers/pwm/pwm-bcm-iproc.ko] undefined!
ERROR: "clk_disable" [drivers/pwm/pwm-bcm-iproc.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/gpio/gpio-wm8994.ko] undefined!
ERROR: "__platform_driver_register" [drivers/gpio/gpio-wm8994.ko] undefined!
ERROR: "devm_gpiochip_add_data" [drivers/gpio/gpio-wm8994.ko] undefined!
ERROR: "devm_kmalloc" [drivers/gpio/gpio-wm8994.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/gpio/gpio-wm8994.ko] undefined!
ERROR: "regmap_irq_get_virq" [drivers/gpio/gpio-wm8994.ko] undefined!
ERROR: "_dev_err" [drivers/gpio/gpio-wm8994.ko] undefined!
ERROR: "regmap_read" [drivers/gpio/gpio-wm8994.ko] undefined!
ERROR: "gpiochip_is_requested" [drivers/gpio/gpio-wm8994.ko] undefined!
ERROR: "seq_printf" [drivers/gpio/gpio-wm8994.ko] undefined!
ERROR: "gpiochip_get_data" [drivers/gpio/gpio-wm8994.ko] undefined!
ERROR: "param_ops_ulong" [drivers/gpio/gpio-winbond.ko] undefined!
ERROR: "param_ops_bool" [drivers/gpio/gpio-winbond.ko] undefined!
ERROR: "isa_unregister_driver" [drivers/gpio/gpio-winbond.ko] undefined!
ERROR: "isa_register_driver" [drivers/gpio/gpio-winbond.ko] undefined!
ERROR: "devm_gpiochip_add_data" [drivers/gpio/gpio-winbond.ko] undefined!
ERROR: "__sw_hweight32" [drivers/gpio/gpio-winbond.ko] undefined!
ERROR: "printk" [drivers/gpio/gpio-winbond.ko] undefined!
ERROR: "__release_region" [drivers/gpio/gpio-winbond.ko] undefined!
ERROR: "gpiochip_get_data" [drivers/gpio/gpio-winbond.ko] undefined!
ERROR: "__request_region" [drivers/gpio/gpio-winbond.ko] undefined!
ERROR: "ioport_resource" [drivers/gpio/gpio-winbond.ko] undefined!
ERROR: "find_next_bit" [drivers/gpio/gpio-winbond.ko] undefined!
ERROR: "find_first_bit" [drivers/gpio/gpio-winbond.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/gpio/gpio-ts5500.ko] undefined!
ERROR: "__platform_driver_register" [drivers/gpio/gpio-ts5500.ko] undefined!
ERROR: "__devm_request_region" [drivers/gpio/gpio-ts5500.ko] undefined!
ERROR: "ioport_resource" [drivers/gpio/gpio-ts5500.ko] undefined!
ERROR: "devm_gpiochip_add_data" [drivers/gpio/gpio-ts5500.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/gpio/gpio-ts5500.ko] undefined!
ERROR: "devm_kmalloc" [drivers/gpio/gpio-ts5500.ko] undefined!
ERROR: "platform_get_resource" [drivers/gpio/gpio-ts5500.ko] undefined!
ERROR: "gpiochip_get_data" [drivers/gpio/gpio-ts5500.ko] undefined!
ERROR: "_dev_err" [drivers/gpio/gpio-ts5500.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/gpio/gpio-ts5500.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/gpio/gpio-ts5500.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/gpio/gpio-tqmx86.ko] undefined!
ERROR: "__platform_driver_register" [drivers/gpio/gpio-tqmx86.ko] undefined!
ERROR: "_dev_err" [drivers/gpio/gpio-tqmx86.ko] undefined!
ERROR: "_dev_info" [drivers/gpio/gpio-tqmx86.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/gpio/gpio-tqmx86.ko] undefined!
ERROR: "devm_gpiochip_add_data" [drivers/gpio/gpio-tqmx86.ko] undefined!
ERROR: "handle_simple_irq" [drivers/gpio/gpio-tqmx86.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/gpio/gpio-tqmx86.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/gpio/gpio-tqmx86.ko] undefined!
ERROR: "devm_kmalloc" [drivers/gpio/gpio-tqmx86.ko] undefined!
ERROR: "devm_ioport_map" [drivers/gpio/gpio-tqmx86.ko] undefined!
ERROR: "platform_get_resource" [drivers/gpio/gpio-tqmx86.ko] undefined!
ERROR: "platform_get_irq" [drivers/gpio/gpio-tqmx86.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/gpio/gpio-tqmx86.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/gpio/gpio-tqmx86.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/gpio/gpio-tqmx86.ko] undefined!
ERROR: "find_next_bit" [drivers/gpio/gpio-tqmx86.ko] undefined!
ERROR: "generic_handle_irq" [drivers/gpio/gpio-tqmx86.ko] undefined!
ERROR: "irq_find_mapping" [drivers/gpio/gpio-tqmx86.ko] undefined!
ERROR: "find_first_bit" [drivers/gpio/gpio-tqmx86.ko] undefined!
ERROR: "iowrite8" [drivers/gpio/gpio-tqmx86.ko] undefined!
ERROR: "ioread8" [drivers/gpio/gpio-tqmx86.ko] undefined!
ERROR: "gpiochip_get_data" [drivers/gpio/gpio-tqmx86.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/gpio/gpio-tps65218.ko] undefined!
ERROR: "__platform_driver_register" [drivers/gpio/gpio-tps65218.ko] undefined!
ERROR: "devm_gpiochip_add_data" [drivers/gpio/gpio-tps65218.ko] undefined!
ERROR: "devm_kmalloc" [drivers/gpio/gpio-tps65218.ko] undefined!
ERROR: "_dev_err" [drivers/gpio/gpio-tps65218.ko] undefined!
ERROR: "gpiochip_line_is_open_drain" [drivers/gpio/gpio-tps65218.ko] undefined!
ERROR: "gpiochip_line_is_open_source" [drivers/gpio/gpio-tps65218.ko] undefined!
ERROR: "regmap_read" [drivers/gpio/gpio-tps65218.ko] undefined!
ERROR: "tps65218_clear_bits" [drivers/gpio/gpio-tps65218.ko] undefined!
ERROR: "tps65218_set_bits" [drivers/gpio/gpio-tps65218.ko] undefined!
ERROR: "gpiochip_get_data" [drivers/gpio/gpio-tps65218.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/gpio/gpio-tps65086.ko] undefined!
ERROR: "__platform_driver_register" [drivers/gpio/gpio-tps65086.ko] undefined!
ERROR: "_dev_err" [drivers/gpio/gpio-tps65086.ko] undefined!
ERROR: "gpiochip_add_data_with_key" [drivers/gpio/gpio-tps65086.ko] undefined!
ERROR: "devm_kmalloc" [drivers/gpio/gpio-tps65086.ko] undefined!
ERROR: "regmap_read" [drivers/gpio/gpio-tps65086.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/gpio/gpio-tps65086.ko] undefined!
ERROR: "gpiochip_get_data" [drivers/gpio/gpio-tps65086.ko] undefined!
ERROR: "gpiochip_remove" [drivers/gpio/gpio-tps65086.ko] undefined!
ERROR: "driver_unregister" [drivers/gpio/gpio-siox.ko] undefined!
ERROR: "__siox_driver_register" [drivers/gpio/gpio-siox.ko] undefined!
ERROR: "_dev_err" [drivers/gpio/gpio-siox.ko] undefined!
ERROR: "devm_gpiochip_add_data" [drivers/gpio/gpio-siox.ko] undefined!
ERROR: "handle_level_irq" [drivers/gpio/gpio-siox.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/gpio/gpio-siox.ko] undefined!
ERROR: "__mutex_init" [drivers/gpio/gpio-siox.ko] undefined!
ERROR: "devm_kmalloc" [drivers/gpio/gpio-siox.ko] undefined!
ERROR: "handle_nested_irq" [drivers/gpio/gpio-siox.ko] undefined!
ERROR: "irq_find_mapping" [drivers/gpio/gpio-siox.ko] undefined!
ERROR: "mutex_unlock" [drivers/gpio/gpio-siox.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/gpio/gpio-siox.ko] undefined!
ERROR: "_raw_spin_unlock_irq" [drivers/gpio/gpio-siox.ko] undefined!
ERROR: "_raw_spin_lock_irq" [drivers/gpio/gpio-siox.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/gpio/gpio-sch.ko] undefined!
ERROR: "__platform_driver_register" [drivers/gpio/gpio-sch.ko] undefined!
ERROR: "devm_gpiochip_add_data" [drivers/gpio/gpio-sch.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/gpio/gpio-sch.ko] undefined!
ERROR: "__devm_request_region" [drivers/gpio/gpio-sch.ko] undefined!
ERROR: "ioport_resource" [drivers/gpio/gpio-sch.ko] undefined!
ERROR: "platform_get_resource" [drivers/gpio/gpio-sch.ko] undefined!
ERROR: "devm_kmalloc" [drivers/gpio/gpio-sch.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/gpio/gpio-sch.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/gpio/gpio-sch.ko] undefined!
ERROR: "gpiochip_get_data" [drivers/gpio/gpio-sch.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/gpio/gpio-rcar.ko] undefined!
ERROR: "__platform_driver_register" [drivers/gpio/gpio-rcar.ko] undefined!
ERROR: "_dev_info" [drivers/gpio/gpio-rcar.ko] undefined!
ERROR: "_dev_warn" [drivers/gpio/gpio-rcar.ko] undefined!
ERROR: "_dev_err" [drivers/gpio/gpio-rcar.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/gpio/gpio-rcar.ko] undefined!
ERROR: "gpiochip_irqchip_add_key" [drivers/gpio/gpio-rcar.ko] undefined!
ERROR: "handle_level_irq" [drivers/gpio/gpio-rcar.ko] undefined!
ERROR: "gpiochip_add_data_with_key" [drivers/gpio/gpio-rcar.ko] undefined!
ERROR: "devm_platform_ioremap_resource" [drivers/gpio/gpio-rcar.ko] undefined!
ERROR: "platform_get_resource" [drivers/gpio/gpio-rcar.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/gpio/gpio-rcar.ko] undefined!
ERROR: "of_parse_phandle_with_fixed_args" [drivers/gpio/gpio-rcar.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/gpio/gpio-rcar.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/gpio/gpio-rcar.ko] undefined!
ERROR: "devm_kmalloc" [drivers/gpio/gpio-rcar.ko] undefined!
ERROR: "pinctrl_gpio_request" [drivers/gpio/gpio-rcar.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/gpio/gpio-rcar.ko] undefined!
ERROR: "__pm_runtime_idle" [drivers/gpio/gpio-rcar.ko] undefined!
ERROR: "pinctrl_gpio_free" [drivers/gpio/gpio-rcar.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/gpio/gpio-rcar.ko] undefined!
ERROR: "irq_set_irq_wake" [drivers/gpio/gpio-rcar.ko] undefined!
ERROR: "generic_handle_irq" [drivers/gpio/gpio-rcar.ko] undefined!
ERROR: "irq_find_mapping" [drivers/gpio/gpio-rcar.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/gpio/gpio-rcar.ko] undefined!
ERROR: "gpiochip_remove" [drivers/gpio/gpio-rcar.ko] undefined!
ERROR: "gpiochip_line_is_valid" [drivers/gpio/gpio-rcar.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/gpio/gpio-rcar.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/gpio/gpio-rcar.ko] undefined!
ERROR: "iowrite32" [drivers/gpio/gpio-rcar.ko] undefined!
ERROR: "gpiochip_get_data" [drivers/gpio/gpio-rcar.ko] undefined!
ERROR: "ioread32" [drivers/gpio/gpio-rcar.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/gpio/gpio-pmic-eic-sprd.ko] undefined!
ERROR: "__platform_driver_register" [drivers/gpio/gpio-pmic-eic-sprd.ko] undefined!
ERROR: "mutex_unlock" [drivers/gpio/gpio-pmic-eic-sprd.ko] undefined!
ERROR: "_dev_warn" [drivers/gpio/gpio-pmic-eic-sprd.ko] undefined!
ERROR: "irq_get_irq_data" [drivers/gpio/gpio-pmic-eic-sprd.ko] undefined!
ERROR: "handle_nested_irq" [drivers/gpio/gpio-pmic-eic-sprd.ko] undefined!
ERROR: "irq_find_mapping" [drivers/gpio/gpio-pmic-eic-sprd.ko] undefined!
ERROR: "find_next_bit" [drivers/gpio/gpio-pmic-eic-sprd.ko] undefined!
ERROR: "find_first_bit" [drivers/gpio/gpio-pmic-eic-sprd.ko] undefined!
ERROR: "_dev_err" [drivers/gpio/gpio-pmic-eic-sprd.ko] undefined!
ERROR: "devm_gpiochip_add_data" [drivers/gpio/gpio-pmic-eic-sprd.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/gpio/gpio-pmic-eic-sprd.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/gpio/gpio-pmic-eic-sprd.ko] undefined!
ERROR: "dev_get_regmap" [drivers/gpio/gpio-pmic-eic-sprd.ko] undefined!
ERROR: "platform_get_irq" [drivers/gpio/gpio-pmic-eic-sprd.ko] undefined!
ERROR: "__mutex_init" [drivers/gpio/gpio-pmic-eic-sprd.ko] undefined!
ERROR: "devm_kmalloc" [drivers/gpio/gpio-pmic-eic-sprd.ko] undefined!
ERROR: "regmap_write" [drivers/gpio/gpio-pmic-eic-sprd.ko] undefined!
ERROR: "regmap_read" [drivers/gpio/gpio-pmic-eic-sprd.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/gpio/gpio-pmic-eic-sprd.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/gpio/gpio-pmic-eic-sprd.ko] undefined!
ERROR: "gpiochip_get_data" [drivers/gpio/gpio-pmic-eic-sprd.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/gpio/gpio-max77650.ko] undefined!
ERROR: "__platform_driver_register" [drivers/gpio/gpio-max77650.ko] undefined!
ERROR: "devm_gpiochip_add_data" [drivers/gpio/gpio-max77650.ko] undefined!
ERROR: "platform_get_irq_byname" [drivers/gpio/gpio-max77650.ko] undefined!
ERROR: "dev_get_regmap" [drivers/gpio/gpio-max77650.ko] undefined!
ERROR: "devm_kmalloc" [drivers/gpio/gpio-max77650.ko] undefined!
ERROR: "_dev_err" [drivers/gpio/gpio-max77650.ko] undefined!
ERROR: "regmap_read" [drivers/gpio/gpio-max77650.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/gpio/gpio-max77650.ko] undefined!
ERROR: "gpiochip_get_data" [drivers/gpio/gpio-max77650.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/gpio/gpio-max77620.ko] undefined!
ERROR: "__platform_driver_register" [drivers/gpio/gpio-max77620.ko] undefined!
ERROR: "gpiochip_set_nested_irqchip" [drivers/gpio/gpio-max77620.ko] undefined!
ERROR: "request_threaded_irq" [drivers/gpio/gpio-max77620.ko] undefined!
ERROR: "gpiochip_irqchip_add_key" [drivers/gpio/gpio-max77620.ko] undefined!
ERROR: "handle_edge_irq" [drivers/gpio/gpio-max77620.ko] undefined!
ERROR: "__mutex_init" [drivers/gpio/gpio-max77620.ko] undefined!
ERROR: "devm_gpiochip_add_data" [drivers/gpio/gpio-max77620.ko] undefined!
ERROR: "devm_kmalloc" [drivers/gpio/gpio-max77620.ko] undefined!
ERROR: "platform_get_irq" [drivers/gpio/gpio-max77620.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/gpio/gpio-max77620.ko] undefined!
ERROR: "mutex_unlock" [drivers/gpio/gpio-max77620.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/gpio/gpio-max77620.ko] undefined!
ERROR: "gpiochip_get_data" [drivers/gpio/gpio-max77620.ko] undefined!
ERROR: "_dev_err" [drivers/gpio/gpio-max77620.ko] undefined!
ERROR: "find_next_bit" [drivers/gpio/gpio-max77620.ko] undefined!
ERROR: "handle_nested_irq" [drivers/gpio/gpio-max77620.ko] undefined!
ERROR: "irq_find_mapping" [drivers/gpio/gpio-max77620.ko] undefined!
ERROR: "find_first_bit" [drivers/gpio/gpio-max77620.ko] undefined!
ERROR: "regmap_read" [drivers/gpio/gpio-max77620.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/gpio/gpio-lpc32xx.ko] undefined!
ERROR: "__platform_driver_register" [drivers/gpio/gpio-lpc32xx.ko] undefined!
ERROR: "gpiochip_get_data" [drivers/gpio/gpio-lpc32xx.ko] undefined!
ERROR: "devm_gpiochip_add_data" [drivers/gpio/gpio-lpc32xx.ko] undefined!
ERROR: "devm_platform_ioremap_resource" [drivers/gpio/gpio-lpc32xx.ko] undefined!
ERROR: "irq_domain_free_irqs_common" [drivers/gpio/gpio-lpc18xx.ko] undefined!
ERROR: "irq_domain_xlate_twocell" [drivers/gpio/gpio-lpc18xx.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/gpio/gpio-lpc18xx.ko] undefined!
ERROR: "__platform_driver_register" [drivers/gpio/gpio-lpc18xx.ko] undefined!
ERROR: "devm_iounmap" [drivers/gpio/gpio-lpc18xx.ko] undefined!
ERROR: "_dev_err" [drivers/gpio/gpio-lpc18xx.ko] undefined!
ERROR: "devm_kfree" [drivers/gpio/gpio-lpc18xx.ko] undefined!
ERROR: "irq_domain_create_hierarchy" [drivers/gpio/gpio-lpc18xx.ko] undefined!
ERROR: "of_node_put" [drivers/gpio/gpio-lpc18xx.ko] undefined!
ERROR: "of_irq_find_parent" [drivers/gpio/gpio-lpc18xx.ko] undefined!
ERROR: "devm_gpiochip_add_data" [drivers/gpio/gpio-lpc18xx.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/gpio/gpio-lpc18xx.ko] undefined!
ERROR: "clk_enable" [drivers/gpio/gpio-lpc18xx.ko] undefined!
ERROR: "clk_prepare" [drivers/gpio/gpio-lpc18xx.ko] undefined!
ERROR: "devm_clk_get" [drivers/gpio/gpio-lpc18xx.ko] undefined!
ERROR: "devm_platform_ioremap_resource" [drivers/gpio/gpio-lpc18xx.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/gpio/gpio-lpc18xx.ko] undefined!
ERROR: "of_address_to_resource" [drivers/gpio/gpio-lpc18xx.ko] undefined!
ERROR: "of_property_match_string" [drivers/gpio/gpio-lpc18xx.ko] undefined!
ERROR: "gpiochip_generic_free" [drivers/gpio/gpio-lpc18xx.ko] undefined!
ERROR: "gpiochip_generic_request" [drivers/gpio/gpio-lpc18xx.ko] undefined!
ERROR: "devm_kmalloc" [drivers/gpio/gpio-lpc18xx.ko] undefined!
ERROR: "irq_find_matching_fwspec" [drivers/gpio/gpio-lpc18xx.ko] undefined!
ERROR: "irq_chip_mask_parent" [drivers/gpio/gpio-lpc18xx.ko] undefined!
ERROR: "irq_chip_unmask_parent" [drivers/gpio/gpio-lpc18xx.ko] undefined!
ERROR: "irq_chip_eoi_parent" [drivers/gpio/gpio-lpc18xx.ko] undefined!
ERROR: "printk" [drivers/gpio/gpio-lpc18xx.ko] undefined!
ERROR: "irq_domain_set_hwirq_and_chip" [drivers/gpio/gpio-lpc18xx.ko] undefined!
ERROR: "irq_domain_alloc_irqs_parent" [drivers/gpio/gpio-lpc18xx.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/gpio/gpio-lpc18xx.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/gpio/gpio-lpc18xx.ko] undefined!
ERROR: "gpiochip_get_data" [drivers/gpio/gpio-lpc18xx.ko] undefined!
ERROR: "clk_unprepare" [drivers/gpio/gpio-lpc18xx.ko] undefined!
ERROR: "clk_disable" [drivers/gpio/gpio-lpc18xx.ko] undefined!
ERROR: "irq_domain_remove" [drivers/gpio/gpio-lpc18xx.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/gpio/gpio-lpc18xx.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/gpio/gpio-lpc18xx.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/gpio/gpio-lp87565.ko] undefined!
ERROR: "__platform_driver_register" [drivers/gpio/gpio-lp87565.ko] undefined!
ERROR: "_dev_err" [drivers/gpio/gpio-lp87565.ko] undefined!
ERROR: "devm_gpiochip_add_data" [drivers/gpio/gpio-lp87565.ko] undefined!
ERROR: "devm_kmalloc" [drivers/gpio/gpio-lp87565.ko] undefined!
ERROR: "regmap_read" [drivers/gpio/gpio-lp87565.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/gpio/gpio-lp87565.ko] undefined!
ERROR: "gpiochip_get_data" [drivers/gpio/gpio-lp87565.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/gpio/gpio-lp873x.ko] undefined!
ERROR: "__platform_driver_register" [drivers/gpio/gpio-lp873x.ko] undefined!
ERROR: "_dev_err" [drivers/gpio/gpio-lp873x.ko] undefined!
ERROR: "devm_gpiochip_add_data" [drivers/gpio/gpio-lp873x.ko] undefined!
ERROR: "devm_kmalloc" [drivers/gpio/gpio-lp873x.ko] undefined!
ERROR: "regmap_read" [drivers/gpio/gpio-lp873x.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/gpio/gpio-lp873x.ko] undefined!
ERROR: "gpiochip_get_data" [drivers/gpio/gpio-lp873x.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/gpio/gpio-grgpio.ko] undefined!
ERROR: "__platform_driver_register" [drivers/gpio/gpio-grgpio.ko] undefined!
ERROR: "_dev_info" [drivers/gpio/gpio-grgpio.ko] undefined!
ERROR: "gpiochip_add_data_with_key" [drivers/gpio/gpio-grgpio.ko] undefined!
ERROR: "platform_get_irq" [drivers/gpio/gpio-grgpio.ko] undefined!
ERROR: "__irq_domain_add" [drivers/gpio/gpio-grgpio.ko] undefined!
ERROR: "of_get_property" [drivers/gpio/gpio-grgpio.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/gpio/gpio-grgpio.ko] undefined!
ERROR: "devm_kasprintf" [drivers/gpio/gpio-grgpio.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/gpio/gpio-grgpio.ko] undefined!
ERROR: "bgpio_init" [drivers/gpio/gpio-grgpio.ko] undefined!
ERROR: "devm_platform_ioremap_resource" [drivers/gpio/gpio-grgpio.ko] undefined!
ERROR: "devm_kmalloc" [drivers/gpio/gpio-grgpio.ko] undefined!
ERROR: "irq_create_mapping" [drivers/gpio/gpio-grgpio.ko] undefined!
ERROR: "gpiochip_get_data" [drivers/gpio/gpio-grgpio.ko] undefined!
ERROR: "_dev_err" [drivers/gpio/gpio-grgpio.ko] undefined!
ERROR: "irq_modify_status" [drivers/gpio/gpio-grgpio.ko] undefined!
ERROR: "handle_simple_irq" [drivers/gpio/gpio-grgpio.ko] undefined!
ERROR: "request_threaded_irq" [drivers/gpio/gpio-grgpio.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/gpio/gpio-grgpio.ko] undefined!
ERROR: "_dev_warn" [drivers/gpio/gpio-grgpio.ko] undefined!
ERROR: "generic_handle_irq" [drivers/gpio/gpio-grgpio.ko] undefined!
ERROR: "free_irq" [drivers/gpio/gpio-grgpio.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/gpio/gpio-grgpio.ko] undefined!
ERROR: "irq_set_chip_data" [drivers/gpio/gpio-grgpio.ko] undefined!
ERROR: "irq_set_chip_and_handler_name" [drivers/gpio/gpio-grgpio.ko] undefined!
ERROR: "irq_domain_remove" [drivers/gpio/gpio-grgpio.ko] undefined!
ERROR: "gpiochip_remove" [drivers/gpio/gpio-grgpio.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/gpio/gpio-grgpio.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/gpio/gpio-grgpio.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/gpio/gpio-grgpio.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "__platform_driver_register" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "_dev_warn" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "fwnode_handle_put" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "platform_get_irq" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "of_irq_get" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "fwnode_property_present" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "fwnode_property_read_u32_array" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "device_get_next_child_node" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "device_get_child_node_count" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "acpi_gpiochip_request_interrupts" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "irq_create_mapping" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "irq_set_chained_handler_and_data" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "handle_edge_irq" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "irq_gc_mask_clr_bit" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "irq_gc_mask_set_bit" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "irq_gc_ack_set_bit" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "irq_get_domain_generic_chip" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "__irq_alloc_domain_generic_chips" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "handle_level_irq" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "__irq_domain_add" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "irq_generic_chip_ops" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "acpi_match_device" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "is_acpi_device_node" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "_dev_info" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "clk_enable" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "clk_prepare" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "gpiochip_add_data_with_key" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "of_fwnode_ops" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "bgpio_init" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "devm_clk_get" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "devm_platform_ioremap_resource" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "reset_control_deassert" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "__devm_reset_control_get" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "devm_kmalloc" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "clk_unprepare" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "clk_disable" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "reset_control_assert" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "irq_domain_remove" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "irq_dispose_mapping" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "gpiochip_remove" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "irq_setup_alt_chip" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "_dev_err" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "gpiochip_lock_as_irq" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "gpiochip_unlock_as_irq" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "irq_get_irq_data" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "generic_handle_irq" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "irq_find_mapping" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "gpiochip_get_data" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/gpio/gpio-dwapb.ko] undefined!
ERROR: "irq_domain_xlate_twocell" [drivers/gpio/gpio-brcmstb.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/gpio/gpio-brcmstb.ko] undefined!
ERROR: "__platform_driver_register" [drivers/gpio/gpio-brcmstb.ko] undefined!
ERROR: "handle_level_irq" [drivers/gpio/gpio-brcmstb.ko] undefined!
ERROR: "lockdep_init_map" [drivers/gpio/gpio-brcmstb.ko] undefined!
ERROR: "irq_to_desc" [drivers/gpio/gpio-brcmstb.ko] undefined!
ERROR: "irq_set_irq_wake" [drivers/gpio/gpio-brcmstb.ko] undefined!
ERROR: "irq_modify_status" [drivers/gpio/gpio-brcmstb.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/gpio/gpio-brcmstb.ko] undefined!
ERROR: "device_wakeup_enable" [drivers/gpio/gpio-brcmstb.ko] undefined!
ERROR: "device_set_wakeup_capable" [drivers/gpio/gpio-brcmstb.ko] undefined!
ERROR: "__irq_domain_add" [drivers/gpio/gpio-brcmstb.ko] undefined!
ERROR: "__list_add_valid" [drivers/gpio/gpio-brcmstb.ko] undefined!
ERROR: "gpiochip_add_data_with_key" [drivers/gpio/gpio-brcmstb.ko] undefined!
ERROR: "devm_kasprintf" [drivers/gpio/gpio-brcmstb.ko] undefined!
ERROR: "bgpio_init" [drivers/gpio/gpio-brcmstb.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/gpio/gpio-brcmstb.ko] undefined!
ERROR: "of_prop_next_u32" [drivers/gpio/gpio-brcmstb.ko] undefined!
ERROR: "of_property_count_elems_of_size" [drivers/gpio/gpio-brcmstb.ko] undefined!
ERROR: "platform_get_irq" [drivers/gpio/gpio-brcmstb.ko] undefined!
ERROR: "of_find_property" [drivers/gpio/gpio-brcmstb.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/gpio/gpio-brcmstb.ko] undefined!
ERROR: "platform_get_resource" [drivers/gpio/gpio-brcmstb.ko] undefined!
ERROR: "devm_kmalloc" [drivers/gpio/gpio-brcmstb.ko] undefined!
ERROR: "irq_set_chip_data" [drivers/gpio/gpio-brcmstb.ko] undefined!
ERROR: "irq_set_chip_and_handler_name" [drivers/gpio/gpio-brcmstb.ko] undefined!
ERROR: "find_next_bit" [drivers/gpio/gpio-brcmstb.ko] undefined!
ERROR: "generic_handle_irq" [drivers/gpio/gpio-brcmstb.ko] undefined!
ERROR: "find_first_bit" [drivers/gpio/gpio-brcmstb.ko] undefined!
ERROR: "_dev_warn" [drivers/gpio/gpio-brcmstb.ko] undefined!
ERROR: "___ratelimit" [drivers/gpio/gpio-brcmstb.ko] undefined!
ERROR: "irq_create_mapping" [drivers/gpio/gpio-brcmstb.ko] undefined!
ERROR: "gpiochip_get_data" [drivers/gpio/gpio-brcmstb.ko] undefined!
ERROR: "_dev_err" [drivers/gpio/gpio-brcmstb.ko] undefined!
ERROR: "gpiochip_remove" [drivers/gpio/gpio-brcmstb.ko] undefined!
ERROR: "irq_domain_remove" [drivers/gpio/gpio-brcmstb.ko] undefined!
ERROR: "irq_dispose_mapping" [drivers/gpio/gpio-brcmstb.ko] undefined!
ERROR: "irq_find_mapping" [drivers/gpio/gpio-brcmstb.ko] undefined!
ERROR: "irq_set_chained_handler_and_data" [drivers/gpio/gpio-brcmstb.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/gpio/gpio-brcmstb.ko] undefined!
ERROR: "disable_irq" [drivers/gpio/gpio-brcmstb.ko] undefined!
ERROR: "pm_wakeup_dev_event" [drivers/gpio/gpio-brcmstb.ko] undefined!
ERROR: "enable_irq" [drivers/gpio/gpio-brcmstb.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/gpio/gpio-brcmstb.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/gpio/gpio-brcmstb.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/gpio/gpio-brcmstb.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/gpio/gpio-brcmstb.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/gpio/gpio-bd71828.ko] undefined!
ERROR: "__platform_driver_register" [drivers/gpio/gpio-bd71828.ko] undefined!
ERROR: "devm_gpiochip_add_data" [drivers/gpio/gpio-bd71828.ko] undefined!
ERROR: "devm_kmalloc" [drivers/gpio/gpio-bd71828.ko] undefined!
ERROR: "regmap_read" [drivers/gpio/gpio-bd71828.ko] undefined!
ERROR: "_dev_err" [drivers/gpio/gpio-bd71828.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/gpio/gpio-bd71828.ko] undefined!
ERROR: "gpiochip_get_data" [drivers/gpio/gpio-bd71828.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/gpio/gpio-ath79.ko] undefined!
ERROR: "__platform_driver_register" [drivers/gpio/gpio-ath79.ko] undefined!
ERROR: "_dev_err" [drivers/gpio/gpio-ath79.ko] undefined!
ERROR: "devm_gpiochip_add_data" [drivers/gpio/gpio-ath79.ko] undefined!
ERROR: "handle_simple_irq" [drivers/gpio/gpio-ath79.ko] undefined!
ERROR: "platform_get_irq" [drivers/gpio/gpio-ath79.ko] undefined!
ERROR: "of_find_property" [drivers/gpio/gpio-ath79.ko] undefined!
ERROR: "bgpio_init" [drivers/gpio/gpio-ath79.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/gpio/gpio-ath79.ko] undefined!
ERROR: "devm_platform_ioremap_resource" [drivers/gpio/gpio-ath79.ko] undefined!
ERROR: "of_device_is_compatible" [drivers/gpio/gpio-ath79.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/gpio/gpio-ath79.ko] undefined!
ERROR: "devm_kmalloc" [drivers/gpio/gpio-ath79.ko] undefined!
ERROR: "find_next_bit" [drivers/gpio/gpio-ath79.ko] undefined!
ERROR: "generic_handle_irq" [drivers/gpio/gpio-ath79.ko] undefined!
ERROR: "find_first_bit" [drivers/gpio/gpio-ath79.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/gpio/gpio-ath79.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/gpio/gpio-ath79.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/gpio/gpio-ath79.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/gpio/gpio-amd-fch.ko] undefined!
ERROR: "__platform_driver_register" [drivers/gpio/gpio-amd-fch.ko] undefined!
ERROR: "_dev_err" [drivers/gpio/gpio-amd-fch.ko] undefined!
ERROR: "devm_gpiochip_add_data" [drivers/gpio/gpio-amd-fch.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/gpio/gpio-amd-fch.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/gpio/gpio-amd-fch.ko] undefined!
ERROR: "devm_kmalloc" [drivers/gpio/gpio-amd-fch.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/gpio/gpio-amd-fch.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/gpio/gpio-amd-fch.ko] undefined!
ERROR: "gpiochip_get_data" [drivers/gpio/gpio-amd-fch.ko] undefined!
ERROR: "gpiochip_remove" [drivers/gpio/gpio-amd8111.ko] undefined!
ERROR: "ioport_unmap" [drivers/gpio/gpio-amd8111.ko] undefined!
ERROR: "gpiochip_add_data_with_key" [drivers/gpio/gpio-amd8111.ko] undefined!
ERROR: "printk" [drivers/gpio/gpio-amd8111.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/gpio/gpio-amd8111.ko] undefined!
ERROR: "ioport_map" [drivers/gpio/gpio-amd8111.ko] undefined!
ERROR: "_dev_err" [drivers/gpio/gpio-amd8111.ko] undefined!
ERROR: "__devm_request_region" [drivers/gpio/gpio-amd8111.ko] undefined!
ERROR: "ioport_resource" [drivers/gpio/gpio-amd8111.ko] undefined!
ERROR: "pci_read_config_dword" [drivers/gpio/gpio-amd8111.ko] undefined!
ERROR: "pci_match_id" [drivers/gpio/gpio-amd8111.ko] undefined!
ERROR: "pci_get_device" [drivers/gpio/gpio-amd8111.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/gpio/gpio-amd8111.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/gpio/gpio-amd8111.ko] undefined!
ERROR: "iowrite8" [drivers/gpio/gpio-amd8111.ko] undefined!
ERROR: "ioread8" [drivers/gpio/gpio-amd8111.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/gpio/gpio-amd8111.ko] undefined!
ERROR: "gpiochip_get_data" [drivers/gpio/gpio-amd8111.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/gpio/gpio-altera.ko] undefined!
ERROR: "__platform_driver_register" [drivers/gpio/gpio-altera.ko] undefined!
ERROR: "_dev_warn" [drivers/gpio/gpio-altera.ko] undefined!
ERROR: "_dev_err" [drivers/gpio/gpio-altera.ko] undefined!
ERROR: "of_mm_gpiochip_add_data" [drivers/gpio/gpio-altera.ko] undefined!
ERROR: "platform_get_irq_optional" [drivers/gpio/gpio-altera.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/gpio/gpio-altera.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/gpio/gpio-altera.ko] undefined!
ERROR: "devm_kmalloc" [drivers/gpio/gpio-altera.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/gpio/gpio-altera.ko] undefined!
ERROR: "find_next_bit" [drivers/gpio/gpio-altera.ko] undefined!
ERROR: "generic_handle_irq" [drivers/gpio/gpio-altera.ko] undefined!
ERROR: "irq_find_mapping" [drivers/gpio/gpio-altera.ko] undefined!
ERROR: "find_first_bit" [drivers/gpio/gpio-altera.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/gpio/gpio-altera.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/gpio/gpio-altera.ko] undefined!
ERROR: "handle_bad_irq" [drivers/gpio/gpio-altera.ko] undefined!
ERROR: "handle_level_irq" [drivers/gpio/gpio-altera.ko] undefined!
ERROR: "handle_simple_irq" [drivers/gpio/gpio-altera.ko] undefined!
ERROR: "gpiochip_get_data" [drivers/gpio/gpio-altera.ko] undefined!
ERROR: "of_mm_gpiochip_remove" [drivers/gpio/gpio-altera.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/gpio/gpio-adp5520.ko] undefined!
ERROR: "__platform_driver_register" [drivers/gpio/gpio-adp5520.ko] undefined!
ERROR: "_dev_err" [drivers/gpio/gpio-adp5520.ko] undefined!
ERROR: "devm_gpiochip_add_data" [drivers/gpio/gpio-adp5520.ko] undefined!
ERROR: "devm_kmalloc" [drivers/gpio/gpio-adp5520.ko] undefined!
ERROR: "adp5520_read" [drivers/gpio/gpio-adp5520.ko] undefined!
ERROR: "adp5520_clr_bits" [drivers/gpio/gpio-adp5520.ko] undefined!
ERROR: "adp5520_set_bits" [drivers/gpio/gpio-adp5520.ko] undefined!
ERROR: "gpiochip_get_data" [drivers/gpio/gpio-adp5520.ko] undefined!
ERROR: "i2c_del_driver" [drivers/gpio/gpio-adnp.ko] undefined!
ERROR: "i2c_register_driver" [drivers/gpio/gpio-adnp.ko] undefined!
ERROR: "gpiochip_set_nested_irqchip" [drivers/gpio/gpio-adnp.ko] undefined!
ERROR: "gpiochip_irqchip_add_key" [drivers/gpio/gpio-adnp.ko] undefined!
ERROR: "handle_simple_irq" [drivers/gpio/gpio-adnp.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/gpio/gpio-adnp.ko] undefined!
ERROR: "of_find_property" [drivers/gpio/gpio-adnp.ko] undefined!
ERROR: "devm_gpiochip_add_data" [drivers/gpio/gpio-adnp.ko] undefined!
ERROR: "__mutex_init" [drivers/gpio/gpio-adnp.ko] undefined!
ERROR: "devm_kmalloc" [drivers/gpio/gpio-adnp.ko] undefined!
ERROR: "irq_of_parse_and_map" [drivers/gpio/gpio-adnp.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/gpio/gpio-adnp.ko] undefined!
ERROR: "find_next_bit" [drivers/gpio/gpio-adnp.ko] undefined!
ERROR: "handle_nested_irq" [drivers/gpio/gpio-adnp.ko] undefined!
ERROR: "irq_find_mapping" [drivers/gpio/gpio-adnp.ko] undefined!
ERROR: "find_first_bit" [drivers/gpio/gpio-adnp.ko] undefined!
ERROR: "i2c_smbus_write_byte_data" [drivers/gpio/gpio-adnp.ko] undefined!
ERROR: "seq_printf" [drivers/gpio/gpio-adnp.ko] undefined!
ERROR: "mutex_unlock" [drivers/gpio/gpio-adnp.ko] undefined!
ERROR: "_dev_err" [drivers/gpio/gpio-adnp.ko] undefined!
ERROR: "i2c_smbus_read_byte_data" [drivers/gpio/gpio-adnp.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/gpio/gpio-adnp.ko] undefined!
ERROR: "gpiochip_get_data" [drivers/gpio/gpio-adnp.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/gpio/gpio-74xx-mmio.ko] undefined!
ERROR: "__platform_driver_register" [drivers/gpio/gpio-74xx-mmio.ko] undefined!
ERROR: "devm_gpiochip_add_data" [drivers/gpio/gpio-74xx-mmio.ko] undefined!
ERROR: "bgpio_init" [drivers/gpio/gpio-74xx-mmio.ko] undefined!
ERROR: "devm_platform_ioremap_resource" [drivers/gpio/gpio-74xx-mmio.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/gpio/gpio-74xx-mmio.ko] undefined!
ERROR: "devm_kmalloc" [drivers/gpio/gpio-74xx-mmio.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [drivers/gpio/gpio-74xx-mmio.ko] undefined!
ERROR: "gpiochip_get_data" [drivers/gpio/gpio-74xx-mmio.ko] undefined!
ERROR: "param_ops_uint" [drivers/gpio/gpio-104-idi-48.ko] undefined!
ERROR: "param_array_ops" [drivers/gpio/gpio-104-idi-48.ko] undefined!
ERROR: "isa_unregister_driver" [drivers/gpio/gpio-104-idi-48.ko] undefined!
ERROR: "isa_register_driver" [drivers/gpio/gpio-104-idi-48.ko] undefined!
ERROR: "_dev_err" [drivers/gpio/gpio-104-idi-48.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/gpio/gpio-104-idi-48.ko] undefined!
ERROR: "gpiochip_irqchip_add_key" [drivers/gpio/gpio-104-idi-48.ko] undefined!
ERROR: "handle_edge_irq" [drivers/gpio/gpio-104-idi-48.ko] undefined!
ERROR: "devm_gpiochip_add_data" [drivers/gpio/gpio-104-idi-48.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/gpio/gpio-104-idi-48.ko] undefined!
ERROR: "__devm_request_region" [drivers/gpio/gpio-104-idi-48.ko] undefined!
ERROR: "ioport_resource" [drivers/gpio/gpio-104-idi-48.ko] undefined!
ERROR: "devm_kmalloc" [drivers/gpio/gpio-104-idi-48.ko] undefined!
ERROR: "find_next_clump8" [drivers/gpio/gpio-104-idi-48.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/gpio/gpio-104-idi-48.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/gpio/gpio-104-idi-48.ko] undefined!
ERROR: "gpiochip_get_data" [drivers/gpio/gpio-104-idi-48.ko] undefined!
ERROR: "find_next_bit" [drivers/gpio/gpio-104-idi-48.ko] undefined!
ERROR: "generic_handle_irq" [drivers/gpio/gpio-104-idi-48.ko] undefined!
ERROR: "irq_find_mapping" [drivers/gpio/gpio-104-idi-48.ko] undefined!
ERROR: "find_first_bit" [drivers/gpio/gpio-104-idi-48.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/gpio/gpio-104-idi-48.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/gpio/gpio-104-idi-48.ko] undefined!
ERROR: "pinctrl_utils_free_map" [drivers/pinctrl/pinctrl-rk805.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/pinctrl/pinctrl-rk805.ko] undefined!
ERROR: "__platform_driver_register" [drivers/pinctrl/pinctrl-rk805.ko] undefined!
ERROR: "gpiochip_add_pin_range" [drivers/pinctrl/pinctrl-rk805.ko] undefined!
ERROR: "devm_pinctrl_register" [drivers/pinctrl/pinctrl-rk805.ko] undefined!
ERROR: "devm_gpiochip_add_data" [drivers/pinctrl/pinctrl-rk805.ko] undefined!
ERROR: "gpiochip_generic_free" [drivers/pinctrl/pinctrl-rk805.ko] undefined!
ERROR: "gpiochip_generic_request" [drivers/pinctrl/pinctrl-rk805.ko] undefined!
ERROR: "devm_kmalloc" [drivers/pinctrl/pinctrl-rk805.ko] undefined!
ERROR: "pinconf_generic_dt_node_to_map" [drivers/pinctrl/pinctrl-rk805.ko] undefined!
ERROR: "pinctrl_dev_get_drvdata" [drivers/pinctrl/pinctrl-rk805.ko] undefined!
ERROR: "pinctrl_gpio_direction_input" [drivers/pinctrl/pinctrl-rk805.ko] undefined!
ERROR: "pinctrl_gpio_direction_output" [drivers/pinctrl/pinctrl-rk805.ko] undefined!
ERROR: "regmap_read" [drivers/pinctrl/pinctrl-rk805.ko] undefined!
ERROR: "_dev_err" [drivers/pinctrl/pinctrl-rk805.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/pinctrl/pinctrl-rk805.ko] undefined!
ERROR: "gpiochip_get_data" [drivers/pinctrl/pinctrl-rk805.ko] undefined!
ERROR: "pinctrl_generic_get_group_name" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "pinctrl_generic_get_group_count" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "pinmux_generic_get_function_groups" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "pinmux_generic_get_function_name" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "pinmux_generic_get_function_count" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "irq_domain_xlate_onecell" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "__platform_driver_register" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "__x86_indirect_thunk_eax" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "irq_modify_status" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "lockdep_init_map" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "irq_to_desc" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "irq_set_chip_and_handler_name" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "handle_level_irq" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "irq_set_chip_data" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "devm_kstrdup" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "pinctrl_enable" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "_dev_info" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "irq_set_chained_handler_and_data" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "irq_domain_add_simple" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "request_threaded_irq" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "irq_of_parse_and_map" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "of_parse_phandle_with_args" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "__list_add_valid" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "pinctrl_register_and_init" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "devm_ioremap" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "__devm_request_region" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "iomem_resource" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "platform_get_resource" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "__mutex_init" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "_dev_warn" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "pinctrl_generic_remove_group" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "pinmux_generic_remove_function" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "of_find_property" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "mutex_unlock" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "pinctrl_generic_add_group" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "mutex_lock_nested" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "pinctrl_parse_index_with_args" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "pinctrl_count_index_with_args" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "pinmux_generic_add_function" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "generic_handle_irq" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "irq_find_mapping" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "seq_printf" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "devm_kfree" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "pinctrl_generic_get_group_pins" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "pinmux_generic_get_function" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "radix_tree_lookup" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "pinctrl_dev_get_drvdata" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "pinconf_generic_dump_config" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "_dev_err" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "pinctrl_unregister" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "__irq_set_handler" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "free_irq" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "irq_domain_remove" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "devm_kmalloc" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "pinctrl_force_sleep" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "pinctrl_force_default" [drivers/pinctrl/pinctrl-single.ko] undefined!
ERROR: "pinctrl_utils_free_map" [drivers/pinctrl/pinctrl-max77620.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/pinctrl/pinctrl-max77620.ko] undefined!
ERROR: "__platform_driver_register" [drivers/pinctrl/pinctrl-max77620.ko] undefined!
ERROR: "devm_pinctrl_register" [drivers/pinctrl/pinctrl-max77620.ko] undefined!
ERROR: "devm_kmalloc" [drivers/pinctrl/pinctrl-max77620.ko] undefined!
ERROR: "pinconf_generic_dt_node_to_map" [drivers/pinctrl/pinctrl-max77620.ko] undefined!
ERROR: "regmap_read" [drivers/pinctrl/pinctrl-max77620.ko] undefined!
ERROR: "pinctrl_dev_get_drvdata" [drivers/pinctrl/pinctrl-max77620.ko] undefined!
ERROR: "_dev_err" [drivers/pinctrl/pinctrl-max77620.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/pinctrl/pinctrl-max77620.ko] undefined!
ERROR: "pinconf_generic_dt_free_map" [drivers/pinctrl/pinctrl-axp209.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/pinctrl/pinctrl-axp209.ko] undefined!
ERROR: "__platform_driver_register" [drivers/pinctrl/pinctrl-axp209.ko] undefined!
ERROR: "_dev_info" [drivers/pinctrl/pinctrl-axp209.ko] undefined!
ERROR: "_dev_err" [drivers/pinctrl/pinctrl-axp209.ko] undefined!
ERROR: "gpiochip_add_pin_range" [drivers/pinctrl/pinctrl-axp209.ko] undefined!
ERROR: "devm_gpiochip_add_data" [drivers/pinctrl/pinctrl-axp209.ko] undefined!
ERROR: "devm_pinctrl_register" [drivers/pinctrl/pinctrl-axp209.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/pinctrl/pinctrl-axp209.ko] undefined!
ERROR: "gpiochip_generic_free" [drivers/pinctrl/pinctrl-axp209.ko] undefined!
ERROR: "gpiochip_generic_request" [drivers/pinctrl/pinctrl-axp209.ko] undefined!
ERROR: "of_device_is_available" [drivers/pinctrl/pinctrl-axp209.ko] undefined!
ERROR: "find_next_bit" [drivers/pinctrl/pinctrl-axp209.ko] undefined!
ERROR: "find_first_bit" [drivers/pinctrl/pinctrl-axp209.ko] undefined!
ERROR: "devm_kmalloc" [drivers/pinctrl/pinctrl-axp209.ko] undefined!
ERROR: "__sw_hweight32" [drivers/pinctrl/pinctrl-axp209.ko] undefined!
ERROR: "regmap_read" [drivers/pinctrl/pinctrl-axp209.ko] undefined!
ERROR: "gpiochip_get_data" [drivers/pinctrl/pinctrl-axp209.ko] undefined!
ERROR: "pinctrl_gpio_direction_input" [drivers/pinctrl/pinctrl-axp209.ko] undefined!
ERROR: "pinconf_generic_dt_node_to_map" [drivers/pinctrl/pinctrl-axp209.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/pinctrl/pinctrl-axp209.ko] undefined!
ERROR: "pinctrl_dev_get_drvdata" [drivers/pinctrl/pinctrl-axp209.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [drivers/pinctrl/pinctrl-axp209.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/pinctrl/pxa/pinctrl-pxa25x.ko] undefined!
ERROR: "__platform_driver_register" [drivers/pinctrl/pxa/pinctrl-pxa25x.ko] undefined!
ERROR: "pxa2xx_pinctrl_init" [drivers/pinctrl/pxa/pinctrl-pxa25x.ko] undefined!
ERROR: "devm_platform_ioremap_resource" [drivers/pinctrl/pxa/pinctrl-pxa25x.ko] undefined!
ERROR: "intel_pinctrl_resume_noirq" [drivers/pinctrl/intel/pinctrl-sunrisepoint.ko] undefined!
ERROR: "intel_pinctrl_suspend_noirq" [drivers/pinctrl/intel/pinctrl-sunrisepoint.ko] undefined!
ERROR: "intel_pinctrl_probe_by_hid" [drivers/pinctrl/intel/pinctrl-sunrisepoint.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/pinctrl/intel/pinctrl-sunrisepoint.ko] undefined!
ERROR: "__platform_driver_register" [drivers/pinctrl/intel/pinctrl-sunrisepoint.ko] undefined!
ERROR: "intel_pinctrl_resume_noirq" [drivers/pinctrl/intel/pinctrl-lewisburg.ko] undefined!
ERROR: "intel_pinctrl_suspend_noirq" [drivers/pinctrl/intel/pinctrl-lewisburg.ko] undefined!
ERROR: "intel_pinctrl_probe_by_hid" [drivers/pinctrl/intel/pinctrl-lewisburg.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/pinctrl/intel/pinctrl-lewisburg.ko] undefined!
ERROR: "__platform_driver_register" [drivers/pinctrl/intel/pinctrl-lewisburg.ko] undefined!
ERROR: "param_ops_int" [drivers/phy/phy-xgene.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/phy/phy-xgene.ko] undefined!
ERROR: "__platform_driver_register" [drivers/phy/phy-xgene.ko] undefined!
ERROR: "_dev_err" [drivers/phy/phy-xgene.ko] undefined!
ERROR: "clk_enable" [drivers/phy/phy-xgene.ko] undefined!
ERROR: "clk_unprepare" [drivers/phy/phy-xgene.ko] undefined!
ERROR: "clk_disable" [drivers/phy/phy-xgene.ko] undefined!
ERROR: "clk_prepare" [drivers/phy/phy-xgene.ko] undefined!
ERROR: "usleep_range" [drivers/phy/phy-xgene.ko] undefined!
ERROR: "__dynamic_pr_debug" [drivers/phy/phy-xgene.ko] undefined!
ERROR: "printk" [drivers/phy/phy-xgene.ko] undefined!
ERROR: "jiffies" [drivers/phy/phy-xgene.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/phy/phy-xgene.ko] undefined!
ERROR: "__devm_of_phy_provider_register" [drivers/phy/phy-xgene.ko] undefined!
ERROR: "devm_phy_create" [drivers/phy/phy-xgene.ko] undefined!
ERROR: "clk_get" [drivers/phy/phy-xgene.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/phy/phy-xgene.ko] undefined!
ERROR: "platform_get_resource" [drivers/phy/phy-xgene.ko] undefined!
ERROR: "devm_kmalloc" [drivers/phy/phy-xgene.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/phy/phy-xgene.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/phy/ti/phy-j721e-wiz.ko] undefined!
ERROR: "__platform_driver_register" [drivers/phy/ti/phy-j721e-wiz.ko] undefined!
ERROR: "_dev_warn" [drivers/phy/ti/phy-j721e-wiz.ko] undefined!
ERROR: "__const_udelay" [drivers/phy/ti/phy-j721e-wiz.ko] undefined!
ERROR: "__warn_printk" [drivers/phy/ti/phy-j721e-wiz.ko] undefined!
ERROR: "dev_driver_string" [drivers/phy/ti/phy-j721e-wiz.ko] undefined!
ERROR: "of_platform_device_create" [drivers/phy/ti/phy-j721e-wiz.ko] undefined!
ERROR: "__pm_runtime_resume" [drivers/phy/ti/phy-j721e-wiz.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/phy/ti/phy-j721e-wiz.ko] undefined!
ERROR: "devm_reset_controller_register" [drivers/phy/ti/phy-j721e-wiz.ko] undefined!
ERROR: "devm_regmap_field_alloc" [drivers/phy/ti/phy-j721e-wiz.ko] undefined!
ERROR: "devm_gpiod_get_optional" [drivers/phy/ti/phy-j721e-wiz.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/phy/ti/phy-j721e-wiz.ko] undefined!
ERROR: "__devm_regmap_init_mmio_clk" [drivers/phy/ti/phy-j721e-wiz.ko] undefined!
ERROR: "devm_ioremap" [drivers/phy/ti/phy-j721e-wiz.ko] undefined!
ERROR: "of_address_to_resource" [drivers/phy/ti/phy-j721e-wiz.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/phy/ti/phy-j721e-wiz.ko] undefined!
ERROR: "_dev_err" [drivers/phy/ti/phy-j721e-wiz.ko] undefined!
ERROR: "of_clk_add_provider" [drivers/phy/ti/phy-j721e-wiz.ko] undefined!
ERROR: "of_clk_src_simple_get" [drivers/phy/ti/phy-j721e-wiz.ko] undefined!
ERROR: "devm_clk_register" [drivers/phy/ti/phy-j721e-wiz.ko] undefined!
ERROR: "snprintf" [drivers/phy/ti/phy-j721e-wiz.ko] undefined!
ERROR: "of_clk_parent_fill" [drivers/phy/ti/phy-j721e-wiz.ko] undefined!
ERROR: "of_clk_get_parent_count" [drivers/phy/ti/phy-j721e-wiz.ko] undefined!
ERROR: "devm_kmalloc" [drivers/phy/ti/phy-j721e-wiz.ko] undefined!
ERROR: "clk_get_rate" [drivers/phy/ti/phy-j721e-wiz.ko] undefined!
ERROR: "devm_clk_get" [drivers/phy/ti/phy-j721e-wiz.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/phy/ti/phy-j721e-wiz.ko] undefined!
ERROR: "__pm_runtime_idle" [drivers/phy/ti/phy-j721e-wiz.ko] undefined!
ERROR: "of_platform_device_destroy" [drivers/phy/ti/phy-j721e-wiz.ko] undefined!
ERROR: "of_node_put" [drivers/phy/ti/phy-j721e-wiz.ko] undefined!
ERROR: "of_clk_del_provider" [drivers/phy/ti/phy-j721e-wiz.ko] undefined!
ERROR: "of_get_child_by_name" [drivers/phy/ti/phy-j721e-wiz.ko] undefined!
ERROR: "divider_recalc_rate" [drivers/phy/ti/phy-j721e-wiz.ko] undefined!
ERROR: "divider_round_rate_parent" [drivers/phy/ti/phy-j721e-wiz.ko] undefined!
ERROR: "clk_hw_get_parent" [drivers/phy/ti/phy-j721e-wiz.ko] undefined!
ERROR: "divider_get_val" [drivers/phy/ti/phy-j721e-wiz.ko] undefined!
ERROR: "clk_mux_val_to_index" [drivers/phy/ti/phy-j721e-wiz.ko] undefined!
ERROR: "regmap_field_read" [drivers/phy/ti/phy-j721e-wiz.ko] undefined!
ERROR: "msleep_interruptible" [drivers/phy/ti/phy-j721e-wiz.ko] undefined!
ERROR: "regmap_field_update_bits_base" [drivers/phy/ti/phy-j721e-wiz.ko] undefined!
ERROR: "gpiod_get_value_cansleep" [drivers/phy/ti/phy-j721e-wiz.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/phy/ti/phy-gmii-sel.ko] undefined!
ERROR: "__platform_driver_register" [drivers/phy/ti/phy-gmii-sel.ko] undefined!
ERROR: "_dev_warn" [drivers/phy/ti/phy-gmii-sel.ko] undefined!
ERROR: "regmap_field_update_bits_base" [drivers/phy/ti/phy-gmii-sel.ko] undefined!
ERROR: "_dev_err" [drivers/phy/ti/phy-gmii-sel.ko] undefined!
ERROR: "__devm_of_phy_provider_register" [drivers/phy/ti/phy-gmii-sel.ko] undefined!
ERROR: "devm_phy_create" [drivers/phy/ti/phy-gmii-sel.ko] undefined!
ERROR: "devm_regmap_field_alloc" [drivers/phy/ti/phy-gmii-sel.ko] undefined!
ERROR: "syscon_node_to_regmap" [drivers/phy/ti/phy-gmii-sel.ko] undefined!
ERROR: "devm_kmalloc" [drivers/phy/ti/phy-gmii-sel.ko] undefined!
ERROR: "of_match_node" [drivers/phy/ti/phy-gmii-sel.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/phy/ti/phy-gmii-sel.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/phy/ti/phy-am654-serdes.ko] undefined!
ERROR: "__platform_driver_register" [drivers/phy/ti/phy-am654-serdes.ko] undefined!
ERROR: "__devm_of_phy_provider_register" [drivers/phy/ti/phy-am654-serdes.ko] undefined!
ERROR: "devm_phy_create" [drivers/phy/ti/phy-am654-serdes.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/phy/ti/phy-am654-serdes.ko] undefined!
ERROR: "of_clk_add_provider" [drivers/phy/ti/phy-am654-serdes.ko] undefined!
ERROR: "of_clk_src_onecell_get" [drivers/phy/ti/phy-am654-serdes.ko] undefined!
ERROR: "of_node_put" [drivers/phy/ti/phy-am654-serdes.ko] undefined!
ERROR: "devm_clk_register" [drivers/phy/ti/phy-am654-serdes.ko] undefined!
ERROR: "of_get_address" [drivers/phy/ti/phy-am654-serdes.ko] undefined!
ERROR: "of_clk_parent_fill" [drivers/phy/ti/phy-am654-serdes.ko] undefined!
ERROR: "of_clk_get_parent_count" [drivers/phy/ti/phy-am654-serdes.ko] undefined!
ERROR: "syscon_node_to_regmap" [drivers/phy/ti/phy-am654-serdes.ko] undefined!
ERROR: "of_parse_phandle" [drivers/phy/ti/phy-am654-serdes.ko] undefined!
ERROR: "of_property_read_string_helper" [drivers/phy/ti/phy-am654-serdes.ko] undefined!
ERROR: "devm_regmap_field_alloc" [drivers/phy/ti/phy-am654-serdes.ko] undefined!
ERROR: "devm_mux_control_get" [drivers/phy/ti/phy-am654-serdes.ko] undefined!
ERROR: "__devm_regmap_init_mmio_clk" [drivers/phy/ti/phy-am654-serdes.ko] undefined!
ERROR: "devm_platform_ioremap_resource" [drivers/phy/ti/phy-am654-serdes.ko] undefined!
ERROR: "devm_kmalloc" [drivers/phy/ti/phy-am654-serdes.ko] undefined!
ERROR: "usleep_range" [drivers/phy/ti/phy-am654-serdes.ko] undefined!
ERROR: "regmap_field_read" [drivers/phy/ti/phy-am654-serdes.ko] undefined!
ERROR: "__might_sleep" [drivers/phy/ti/phy-am654-serdes.ko] undefined!
ERROR: "ktime_get" [drivers/phy/ti/phy-am654-serdes.ko] undefined!
ERROR: "__warn_printk" [drivers/phy/ti/phy-am654-serdes.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/phy/ti/phy-am654-serdes.ko] undefined!
ERROR: "clk_hw_get_name" [drivers/phy/ti/phy-am654-serdes.ko] undefined!
ERROR: "regmap_read" [drivers/phy/ti/phy-am654-serdes.ko] undefined!
ERROR: "__const_udelay" [drivers/phy/ti/phy-am654-serdes.ko] undefined!
ERROR: "regmap_field_update_bits_base" [drivers/phy/ti/phy-am654-serdes.ko] undefined!
ERROR: "mux_control_deselect" [drivers/phy/ti/phy-am654-serdes.ko] undefined!
ERROR: "_dev_err" [drivers/phy/ti/phy-am654-serdes.ko] undefined!
ERROR: "mux_control_select" [drivers/phy/ti/phy-am654-serdes.ko] undefined!
ERROR: "of_phy_simple_xlate" [drivers/phy/ti/phy-am654-serdes.ko] undefined!
ERROR: "of_clk_del_provider" [drivers/phy/ti/phy-am654-serdes.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/phy/ti/phy-am654-serdes.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/phy/ti/phy-dm816x-usb.ko] undefined!
ERROR: "__platform_driver_register" [drivers/phy/ti/phy-dm816x-usb.ko] undefined!
ERROR: "usb_add_phy_dev" [drivers/phy/ti/phy-dm816x-usb.ko] undefined!
ERROR: "__devm_of_phy_provider_register" [drivers/phy/ti/phy-dm816x-usb.ko] undefined!
ERROR: "of_phy_simple_xlate" [drivers/phy/ti/phy-dm816x-usb.ko] undefined!
ERROR: "devm_phy_create" [drivers/phy/ti/phy-dm816x-usb.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/phy/ti/phy-dm816x-usb.ko] undefined!
ERROR: "clk_prepare" [drivers/phy/ti/phy-dm816x-usb.ko] undefined!
ERROR: "devm_clk_get" [drivers/phy/ti/phy-dm816x-usb.ko] undefined!
ERROR: "syscon_regmap_lookup_by_phandle" [drivers/phy/ti/phy-dm816x-usb.ko] undefined!
ERROR: "platform_get_resource" [drivers/phy/ti/phy-dm816x-usb.ko] undefined!
ERROR: "devm_kmalloc" [drivers/phy/ti/phy-dm816x-usb.ko] undefined!
ERROR: "of_match_device" [drivers/phy/ti/phy-dm816x-usb.ko] undefined!
ERROR: "_dev_info" [drivers/phy/ti/phy-dm816x-usb.ko] undefined!
ERROR: "_dev_warn" [drivers/phy/ti/phy-dm816x-usb.ko] undefined!
ERROR: "regmap_write" [drivers/phy/ti/phy-dm816x-usb.ko] undefined!
ERROR: "regmap_read" [drivers/phy/ti/phy-dm816x-usb.ko] undefined!
ERROR: "clk_get_rate" [drivers/phy/ti/phy-dm816x-usb.ko] undefined!
ERROR: "clk_unprepare" [drivers/phy/ti/phy-dm816x-usb.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/phy/ti/phy-dm816x-usb.ko] undefined!
ERROR: "usb_remove_phy" [drivers/phy/ti/phy-dm816x-usb.ko] undefined!
ERROR: "clk_disable" [drivers/phy/ti/phy-dm816x-usb.ko] undefined!
ERROR: "_dev_err" [drivers/phy/ti/phy-dm816x-usb.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/phy/ti/phy-dm816x-usb.ko] undefined!
ERROR: "clk_enable" [drivers/phy/ti/phy-dm816x-usb.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/phy/st/phy-spear1340-miphy.ko] undefined!
ERROR: "__platform_driver_register" [drivers/phy/st/phy-spear1340-miphy.ko] undefined!
ERROR: "msleep" [drivers/phy/st/phy-spear1340-miphy.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/phy/st/phy-spear1340-miphy.ko] undefined!
ERROR: "__devm_of_phy_provider_register" [drivers/phy/st/phy-spear1340-miphy.ko] undefined!
ERROR: "devm_phy_create" [drivers/phy/st/phy-spear1340-miphy.ko] undefined!
ERROR: "syscon_regmap_lookup_by_phandle" [drivers/phy/st/phy-spear1340-miphy.ko] undefined!
ERROR: "devm_kmalloc" [drivers/phy/st/phy-spear1340-miphy.ko] undefined!
ERROR: "_dev_err" [drivers/phy/st/phy-spear1340-miphy.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/phy/st/phy-spear1310-miphy.ko] undefined!
ERROR: "__platform_driver_register" [drivers/phy/st/phy-spear1310-miphy.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/phy/st/phy-spear1310-miphy.ko] undefined!
ERROR: "__devm_of_phy_provider_register" [drivers/phy/st/phy-spear1310-miphy.ko] undefined!
ERROR: "devm_phy_create" [drivers/phy/st/phy-spear1310-miphy.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/phy/st/phy-spear1310-miphy.ko] undefined!
ERROR: "syscon_regmap_lookup_by_phandle" [drivers/phy/st/phy-spear1310-miphy.ko] undefined!
ERROR: "devm_kmalloc" [drivers/phy/st/phy-spear1310-miphy.ko] undefined!
ERROR: "_dev_err" [drivers/phy/st/phy-spear1310-miphy.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/phy/ralink/phy-ralink-usb.ko] undefined!
ERROR: "__platform_driver_register" [drivers/phy/ralink/phy-ralink-usb.ko] undefined!
ERROR: "_dev_err" [drivers/phy/ralink/phy-ralink-usb.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/phy/ralink/phy-ralink-usb.ko] undefined!
ERROR: "platform_get_resource" [drivers/phy/ralink/phy-ralink-usb.ko] undefined!
ERROR: "__devm_of_phy_provider_register" [drivers/phy/ralink/phy-ralink-usb.ko] undefined!
ERROR: "of_phy_simple_xlate" [drivers/phy/ralink/phy-ralink-usb.ko] undefined!
ERROR: "devm_phy_create" [drivers/phy/ralink/phy-ralink-usb.ko] undefined!
ERROR: "__devm_reset_control_get" [drivers/phy/ralink/phy-ralink-usb.ko] undefined!
ERROR: "of_device_is_compatible" [drivers/phy/ralink/phy-ralink-usb.ko] undefined!
ERROR: "syscon_regmap_lookup_by_phandle" [drivers/phy/ralink/phy-ralink-usb.ko] undefined!
ERROR: "devm_kmalloc" [drivers/phy/ralink/phy-ralink-usb.ko] undefined!
ERROR: "of_match_device" [drivers/phy/ralink/phy-ralink-usb.ko] undefined!
ERROR: "_dev_info" [drivers/phy/ralink/phy-ralink-usb.ko] undefined!
ERROR: "regmap_read" [drivers/phy/ralink/phy-ralink-usb.ko] undefined!
ERROR: "__const_udelay" [drivers/phy/ralink/phy-ralink-usb.ko] undefined!
ERROR: "reset_control_deassert" [drivers/phy/ralink/phy-ralink-usb.ko] undefined!
ERROR: "reset_control_assert" [drivers/phy/ralink/phy-ralink-usb.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/phy/ralink/phy-ralink-usb.ko] undefined!
ERROR: "ulpi_unregister_driver" [drivers/phy/qualcomm/phy-qcom-usb-hsic.ko] undefined!
ERROR: "__ulpi_register_driver" [drivers/phy/qualcomm/phy-qcom-usb-hsic.ko] undefined!
ERROR: "pinctrl_select_state" [drivers/phy/qualcomm/phy-qcom-usb-hsic.ko] undefined!
ERROR: "pinctrl_lookup_state" [drivers/phy/qualcomm/phy-qcom-usb-hsic.ko] undefined!
ERROR: "ulpi_write" [drivers/phy/qualcomm/phy-qcom-usb-hsic.ko] undefined!
ERROR: "clk_enable" [drivers/phy/qualcomm/phy-qcom-usb-hsic.ko] undefined!
ERROR: "clk_prepare" [drivers/phy/qualcomm/phy-qcom-usb-hsic.ko] undefined!
ERROR: "__devm_of_phy_provider_register" [drivers/phy/qualcomm/phy-qcom-usb-hsic.ko] undefined!
ERROR: "of_phy_simple_xlate" [drivers/phy/qualcomm/phy-qcom-usb-hsic.ko] undefined!
ERROR: "devm_phy_create" [drivers/phy/qualcomm/phy-qcom-usb-hsic.ko] undefined!
ERROR: "devm_clk_get" [drivers/phy/qualcomm/phy-qcom-usb-hsic.ko] undefined!
ERROR: "devm_pinctrl_get" [drivers/phy/qualcomm/phy-qcom-usb-hsic.ko] undefined!
ERROR: "devm_kmalloc" [drivers/phy/qualcomm/phy-qcom-usb-hsic.ko] undefined!
ERROR: "clk_unprepare" [drivers/phy/qualcomm/phy-qcom-usb-hsic.ko] undefined!
ERROR: "clk_disable" [drivers/phy/qualcomm/phy-qcom-usb-hsic.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/phy/qualcomm/phy-qcom-qusb2.ko] undefined!
ERROR: "__platform_driver_register" [drivers/phy/qualcomm/phy-qcom-qusb2.ko] undefined!
ERROR: "regmap_read" [drivers/phy/qualcomm/phy-qcom-qusb2.ko] undefined!
ERROR: "nvmem_cell_read" [drivers/phy/qualcomm/phy-qcom-qusb2.ko] undefined!
ERROR: "reset_control_deassert" [drivers/phy/qualcomm/phy-qcom-qusb2.ko] undefined!
ERROR: "usleep_range" [drivers/phy/qualcomm/phy-qcom-qusb2.ko] undefined!
ERROR: "clk_enable" [drivers/phy/qualcomm/phy-qcom-qusb2.ko] undefined!
ERROR: "clk_prepare" [drivers/phy/qualcomm/phy-qcom-qusb2.ko] undefined!
ERROR: "regulator_bulk_enable" [drivers/phy/qualcomm/phy-qcom-qusb2.ko] undefined!
ERROR: "_dev_info" [drivers/phy/qualcomm/phy-qcom-qusb2.ko] undefined!
ERROR: "_dev_err" [drivers/phy/qualcomm/phy-qcom-qusb2.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/phy/qualcomm/phy-qcom-qusb2.ko] undefined!
ERROR: "__pm_runtime_disable" [drivers/phy/qualcomm/phy-qcom-qusb2.ko] undefined!
ERROR: "__devm_of_phy_provider_register" [drivers/phy/qualcomm/phy-qcom-qusb2.ko] undefined!
ERROR: "of_phy_simple_xlate" [drivers/phy/qualcomm/phy-qcom-qusb2.ko] undefined!
ERROR: "devm_phy_create" [drivers/phy/qualcomm/phy-qcom-qusb2.ko] undefined!
ERROR: "pm_runtime_forbid" [drivers/phy/qualcomm/phy-qcom-qusb2.ko] undefined!
ERROR: "pm_runtime_enable" [drivers/phy/qualcomm/phy-qcom-qusb2.ko] undefined!
ERROR: "__pm_runtime_set_status" [drivers/phy/qualcomm/phy-qcom-qusb2.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/phy/qualcomm/phy-qcom-qusb2.ko] undefined!
ERROR: "devm_nvmem_cell_get" [drivers/phy/qualcomm/phy-qcom-qusb2.ko] undefined!
ERROR: "syscon_regmap_lookup_by_phandle" [drivers/phy/qualcomm/phy-qcom-qusb2.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/phy/qualcomm/phy-qcom-qusb2.ko] undefined!
ERROR: "devm_regulator_bulk_get" [drivers/phy/qualcomm/phy-qcom-qusb2.ko] undefined!
ERROR: "__devm_reset_control_get" [drivers/phy/qualcomm/phy-qcom-qusb2.ko] undefined!
ERROR: "devm_clk_get_optional" [drivers/phy/qualcomm/phy-qcom-qusb2.ko] undefined!
ERROR: "devm_clk_get" [drivers/phy/qualcomm/phy-qcom-qusb2.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/phy/qualcomm/phy-qcom-qusb2.ko] undefined!
ERROR: "platform_get_resource" [drivers/phy/qualcomm/phy-qcom-qusb2.ko] undefined!
ERROR: "devm_kmalloc" [drivers/phy/qualcomm/phy-qcom-qusb2.ko] undefined!
ERROR: "regulator_bulk_disable" [drivers/phy/qualcomm/phy-qcom-qusb2.ko] undefined!
ERROR: "reset_control_assert" [drivers/phy/qualcomm/phy-qcom-qusb2.ko] undefined!
ERROR: "clk_unprepare" [drivers/phy/qualcomm/phy-qcom-qusb2.ko] undefined!
ERROR: "clk_disable" [drivers/phy/qualcomm/phy-qcom-qusb2.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/phy/qualcomm/phy-qcom-pcie2.ko] undefined!
ERROR: "__platform_driver_register" [drivers/phy/qualcomm/phy-qcom-pcie2.ko] undefined!
ERROR: "__devm_of_phy_provider_register" [drivers/phy/qualcomm/phy-qcom-pcie2.ko] undefined!
ERROR: "of_phy_simple_xlate" [drivers/phy/qualcomm/phy-qcom-pcie2.ko] undefined!
ERROR: "devm_phy_create" [drivers/phy/qualcomm/phy-qcom-pcie2.ko] undefined!
ERROR: "__devm_reset_control_get" [drivers/phy/qualcomm/phy-qcom-pcie2.ko] undefined!
ERROR: "devm_clk_get" [drivers/phy/qualcomm/phy-qcom-pcie2.ko] undefined!
ERROR: "devm_regulator_bulk_get" [drivers/phy/qualcomm/phy-qcom-pcie2.ko] undefined!
ERROR: "devm_clk_hw_register" [drivers/phy/qualcomm/phy-qcom-pcie2.ko] undefined!
ERROR: "clk_fixed_rate_ops" [drivers/phy/qualcomm/phy-qcom-pcie2.ko] undefined!
ERROR: "of_property_read_string" [drivers/phy/qualcomm/phy-qcom-pcie2.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/phy/qualcomm/phy-qcom-pcie2.ko] undefined!
ERROR: "platform_get_resource" [drivers/phy/qualcomm/phy-qcom-pcie2.ko] undefined!
ERROR: "devm_kmalloc" [drivers/phy/qualcomm/phy-qcom-pcie2.ko] undefined!
ERROR: "regulator_bulk_enable" [drivers/phy/qualcomm/phy-qcom-pcie2.ko] undefined!
ERROR: "regulator_bulk_disable" [drivers/phy/qualcomm/phy-qcom-pcie2.ko] undefined!
ERROR: "__might_sleep" [drivers/phy/qualcomm/phy-qcom-pcie2.ko] undefined!
ERROR: "ktime_get" [drivers/phy/qualcomm/phy-qcom-pcie2.ko] undefined!
ERROR: "clk_enable" [drivers/phy/qualcomm/phy-qcom-pcie2.ko] undefined!
ERROR: "_dev_err" [drivers/phy/qualcomm/phy-qcom-pcie2.ko] undefined!
ERROR: "clk_prepare" [drivers/phy/qualcomm/phy-qcom-pcie2.ko] undefined!
ERROR: "clk_set_rate" [drivers/phy/qualcomm/phy-qcom-pcie2.ko] undefined!
ERROR: "reset_control_deassert" [drivers/phy/qualcomm/phy-qcom-pcie2.ko] undefined!
ERROR: "usleep_range" [drivers/phy/qualcomm/phy-qcom-pcie2.ko] undefined!
ERROR: "reset_control_assert" [drivers/phy/qualcomm/phy-qcom-pcie2.ko] undefined!
ERROR: "clk_unprepare" [drivers/phy/qualcomm/phy-qcom-pcie2.ko] undefined!
ERROR: "clk_disable" [drivers/phy/qualcomm/phy-qcom-pcie2.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/phy/mscc/phy-ocelot-serdes.ko] undefined!
ERROR: "__platform_driver_register" [drivers/phy/mscc/phy-ocelot-serdes.ko] undefined!
ERROR: "msleep" [drivers/phy/mscc/phy-ocelot-serdes.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/phy/mscc/phy-ocelot-serdes.ko] undefined!
ERROR: "usleep_range" [drivers/phy/mscc/phy-ocelot-serdes.ko] undefined!
ERROR: "regmap_read" [drivers/phy/mscc/phy-ocelot-serdes.ko] undefined!
ERROR: "__might_sleep" [drivers/phy/mscc/phy-ocelot-serdes.ko] undefined!
ERROR: "ktime_get" [drivers/phy/mscc/phy-ocelot-serdes.ko] undefined!
ERROR: "regmap_write" [drivers/phy/mscc/phy-ocelot-serdes.ko] undefined!
ERROR: "__devm_of_phy_provider_register" [drivers/phy/mscc/phy-ocelot-serdes.ko] undefined!
ERROR: "devm_phy_create" [drivers/phy/mscc/phy-ocelot-serdes.ko] undefined!
ERROR: "syscon_node_to_regmap" [drivers/phy/mscc/phy-ocelot-serdes.ko] undefined!
ERROR: "devm_kmalloc" [drivers/phy/mscc/phy-ocelot-serdes.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/phy/motorola/phy-cpcap-usb.ko] undefined!
ERROR: "__platform_driver_register" [drivers/phy/motorola/phy-cpcap-usb.ko] undefined!
ERROR: "__dynamic_dev_dbg" [drivers/phy/motorola/phy-cpcap-usb.ko] undefined!
ERROR: "regmap_read" [drivers/phy/motorola/phy-cpcap-usb.ko] undefined!
ERROR: "_dev_info" [drivers/phy/motorola/phy-cpcap-usb.ko] undefined!
ERROR: "queue_delayed_work_on" [drivers/phy/motorola/phy-cpcap-usb.ko] undefined!
ERROR: "system_wq" [drivers/phy/motorola/phy-cpcap-usb.ko] undefined!
ERROR: "usb_add_phy_dev" [drivers/phy/motorola/phy-cpcap-usb.ko] undefined!
ERROR: "devm_request_threaded_irq" [drivers/phy/motorola/phy-cpcap-usb.ko] undefined!
ERROR: "platform_get_irq_byname" [drivers/phy/motorola/phy-cpcap-usb.ko] undefined!
ERROR: "iio_get_channel_type" [drivers/phy/motorola/phy-cpcap-usb.ko] undefined!
ERROR: "devm_iio_channel_get" [drivers/phy/motorola/phy-cpcap-usb.ko] undefined!
ERROR: "devm_gpiod_get_index" [drivers/phy/motorola/phy-cpcap-usb.ko] undefined!
ERROR: "pinctrl_lookup_state" [drivers/phy/motorola/phy-cpcap-usb.ko] undefined!
ERROR: "devm_pinctrl_get" [drivers/phy/motorola/phy-cpcap-usb.ko] undefined!
ERROR: "__devm_of_phy_provider_register" [drivers/phy/motorola/phy-cpcap-usb.ko] undefined!
ERROR: "of_phy_simple_xlate" [drivers/phy/motorola/phy-cpcap-usb.ko] undefined!
ERROR: "devm_phy_create" [drivers/phy/motorola/phy-cpcap-usb.ko] undefined!
ERROR: "regulator_enable" [drivers/phy/motorola/phy-cpcap-usb.ko] undefined!
ERROR: "devm_regulator_get" [drivers/phy/motorola/phy-cpcap-usb.ko] undefined!
ERROR: "init_timer_key" [drivers/phy/motorola/phy-cpcap-usb.ko] undefined!
ERROR: "delayed_work_timer_fn" [drivers/phy/motorola/phy-cpcap-usb.ko] undefined!
ERROR: "lockdep_init_map" [drivers/phy/motorola/phy-cpcap-usb.ko] undefined!
ERROR: "dev_get_regmap" [drivers/phy/motorola/phy-cpcap-usb.ko] undefined!
ERROR: "devm_kmalloc" [drivers/phy/motorola/phy-cpcap-usb.ko] undefined!
ERROR: "of_match_device" [drivers/phy/motorola/phy-cpcap-usb.ko] undefined!
ERROR: "iio_read_channel_processed" [drivers/phy/motorola/phy-cpcap-usb.ko] undefined!
ERROR: "regulator_disable" [drivers/phy/motorola/phy-cpcap-usb.ko] undefined!
ERROR: "clk_unprepare" [drivers/phy/motorola/phy-cpcap-usb.ko] undefined!
ERROR: "cancel_delayed_work_sync" [drivers/phy/motorola/phy-cpcap-usb.ko] undefined!
ERROR: "usb_remove_phy" [drivers/phy/motorola/phy-cpcap-usb.ko] undefined!
ERROR: "_dev_err" [drivers/phy/motorola/phy-cpcap-usb.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/phy/motorola/phy-cpcap-usb.ko] undefined!
ERROR: "pinctrl_select_state" [drivers/phy/motorola/phy-cpcap-usb.ko] undefined!
ERROR: "gpiod_set_value" [drivers/phy/motorola/phy-cpcap-usb.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/phy/marvell/phy-pxa-usb.ko] undefined!
ERROR: "__platform_driver_register" [drivers/phy/marvell/phy-pxa-usb.ko] undefined!
ERROR: "_dev_err" [drivers/phy/marvell/phy-pxa-usb.ko] undefined!
ERROR: "phy_create_lookup" [drivers/phy/marvell/phy-pxa-usb.ko] undefined!
ERROR: "__devm_of_phy_provider_register" [drivers/phy/marvell/phy-pxa-usb.ko] undefined!
ERROR: "of_phy_simple_xlate" [drivers/phy/marvell/phy-pxa-usb.ko] undefined!
ERROR: "devm_phy_create" [drivers/phy/marvell/phy-pxa-usb.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/phy/marvell/phy-pxa-usb.ko] undefined!
ERROR: "platform_get_resource" [drivers/phy/marvell/phy-pxa-usb.ko] undefined!
ERROR: "of_match_node" [drivers/phy/marvell/phy-pxa-usb.ko] undefined!
ERROR: "devm_kmalloc" [drivers/phy/marvell/phy-pxa-usb.ko] undefined!
ERROR: "_dev_warn" [drivers/phy/marvell/phy-pxa-usb.ko] undefined!
ERROR: "__const_udelay" [drivers/phy/marvell/phy-pxa-usb.ko] undefined!
ERROR: "_dev_info" [drivers/phy/marvell/phy-pxa-usb.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/phy/marvell/phy-pxa-28nm-hsic.ko] undefined!
ERROR: "__platform_driver_register" [drivers/phy/marvell/phy-pxa-28nm-hsic.ko] undefined!
ERROR: "__devm_of_phy_provider_register" [drivers/phy/marvell/phy-pxa-28nm-hsic.ko] undefined!
ERROR: "of_phy_simple_xlate" [drivers/phy/marvell/phy-pxa-28nm-hsic.ko] undefined!
ERROR: "devm_phy_create" [drivers/phy/marvell/phy-pxa-28nm-hsic.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/phy/marvell/phy-pxa-28nm-hsic.ko] undefined!
ERROR: "platform_get_resource" [drivers/phy/marvell/phy-pxa-28nm-hsic.ko] undefined!
ERROR: "devm_clk_get" [drivers/phy/marvell/phy-pxa-28nm-hsic.ko] undefined!
ERROR: "devm_kmalloc" [drivers/phy/marvell/phy-pxa-28nm-hsic.ko] undefined!
ERROR: "clk_enable" [drivers/phy/marvell/phy-pxa-28nm-hsic.ko] undefined!
ERROR: "_dev_err" [drivers/phy/marvell/phy-pxa-28nm-hsic.ko] undefined!
ERROR: "clk_prepare" [drivers/phy/marvell/phy-pxa-28nm-hsic.ko] undefined!
ERROR: "clk_unprepare" [drivers/phy/marvell/phy-pxa-28nm-hsic.ko] undefined!
ERROR: "clk_disable" [drivers/phy/marvell/phy-pxa-28nm-hsic.ko] undefined!
ERROR: "_dev_warn" [drivers/phy/marvell/phy-pxa-28nm-hsic.ko] undefined!
ERROR: "msleep" [drivers/phy/marvell/phy-pxa-28nm-hsic.ko] undefined!
ERROR: "jiffies" [drivers/phy/marvell/phy-pxa-28nm-hsic.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/phy/marvell/phy-berlin-sata.ko] undefined!
ERROR: "__platform_driver_register" [drivers/phy/marvell/phy-berlin-sata.ko] undefined!
ERROR: "_dev_err" [drivers/phy/marvell/phy-berlin-sata.ko] undefined!
ERROR: "of_node_put" [drivers/phy/marvell/phy-berlin-sata.ko] undefined!
ERROR: "__devm_of_phy_provider_register" [drivers/phy/marvell/phy-berlin-sata.ko] undefined!
ERROR: "devm_phy_create" [drivers/phy/marvell/phy-berlin-sata.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [drivers/phy/marvell/phy-berlin-sata.ko] undefined!
ERROR: "of_get_next_available_child" [drivers/phy/marvell/phy-berlin-sata.ko] undefined!
ERROR: "__raw_spin_lock_init" [drivers/phy/marvell/phy-berlin-sata.ko] undefined!
ERROR: "of_device_is_compatible" [drivers/phy/marvell/phy-berlin-sata.ko] undefined!
ERROR: "of_get_next_child" [drivers/phy/marvell/phy-berlin-sata.ko] undefined!
ERROR: "devm_clk_get" [drivers/phy/marvell/phy-berlin-sata.ko] undefined!
ERROR: "devm_ioremap" [drivers/phy/marvell/phy-berlin-sata.ko] undefined!
ERROR: "platform_get_resource" [drivers/phy/marvell/phy-berlin-sata.ko] undefined!
ERROR: "devm_kmalloc" [drivers/phy/marvell/phy-berlin-sata.ko] undefined!
ERROR: "clk_enable" [drivers/phy/marvell/phy-berlin-sata.ko] undefined!
ERROR: "clk_unprepare" [drivers/phy/marvell/phy-berlin-sata.ko] undefined!
ERROR: "clk_disable" [drivers/phy/marvell/phy-berlin-sata.ko] undefined!
ERROR: "_raw_spin_unlock" [drivers/phy/marvell/phy-berlin-sata.ko] undefined!
ERROR: "_raw_spin_lock" [drivers/phy/marvell/phy-berlin-sata.ko] undefined!
ERROR: "clk_prepare" [drivers/phy/marvell/phy-berlin-sata.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/phy/lantiq/phy-lantiq-vrx200-pcie.ko] undefined!
ERROR: "__platform_driver_register" [drivers/phy/lantiq/phy-lantiq-vrx200-pcie.ko] undefined!
ERROR: "regmap_read" [drivers/phy/lantiq/phy-lantiq-vrx200-pcie.ko] undefined!
ERROR: "__might_sleep" [drivers/phy/lantiq/phy-lantiq-vrx200-pcie.ko] undefined!
ERROR: "ktime_get" [drivers/phy/lantiq/phy-lantiq-vrx200-pcie.ko] undefined!
ERROR: "regmap_write" [drivers/phy/lantiq/phy-lantiq-vrx200-pcie.ko] undefined!
ERROR: "clk_enable" [drivers/phy/lantiq/phy-lantiq-vrx200-pcie.ko] undefined!
ERROR: "clk_prepare" [drivers/phy/lantiq/phy-lantiq-vrx200-pcie.ko] undefined!
ERROR: "__devm_of_phy_provider_register" [drivers/phy/lantiq/phy-lantiq-vrx200-pcie.ko] undefined!
ERROR: "devm_phy_create" [drivers/phy/lantiq/phy-lantiq-vrx200-pcie.ko] undefined!
ERROR: "__devm_reset_control_get" [drivers/phy/lantiq/phy-lantiq-vrx200-pcie.ko] undefined!
ERROR: "devm_clk_get" [drivers/phy/lantiq/phy-lantiq-vrx200-pcie.ko] undefined!
ERROR: "device_property_read_u32_array" [drivers/phy/lantiq/phy-lantiq-vrx200-pcie.ko] undefined!
ERROR: "syscon_regmap_lookup_by_phandle" [drivers/phy/lantiq/phy-lantiq-vrx200-pcie.ko] undefined!
ERROR: "__devm_regmap_init_mmio_clk" [drivers/phy/lantiq/phy-lantiq-vrx200-pcie.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/phy/lantiq/phy-lantiq-vrx200-pcie.ko] undefined!
ERROR: "platform_get_resource" [drivers/phy/lantiq/phy-lantiq-vrx200-pcie.ko] undefined!
ERROR: "devm_kmalloc" [drivers/phy/lantiq/phy-lantiq-vrx200-pcie.ko] undefined!
ERROR: "usleep_range" [drivers/phy/lantiq/phy-lantiq-vrx200-pcie.ko] undefined!
ERROR: "reset_control_deassert" [drivers/phy/lantiq/phy-lantiq-vrx200-pcie.ko] undefined!
ERROR: "__const_udelay" [drivers/phy/lantiq/phy-lantiq-vrx200-pcie.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/phy/lantiq/phy-lantiq-vrx200-pcie.ko] undefined!
ERROR: "of_device_is_big_endian" [drivers/phy/lantiq/phy-lantiq-vrx200-pcie.ko] undefined!
ERROR: "reset_control_assert" [drivers/phy/lantiq/phy-lantiq-vrx200-pcie.ko] undefined!
ERROR: "clk_unprepare" [drivers/phy/lantiq/phy-lantiq-vrx200-pcie.ko] undefined!
ERROR: "clk_disable" [drivers/phy/lantiq/phy-lantiq-vrx200-pcie.ko] undefined!
ERROR: "_dev_err" [drivers/phy/lantiq/phy-lantiq-vrx200-pcie.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/phy/intel/phy-intel-emmc.ko] undefined!
ERROR: "__platform_driver_register" [drivers/phy/intel/phy-intel-emmc.ko] undefined!
ERROR: "__devm_of_phy_provider_register" [drivers/phy/intel/phy-intel-emmc.ko] undefined!
ERROR: "of_phy_simple_xlate" [drivers/phy/intel/phy-intel-emmc.ko] undefined!
ERROR: "devm_phy_create" [drivers/phy/intel/phy-intel-emmc.ko] undefined!
ERROR: "syscon_regmap_lookup_by_phandle" [drivers/phy/intel/phy-intel-emmc.ko] undefined!
ERROR: "devm_kmalloc" [drivers/phy/intel/phy-intel-emmc.ko] undefined!
ERROR: "clk_get" [drivers/phy/intel/phy-intel-emmc.ko] undefined!
ERROR: "clk_put" [drivers/phy/intel/phy-intel-emmc.ko] undefined!
ERROR: "_dev_warn" [drivers/phy/intel/phy-intel-emmc.ko] undefined!
ERROR: "_dev_err" [drivers/phy/intel/phy-intel-emmc.ko] undefined!
ERROR: "regmap_read" [drivers/phy/intel/phy-intel-emmc.ko] undefined!
ERROR: "ktime_get" [drivers/phy/intel/phy-intel-emmc.ko] undefined!
ERROR: "__const_udelay" [drivers/phy/intel/phy-intel-emmc.ko] undefined!
ERROR: "clk_get_rate" [drivers/phy/intel/phy-intel-emmc.ko] undefined!
ERROR: "regmap_update_bits_base" [drivers/phy/intel/phy-intel-emmc.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/phy/hisilicon/phy-hisi-inno-usb2.ko] undefined!
ERROR: "__platform_driver_register" [drivers/phy/hisilicon/phy-hisi-inno-usb2.ko] undefined!
ERROR: "_dev_warn" [drivers/phy/hisilicon/phy-hisi-inno-usb2.ko] undefined!
ERROR: "__devm_of_phy_provider_register" [drivers/phy/hisilicon/phy-hisi-inno-usb2.ko] undefined!
ERROR: "of_phy_simple_xlate" [drivers/phy/hisilicon/phy-hisi-inno-usb2.ko] undefined!
ERROR: "devm_phy_create" [drivers/phy/hisilicon/phy-hisi-inno-usb2.ko] undefined!
ERROR: "__of_reset_control_get" [drivers/phy/hisilicon/phy-hisi-inno-usb2.ko] undefined!
ERROR: "of_get_next_child" [drivers/phy/hisilicon/phy-hisi-inno-usb2.ko] undefined!
ERROR: "__devm_reset_control_get" [drivers/phy/hisilicon/phy-hisi-inno-usb2.ko] undefined!
ERROR: "devm_clk_get" [drivers/phy/hisilicon/phy-hisi-inno-usb2.ko] undefined!
ERROR: "devm_platform_ioremap_resource" [drivers/phy/hisilicon/phy-hisi-inno-usb2.ko] undefined!
ERROR: "devm_kmalloc" [drivers/phy/hisilicon/phy-hisi-inno-usb2.ko] undefined!
ERROR: "msleep" [drivers/phy/hisilicon/phy-hisi-inno-usb2.ko] undefined!
ERROR: "reset_control_deassert" [drivers/phy/hisilicon/phy-hisi-inno-usb2.ko] undefined!
ERROR: "__const_udelay" [drivers/phy/hisilicon/phy-hisi-inno-usb2.ko] undefined!
ERROR: "clk_enable" [drivers/phy/hisilicon/phy-hisi-inno-usb2.ko] undefined!
ERROR: "clk_prepare" [drivers/phy/hisilicon/phy-hisi-inno-usb2.ko] undefined!
ERROR: "clk_unprepare" [drivers/phy/hisilicon/phy-hisi-inno-usb2.ko] undefined!
ERROR: "clk_disable" [drivers/phy/hisilicon/phy-hisi-inno-usb2.ko] undefined!
ERROR: "reset_control_assert" [drivers/phy/hisilicon/phy-hisi-inno-usb2.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/phy/freescale/phy-fsl-imx8mq-usb.ko] undefined!
ERROR: "__platform_driver_register" [drivers/phy/freescale/phy-fsl-imx8mq-usb.ko] undefined!
ERROR: "_dev_err" [drivers/phy/freescale/phy-fsl-imx8mq-usb.ko] undefined!
ERROR: "__devm_of_phy_provider_register" [drivers/phy/freescale/phy-fsl-imx8mq-usb.ko] undefined!
ERROR: "of_phy_simple_xlate" [drivers/phy/freescale/phy-fsl-imx8mq-usb.ko] undefined!
ERROR: "devm_regulator_get" [drivers/phy/freescale/phy-fsl-imx8mq-usb.ko] undefined!
ERROR: "devm_phy_create" [drivers/phy/freescale/phy-fsl-imx8mq-usb.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/phy/freescale/phy-fsl-imx8mq-usb.ko] undefined!
ERROR: "platform_get_resource" [drivers/phy/freescale/phy-fsl-imx8mq-usb.ko] undefined!
ERROR: "devm_clk_get" [drivers/phy/freescale/phy-fsl-imx8mq-usb.ko] undefined!
ERROR: "devm_kmalloc" [drivers/phy/freescale/phy-fsl-imx8mq-usb.ko] undefined!
ERROR: "clk_enable" [drivers/phy/freescale/phy-fsl-imx8mq-usb.ko] undefined!
ERROR: "clk_prepare" [drivers/phy/freescale/phy-fsl-imx8mq-usb.ko] undefined!
ERROR: "regulator_enable" [drivers/phy/freescale/phy-fsl-imx8mq-usb.ko] undefined!
ERROR: "regulator_disable" [drivers/phy/freescale/phy-fsl-imx8mq-usb.ko] undefined!
ERROR: "clk_unprepare" [drivers/phy/freescale/phy-fsl-imx8mq-usb.ko] undefined!
ERROR: "clk_disable" [drivers/phy/freescale/phy-fsl-imx8mq-usb.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/phy/cadence/cdns-dphy.ko] undefined!
ERROR: "__platform_driver_register" [drivers/phy/cadence/cdns-dphy.ko] undefined!
ERROR: "clk_enable" [drivers/phy/cadence/cdns-dphy.ko] undefined!
ERROR: "clk_prepare" [drivers/phy/cadence/cdns-dphy.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [drivers/phy/cadence/cdns-dphy.ko] undefined!
ERROR: "clk_get_rate" [drivers/phy/cadence/cdns-dphy.ko] undefined!
ERROR: "phy_mipi_dphy_config_validate" [drivers/phy/cadence/cdns-dphy.ko] undefined!
ERROR: "_dev_err" [drivers/phy/cadence/cdns-dphy.ko] undefined!
ERROR: "__devm_of_phy_provider_register" [drivers/phy/cadence/cdns-dphy.ko] undefined!
ERROR: "of_phy_simple_xlate" [drivers/phy/cadence/cdns-dphy.ko] undefined!
ERROR: "devm_phy_create" [drivers/phy/cadence/cdns-dphy.ko] undefined!
ERROR: "devm_clk_get" [drivers/phy/cadence/cdns-dphy.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/phy/cadence/cdns-dphy.ko] undefined!
ERROR: "platform_get_resource" [drivers/phy/cadence/cdns-dphy.ko] undefined!
ERROR: "of_device_get_match_data" [drivers/phy/cadence/cdns-dphy.ko] undefined!
ERROR: "devm_kmalloc" [drivers/phy/cadence/cdns-dphy.ko] undefined!
ERROR: "clk_unprepare" [drivers/phy/cadence/cdns-dphy.ko] undefined!
ERROR: "clk_disable" [drivers/phy/cadence/cdns-dphy.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/phy/cadence/cdns-dphy.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/phy/broadcom/phy-bcm-sr-pcie.ko] undefined!
ERROR: "__platform_driver_register" [drivers/phy/broadcom/phy-bcm-sr-pcie.ko] undefined!
ERROR: "_dev_info" [drivers/phy/broadcom/phy-bcm-sr-pcie.ko] undefined!
ERROR: "__devm_of_phy_provider_register" [drivers/phy/broadcom/phy-bcm-sr-pcie.ko] undefined!
ERROR: "devm_phy_create" [drivers/phy/broadcom/phy-bcm-sr-pcie.ko] undefined!
ERROR: "syscon_regmap_lookup_by_phandle" [drivers/phy/broadcom/phy-bcm-sr-pcie.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/phy/broadcom/phy-bcm-sr-pcie.ko] undefined!
ERROR: "platform_get_resource" [drivers/phy/broadcom/phy-bcm-sr-pcie.ko] undefined!
ERROR: "devm_kmalloc" [drivers/phy/broadcom/phy-bcm-sr-pcie.ko] undefined!
ERROR: "_dev_err" [drivers/phy/broadcom/phy-bcm-sr-pcie.ko] undefined!
ERROR: "regmap_read" [drivers/phy/broadcom/phy-bcm-sr-pcie.ko] undefined!
ERROR: "irq_domain_xlate_onecell" [drivers/irqchip/irq-ts4800.ko] undefined!
ERROR: "platform_driver_unregister" [drivers/irqchip/irq-ts4800.ko] undefined!
ERROR: "__platform_driver_register" [drivers/irqchip/irq-ts4800.ko] undefined!
ERROR: "_dev_err" [drivers/irqchip/irq-ts4800.ko] undefined!
ERROR: "irq_set_chained_handler_and_data" [drivers/irqchip/irq-ts4800.ko] undefined!
ERROR: "__irq_domain_add" [drivers/irqchip/irq-ts4800.ko] undefined!
ERROR: "irq_of_parse_and_map" [drivers/irqchip/irq-ts4800.ko] undefined!
ERROR: "devm_ioremap_resource" [drivers/irqchip/irq-ts4800.ko] undefined!
ERROR: "platform_get_resource" [drivers/irqchip/irq-ts4800.ko] undefined!
ERROR: "devm_kmalloc" [drivers/irqchip/irq-ts4800.ko] undefined!
ERROR: "irq_modify_status" [drivers/irqchip/irq-ts4800.ko] undefined!
ERROR: "irq_set_chip_data" [drivers/irqchip/irq-ts4800.ko] undefined!
ERROR: "irq_set_chip_and_handler_name" [drivers/irqchip/irq-ts4800.ko] undefined!
ERROR: "handle_simple_irq" [drivers/irqchip/irq-ts4800.ko] undefined!
ERROR: "handle_bad_irq" [drivers/irqchip/irq-ts4800.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [drivers/irqchip/irq-ts4800.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [drivers/irqchip/irq-ts4800.ko] undefined!
ERROR: "generic_handle_irq" [drivers/irqchip/irq-ts4800.ko] undefined!
ERROR: "irq_find_mapping" [drivers/irqchip/irq-ts4800.ko] undefined!
ERROR: "irq_domain_remove" [drivers/irqchip/irq-ts4800.ko] undefined!
ERROR: "free_pages" [crypto/xor.ko] undefined!
ERROR: "__get_free_pages" [crypto/xor.ko] undefined!
ERROR: "boot_cpu_data" [crypto/xor.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [crypto/xor.ko] undefined!
ERROR: "kernel_fpu_end" [crypto/xor.ko] undefined!
ERROR: "kernel_fpu_begin" [crypto/xor.ko] undefined!
ERROR: "printk" [crypto/xor.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [crypto/xor.ko] undefined!
ERROR: "jiffies" [crypto/xor.ko] undefined!
ERROR: "__preempt_count" [crypto/xor.ko] undefined!
ERROR: "sg_pcopy_to_buffer" [crypto/ecrdsa_generic.ko] undefined!
ERROR: "sg_copy_to_buffer" [crypto/ecrdsa_generic.ko] undefined!
ERROR: "asn1_ber_decoder" [crypto/ecrdsa_generic.ko] undefined!
ERROR: "crypto_register_akcipher" [crypto/ecrdsa_generic.ko] undefined!
ERROR: "ecc_is_pubkey_valid_partial" [crypto/ecrdsa_generic.ko] undefined!
ERROR: "vli_from_le64" [crypto/ecrdsa_generic.ko] undefined!
ERROR: "vli_mod_mult_slow" [crypto/ecrdsa_generic.ko] undefined!
ERROR: "vli_cmp" [crypto/ecrdsa_generic.ko] undefined!
ERROR: "vli_mod_inv" [crypto/ecrdsa_generic.ko] undefined!
ERROR: "vli_is_zero" [crypto/ecrdsa_generic.ko] undefined!
ERROR: "sg_nents_for_len" [crypto/ecrdsa_generic.ko] undefined!
ERROR: "crypto_unregister_akcipher" [crypto/ecrdsa_generic.ko] undefined!
ERROR: "ecc_point_mult_shamir" [crypto/ecrdsa_generic.ko] undefined!
ERROR: "look_up_OID" [crypto/ecrdsa_generic.ko] undefined!
ERROR: "vli_sub" [crypto/ecrdsa_generic.ko] undefined!
ERROR: "vli_from_be64" [crypto/ecrdsa_generic.ko] undefined!
ERROR: "crypto_unregister_kpp" [crypto/curve25519-generic.ko] undefined!
ERROR: "crypto_register_kpp" [crypto/curve25519-generic.ko] undefined!
ERROR: "get_random_bytes" [crypto/curve25519-generic.ko] undefined!
ERROR: "wait_for_random_bytes" [crypto/curve25519-generic.ko] undefined!
ERROR: "__crypto_memneq" [crypto/curve25519-generic.ko] undefined!
ERROR: "curve25519_null_point" [crypto/curve25519-generic.ko] undefined!
ERROR: "curve25519_base_point" [crypto/curve25519-generic.ko] undefined!
ERROR: "sg_copy_from_buffer" [crypto/curve25519-generic.ko] undefined!
ERROR: "curve25519_generic" [crypto/curve25519-generic.ko] undefined!
ERROR: "sg_copy_to_buffer" [crypto/curve25519-generic.ko] undefined!
ERROR: "sg_nents_for_len" [crypto/curve25519-generic.ko] undefined!
ERROR: "crypto_unregister_template" [crypto/essiv.ko] undefined!
ERROR: "crypto_register_template" [crypto/essiv.ko] undefined!
ERROR: "__kmalloc" [crypto/essiv.ko] undefined!
ERROR: "crypto_aead_encrypt" [crypto/essiv.ko] undefined!
ERROR: "crypto_aead_decrypt" [crypto/essiv.ko] undefined!
ERROR: "scatterwalk_map_and_copy" [crypto/essiv.ko] undefined!
ERROR: "scatterwalk_ffwd" [crypto/essiv.ko] undefined!
ERROR: "mem_section" [crypto/essiv.ko] undefined!
ERROR: "__phys_addr" [crypto/essiv.ko] undefined!
ERROR: "__virt_addr_valid" [crypto/essiv.ko] undefined!
ERROR: "sg_init_table" [crypto/essiv.ko] undefined!
ERROR: "sg_nents_for_len" [crypto/essiv.ko] undefined!
ERROR: "skcipher_register_instance" [crypto/essiv.ko] undefined!
ERROR: "aead_register_instance" [crypto/essiv.ko] undefined!
ERROR: "snprintf" [crypto/essiv.ko] undefined!
ERROR: "strlcpy" [crypto/essiv.ko] undefined!
ERROR: "crypto_mod_put" [crypto/essiv.ko] undefined!
ERROR: "shash_no_setkey" [crypto/essiv.ko] undefined!
ERROR: "strncmp" [crypto/essiv.ko] undefined!
ERROR: "strlen" [crypto/essiv.ko] undefined!
ERROR: "crypto_grab_aead" [crypto/essiv.ko] undefined!
ERROR: "crypto_alg_mod_lookup" [crypto/essiv.ko] undefined!
ERROR: "printk" [crypto/essiv.ko] undefined!
ERROR: "strchr" [crypto/essiv.ko] undefined!
ERROR: "strrchr" [crypto/essiv.ko] undefined!
ERROR: "crypto_grab_skcipher" [crypto/essiv.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [crypto/essiv.ko] undefined!
ERROR: "kmalloc_caches" [crypto/essiv.ko] undefined!
ERROR: "crypto_attr_alg_name" [crypto/essiv.ko] undefined!
ERROR: "crypto_get_attr_type" [crypto/essiv.ko] undefined!
ERROR: "crypto_skcipher_decrypt" [crypto/essiv.ko] undefined!
ERROR: "crypto_spawn_tfm2" [crypto/essiv.ko] undefined!
ERROR: "crypto_alloc_shash" [crypto/essiv.ko] undefined!
ERROR: "crypto_alloc_base" [crypto/essiv.ko] undefined!
ERROR: "crypto_drop_spawn" [crypto/essiv.ko] undefined!
ERROR: "crypto_shash_digest" [crypto/essiv.ko] undefined!
ERROR: "crypto_skcipher_setkey" [crypto/essiv.ko] undefined!
ERROR: "crypto_skcipher_encrypt" [crypto/essiv.ko] undefined!
ERROR: "crypto_cipher_encrypt_one" [crypto/essiv.ko] undefined!
ERROR: "crypto_cipher_setkey" [crypto/essiv.ko] undefined!
ERROR: "crypto_shash_finup" [crypto/essiv.ko] undefined!
ERROR: "crypto_shash_update" [crypto/essiv.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [crypto/essiv.ko] undefined!
ERROR: "crypto_authenc_extractkeys" [crypto/essiv.ko] undefined!
ERROR: "crypto_aead_setkey" [crypto/essiv.ko] undefined!
ERROR: "crypto_aead_setauthsize" [crypto/essiv.ko] undefined!
ERROR: "crypto_destroy_tfm" [crypto/essiv.ko] undefined!
ERROR: "kfree" [crypto/essiv.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [crypto/essiv.ko] undefined!
ERROR: "get_random_bytes" [crypto/ecc.ko] undefined!
ERROR: "crypto_put_default_rng" [crypto/ecc.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [crypto/ecc.ko] undefined!
ERROR: "crypto_default_rng" [crypto/ecc.ko] undefined!
ERROR: "crypto_get_default_rng" [crypto/ecc.ko] undefined!
ERROR: "kfree" [crypto/ecc.ko] undefined!
ERROR: "kzfree" [crypto/ecc.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [crypto/ecc.ko] undefined!
ERROR: "kmalloc_caches" [crypto/ecc.ko] undefined!
ERROR: "__kmalloc" [crypto/ecc.ko] undefined!
ERROR: "printk" [crypto/ecc.ko] undefined!
ERROR: "___ratelimit" [crypto/ecc.ko] undefined!
ERROR: "sock_no_mmap" [crypto/algif_aead.ko] undefined!
ERROR: "sock_no_getsockopt" [crypto/algif_aead.ko] undefined!
ERROR: "sock_no_setsockopt" [crypto/algif_aead.ko] undefined!
ERROR: "sock_no_shutdown" [crypto/algif_aead.ko] undefined!
ERROR: "sock_no_listen" [crypto/algif_aead.ko] undefined!
ERROR: "sock_no_ioctl" [crypto/algif_aead.ko] undefined!
ERROR: "af_alg_poll" [crypto/algif_aead.ko] undefined!
ERROR: "sock_no_getname" [crypto/algif_aead.ko] undefined!
ERROR: "sock_no_accept" [crypto/algif_aead.ko] undefined!
ERROR: "sock_no_socketpair" [crypto/algif_aead.ko] undefined!
ERROR: "sock_no_connect" [crypto/algif_aead.ko] undefined!
ERROR: "sock_no_bind" [crypto/algif_aead.ko] undefined!
ERROR: "af_alg_release" [crypto/algif_aead.ko] undefined!
ERROR: "af_alg_unregister_type" [crypto/algif_aead.ko] undefined!
ERROR: "af_alg_register_type" [crypto/algif_aead.ko] undefined!
ERROR: "sg_init_table" [crypto/algif_aead.ko] undefined!
ERROR: "af_alg_count_tsgl" [crypto/algif_aead.ko] undefined!
ERROR: "wait_for_completion" [crypto/algif_aead.ko] undefined!
ERROR: "crypto_aead_decrypt" [crypto/algif_aead.ko] undefined!
ERROR: "crypto_req_done" [crypto/algif_aead.ko] undefined!
ERROR: "af_alg_wait_for_data" [crypto/algif_aead.ko] undefined!
ERROR: "af_alg_wmem_wakeup" [crypto/algif_aead.ko] undefined!
ERROR: "af_alg_free_resources" [crypto/algif_aead.ko] undefined!
ERROR: "crypto_aead_encrypt" [crypto/algif_aead.ko] undefined!
ERROR: "af_alg_async_cb" [crypto/algif_aead.ko] undefined!
ERROR: "af_alg_get_rsgl" [crypto/algif_aead.ko] undefined!
ERROR: "af_alg_alloc_areq" [crypto/algif_aead.ko] undefined!
ERROR: "af_alg_sendpage" [crypto/algif_aead.ko] undefined!
ERROR: "refcount_warn_saturate" [crypto/algif_aead.ko] undefined!
ERROR: "sk_free" [crypto/algif_aead.ko] undefined!
ERROR: "release_sock" [crypto/algif_aead.ko] undefined!
ERROR: "lock_sock_nested" [crypto/algif_aead.ko] undefined!
ERROR: "crypto_get_default_null_skcipher" [crypto/algif_aead.ko] undefined!
ERROR: "crypto_alloc_aead" [crypto/algif_aead.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [crypto/algif_aead.ko] undefined!
ERROR: "kmalloc_caches" [crypto/algif_aead.ko] undefined!
ERROR: "kfree" [crypto/algif_aead.ko] undefined!
ERROR: "crypto_put_default_null_skcipher" [crypto/algif_aead.ko] undefined!
ERROR: "crypto_destroy_tfm" [crypto/algif_aead.ko] undefined!
ERROR: "crypto_aead_setkey" [crypto/algif_aead.ko] undefined!
ERROR: "__init_waitqueue_head" [crypto/algif_aead.ko] undefined!
ERROR: "sock_kmalloc" [crypto/algif_aead.ko] undefined!
ERROR: "af_alg_release_parent" [crypto/algif_aead.ko] undefined!
ERROR: "sock_kfree_s" [crypto/algif_aead.ko] undefined!
ERROR: "sock_kzfree_s" [crypto/algif_aead.ko] undefined!
ERROR: "af_alg_pull_tsgl" [crypto/algif_aead.ko] undefined!
ERROR: "crypto_aead_setauthsize" [crypto/algif_aead.ko] undefined!
ERROR: "af_alg_sendmsg" [crypto/algif_aead.ko] undefined!
ERROR: "crypto_skcipher_encrypt" [crypto/algif_aead.ko] undefined!
ERROR: "param_ops_charp" [crypto/tcrypt.ko] undefined!
ERROR: "param_ops_int" [crypto/tcrypt.ko] undefined!
ERROR: "param_ops_uint" [crypto/tcrypt.ko] undefined!
ERROR: "__dynamic_pr_debug" [crypto/tcrypt.ko] undefined!
ERROR: "crypto_has_alg" [crypto/tcrypt.ko] undefined!
ERROR: "alg_test" [crypto/tcrypt.ko] undefined!
ERROR: "crypto_ahash_final" [crypto/tcrypt.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [crypto/tcrypt.ko] undefined!
ERROR: "crypto_ahash_setkey" [crypto/tcrypt.ko] undefined!
ERROR: "crypto_alloc_ahash" [crypto/tcrypt.ko] undefined!
ERROR: "crypto_skcipher_setkey" [crypto/tcrypt.ko] undefined!
ERROR: "crypto_alloc_skcipher" [crypto/tcrypt.ko] undefined!
ERROR: "_cond_resched" [crypto/tcrypt.ko] undefined!
ERROR: "___might_sleep" [crypto/tcrypt.ko] undefined!
ERROR: "jiffies" [crypto/tcrypt.ko] undefined!
ERROR: "crypto_destroy_tfm" [crypto/tcrypt.ko] undefined!
ERROR: "kzfree" [crypto/tcrypt.ko] undefined!
ERROR: "crypto_aead_setauthsize" [crypto/tcrypt.ko] undefined!
ERROR: "crypto_aead_setkey" [crypto/tcrypt.ko] undefined!
ERROR: "crypto_req_done" [crypto/tcrypt.ko] undefined!
ERROR: "__kmalloc" [crypto/tcrypt.ko] undefined!
ERROR: "__init_waitqueue_head" [crypto/tcrypt.ko] undefined!
ERROR: "crypto_alloc_aead" [crypto/tcrypt.ko] undefined!
ERROR: "kfree" [crypto/tcrypt.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [crypto/tcrypt.ko] undefined!
ERROR: "kmalloc_caches" [crypto/tcrypt.ko] undefined!
ERROR: "crypto_ahash_digest" [crypto/tcrypt.ko] undefined!
ERROR: "crypto_skcipher_decrypt" [crypto/tcrypt.ko] undefined!
ERROR: "crypto_skcipher_encrypt" [crypto/tcrypt.ko] undefined!
ERROR: "printk" [crypto/tcrypt.ko] undefined!
ERROR: "wait_for_completion" [crypto/tcrypt.ko] undefined!
ERROR: "crypto_aead_decrypt" [crypto/tcrypt.ko] undefined!
ERROR: "crypto_aead_encrypt" [crypto/tcrypt.ko] undefined!
ERROR: "sg_init_table" [crypto/tcrypt.ko] undefined!
ERROR: "mem_section" [crypto/tcrypt.ko] undefined!
ERROR: "__phys_addr" [crypto/tcrypt.ko] undefined!
ERROR: "__virt_addr_valid" [crypto/tcrypt.ko] undefined!
ERROR: "free_pages" [crypto/tcrypt.ko] undefined!
ERROR: "__get_free_pages" [crypto/tcrypt.ko] undefined!
ERROR: "param_ops_int" [crypto/ansi_cprng.ko] undefined!
ERROR: "crypto_unregister_rngs" [crypto/ansi_cprng.ko] undefined!
ERROR: "crypto_register_rngs" [crypto/ansi_cprng.ko] undefined!
ERROR: "crypto_cipher_encrypt_one" [crypto/ansi_cprng.ko] undefined!
ERROR: "print_hex_dump" [crypto/ansi_cprng.ko] undefined!
ERROR: "crypto_alloc_base" [crypto/ansi_cprng.ko] undefined!
ERROR: "__raw_spin_lock_init" [crypto/ansi_cprng.ko] undefined!
ERROR: "printk" [crypto/ansi_cprng.ko] undefined!
ERROR: "_raw_spin_unlock_bh" [crypto/ansi_cprng.ko] undefined!
ERROR: "crypto_cipher_setkey" [crypto/ansi_cprng.ko] undefined!
ERROR: "_raw_spin_lock_bh" [crypto/ansi_cprng.ko] undefined!
ERROR: "crypto_destroy_tfm" [crypto/ansi_cprng.ko] undefined!
ERROR: "crypto_unregister_shash" [crypto/xxhash_generic.ko] undefined!
ERROR: "crypto_register_shash" [crypto/xxhash_generic.ko] undefined!
ERROR: "xxh64_reset" [crypto/xxhash_generic.ko] undefined!
ERROR: "xxh64_update" [crypto/xxhash_generic.ko] undefined!
ERROR: "xxh64_digest" [crypto/xxhash_generic.ko] undefined!
ERROR: "xxh64" [crypto/xxhash_generic.ko] undefined!
ERROR: "crypto_unregister_scomp" [crypto/lz4.ko] undefined!
ERROR: "crypto_unregister_alg" [crypto/lz4.ko] undefined!
ERROR: "crypto_register_scomp" [crypto/lz4.ko] undefined!
ERROR: "crypto_register_alg" [crypto/lz4.ko] undefined!
ERROR: "vmalloc" [crypto/lz4.ko] undefined!
ERROR: "vfree" [crypto/lz4.ko] undefined!
ERROR: "LZ4_compress_default" [crypto/lz4.ko] undefined!
ERROR: "LZ4_decompress_safe" [crypto/lz4.ko] undefined!
ERROR: "crypto_unregister_scomp" [crypto/lzo-rle.ko] undefined!
ERROR: "crypto_unregister_alg" [crypto/lzo-rle.ko] undefined!
ERROR: "crypto_register_scomp" [crypto/lzo-rle.ko] undefined!
ERROR: "crypto_register_alg" [crypto/lzo-rle.ko] undefined!
ERROR: "kvmalloc_node" [crypto/lzo-rle.ko] undefined!
ERROR: "kvfree" [crypto/lzo-rle.ko] undefined!
ERROR: "lzorle1x_1_compress" [crypto/lzo-rle.ko] undefined!
ERROR: "lzo1x_decompress_safe" [crypto/lzo-rle.ko] undefined!
ERROR: "crypto_unregister_scomp" [crypto/lzo.ko] undefined!
ERROR: "crypto_unregister_alg" [crypto/lzo.ko] undefined!
ERROR: "crypto_register_scomp" [crypto/lzo.ko] undefined!
ERROR: "crypto_register_alg" [crypto/lzo.ko] undefined!
ERROR: "kvmalloc_node" [crypto/lzo.ko] undefined!
ERROR: "kvfree" [crypto/lzo.ko] undefined!
ERROR: "lzo1x_1_compress" [crypto/lzo.ko] undefined!
ERROR: "lzo1x_decompress_safe" [crypto/lzo.ko] undefined!
ERROR: "crypto_unregister_shash" [crypto/crc32_generic.ko] undefined!
ERROR: "crypto_register_shash" [crypto/crc32_generic.ko] undefined!
ERROR: "crc32_le" [crypto/crc32_generic.ko] undefined!
ERROR: "crypto_unregister_alg" [crypto/camellia_generic.ko] undefined!
ERROR: "crypto_register_alg" [crypto/camellia_generic.ko] undefined!
ERROR: "blowfish_setkey" [crypto/blowfish_generic.ko] undefined!
ERROR: "crypto_unregister_alg" [crypto/blowfish_generic.ko] undefined!
ERROR: "crypto_register_alg" [crypto/blowfish_generic.ko] undefined!
ERROR: "crypto_unregister_algs" [crypto/des_generic.ko] undefined!
ERROR: "crypto_register_algs" [crypto/des_generic.ko] undefined!
ERROR: "des_expand_key" [crypto/des_generic.ko] undefined!
ERROR: "des_encrypt" [crypto/des_generic.ko] undefined!
ERROR: "des_decrypt" [crypto/des_generic.ko] undefined!
ERROR: "des3_ede_expand_key" [crypto/des_generic.ko] undefined!
ERROR: "des3_ede_encrypt" [crypto/des_generic.ko] undefined!
ERROR: "des3_ede_decrypt" [crypto/des_generic.ko] undefined!
ERROR: "crypto_unregister_templates" [crypto/ccm.ko] undefined!
ERROR: "crypto_register_templates" [crypto/ccm.ko] undefined!
ERROR: "crypto_skcipher_encrypt" [crypto/ccm.ko] undefined!
ERROR: "__crypto_memneq" [crypto/ccm.ko] undefined!
ERROR: "crypto_skcipher_decrypt" [crypto/ccm.ko] undefined!
ERROR: "sg_next" [crypto/ccm.ko] undefined!
ERROR: "crypto_ahash_finup" [crypto/ccm.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [crypto/ccm.ko] undefined!
ERROR: "crypto_aead_encrypt" [crypto/ccm.ko] undefined!
ERROR: "crypto_aead_decrypt" [crypto/ccm.ko] undefined!
ERROR: "scatterwalk_ffwd" [crypto/ccm.ko] undefined!
ERROR: "mem_section" [crypto/ccm.ko] undefined!
ERROR: "__phys_addr" [crypto/ccm.ko] undefined!
ERROR: "__virt_addr_valid" [crypto/ccm.ko] undefined!
ERROR: "sg_init_table" [crypto/ccm.ko] undefined!
ERROR: "strcmp" [crypto/ccm.ko] undefined!
ERROR: "crypto_grab_skcipher" [crypto/ccm.ko] undefined!
ERROR: "strncmp" [crypto/ccm.ko] undefined!
ERROR: "crypto_grab_ahash" [crypto/ccm.ko] undefined!
ERROR: "shash_register_instance" [crypto/ccm.ko] undefined!
ERROR: "crypto_inst_setname" [crypto/ccm.ko] undefined!
ERROR: "shash_free_singlespawn_instance" [crypto/ccm.ko] undefined!
ERROR: "crypto_grab_spawn" [crypto/ccm.ko] undefined!
ERROR: "crypto_check_attr_type" [crypto/ccm.ko] undefined!
ERROR: "aead_register_instance" [crypto/ccm.ko] undefined!
ERROR: "snprintf" [crypto/ccm.ko] undefined!
ERROR: "crypto_grab_aead" [crypto/ccm.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [crypto/ccm.ko] undefined!
ERROR: "kmalloc_caches" [crypto/ccm.ko] undefined!
ERROR: "crypto_attr_alg_name" [crypto/ccm.ko] undefined!
ERROR: "crypto_get_attr_type" [crypto/ccm.ko] undefined!
ERROR: "crypto_spawn_tfm" [crypto/ccm.ko] undefined!
ERROR: "__crypto_xor" [crypto/ccm.ko] undefined!
ERROR: "crypto_cipher_encrypt_one" [crypto/ccm.ko] undefined!
ERROR: "crypto_cipher_setkey" [crypto/ccm.ko] undefined!
ERROR: "crypto_ahash_setkey" [crypto/ccm.ko] undefined!
ERROR: "crypto_skcipher_setkey" [crypto/ccm.ko] undefined!
ERROR: "kfree" [crypto/ccm.ko] undefined!
ERROR: "crypto_drop_spawn" [crypto/ccm.ko] undefined!
ERROR: "crypto_spawn_tfm2" [crypto/ccm.ko] undefined!
ERROR: "crypto_destroy_tfm" [crypto/ccm.ko] undefined!
ERROR: "crypto_aead_setkey" [crypto/ccm.ko] undefined!
ERROR: "crypto_aead_setauthsize" [crypto/ccm.ko] undefined!
ERROR: "scatterwalk_map_and_copy" [crypto/ccm.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [crypto/ccm.ko] undefined!
ERROR: "crypto_unregister_template" [crypto/cts.ko] undefined!
ERROR: "crypto_register_template" [crypto/cts.ko] undefined!
ERROR: "crypto_skcipher_decrypt" [crypto/cts.ko] undefined!
ERROR: "__crypto_xor" [crypto/cts.ko] undefined!
ERROR: "skcipher_register_instance" [crypto/cts.ko] undefined!
ERROR: "crypto_inst_setname" [crypto/cts.ko] undefined!
ERROR: "strncmp" [crypto/cts.ko] undefined!
ERROR: "crypto_grab_skcipher" [crypto/cts.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [crypto/cts.ko] undefined!
ERROR: "kmalloc_caches" [crypto/cts.ko] undefined!
ERROR: "crypto_attr_alg_name" [crypto/cts.ko] undefined!
ERROR: "crypto_get_attr_type" [crypto/cts.ko] undefined!
ERROR: "kfree" [crypto/cts.ko] undefined!
ERROR: "crypto_drop_spawn" [crypto/cts.ko] undefined!
ERROR: "crypto_spawn_tfm2" [crypto/cts.ko] undefined!
ERROR: "crypto_destroy_tfm" [crypto/cts.ko] undefined!
ERROR: "crypto_skcipher_setkey" [crypto/cts.ko] undefined!
ERROR: "crypto_skcipher_encrypt" [crypto/cts.ko] undefined!
ERROR: "scatterwalk_map_and_copy" [crypto/cts.ko] undefined!
ERROR: "scatterwalk_ffwd" [crypto/cts.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [crypto/cts.ko] undefined!
ERROR: "crypto_unregister_shashes" [crypto/blake2s_generic.ko] undefined!
ERROR: "crypto_register_shashes" [crypto/blake2s_generic.ko] undefined!
ERROR: "blake2s_compress_generic" [crypto/blake2s_generic.ko] undefined!
ERROR: "crypto_unregister_shashes" [crypto/blake2b_generic.ko] undefined!
ERROR: "crypto_register_shashes" [crypto/blake2b_generic.ko] undefined!
ERROR: "crypto_unregister_shashes" [crypto/streebog_generic.ko] undefined!
ERROR: "crypto_register_shashes" [crypto/streebog_generic.ko] undefined!
ERROR: "crypto_unregister_template" [crypto/cmac.ko] undefined!
ERROR: "crypto_register_template" [crypto/cmac.ko] undefined!
ERROR: "__crypto_xor" [crypto/cmac.ko] undefined!
ERROR: "shash_register_instance" [crypto/cmac.ko] undefined!
ERROR: "crypto_inst_setname" [crypto/cmac.ko] undefined!
ERROR: "shash_free_singlespawn_instance" [crypto/cmac.ko] undefined!
ERROR: "crypto_grab_spawn" [crypto/cmac.ko] undefined!
ERROR: "crypto_attr_alg_name" [crypto/cmac.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [crypto/cmac.ko] undefined!
ERROR: "kmalloc_caches" [crypto/cmac.ko] undefined!
ERROR: "crypto_check_attr_type" [crypto/cmac.ko] undefined!
ERROR: "crypto_spawn_tfm" [crypto/cmac.ko] undefined!
ERROR: "crypto_destroy_tfm" [crypto/cmac.ko] undefined!
ERROR: "crypto_cipher_encrypt_one" [crypto/cmac.ko] undefined!
ERROR: "crypto_cipher_setkey" [crypto/cmac.ko] undefined!
ERROR: "kthread_destroy_worker" [crypto/crypto_engine.ko] undefined!
ERROR: "sched_setscheduler" [crypto/crypto_engine.ko] undefined!
ERROR: "_dev_info" [crypto/crypto_engine.ko] undefined!
ERROR: "kthread_create_worker" [crypto/crypto_engine.ko] undefined!
ERROR: "__raw_spin_lock_init" [crypto/crypto_engine.ko] undefined!
ERROR: "crypto_init_queue" [crypto/crypto_engine.ko] undefined!
ERROR: "snprintf" [crypto/crypto_engine.ko] undefined!
ERROR: "devm_kmalloc" [crypto/crypto_engine.ko] undefined!
ERROR: "_dev_warn" [crypto/crypto_engine.ko] undefined!
ERROR: "msleep" [crypto/crypto_engine.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [crypto/crypto_engine.ko] undefined!
ERROR: "crypto_dequeue_request" [crypto/crypto_engine.ko] undefined!
ERROR: "crypto_enqueue_request" [crypto/crypto_engine.ko] undefined!
ERROR: "_dev_err" [crypto/crypto_engine.ko] undefined!
ERROR: "kthread_queue_work" [crypto/crypto_engine.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [crypto/crypto_engine.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [crypto/crypto_engine.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [crypto/crypto_engine.ko] undefined!
ERROR: "kmalloc_caches" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "__kmalloc" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "drop_nlink" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "simple_read_from_buffer" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "efivar_entry_delete" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "strlen" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "get_tree_single" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "ucs2_utf8size" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "simple_lookup" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "no_llseek" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "generic_delete_inode" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "lockref_get" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "dput" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "inc_nlink" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "guid_parse" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "uuid_is_valid" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "d_add" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "sprintf" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "d_delete" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "_copy_to_user" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "inode_owner_or_capable" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "kill_litter_super" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "_ctype" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "efivar_entry_remove" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "memcmp" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "efivar_entry_size" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "efivar_init" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "vfs_ioc_setflags_prepare" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "simple_open" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "up_write" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "down_write" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "efi" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "efivar_entry_set_get_size" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "mnt_drop_write_file" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "simple_dir_operations" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "d_alloc" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "efivar_entry_get" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "___ratelimit" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "efivar_variable_is_removable" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "strncasecmp" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "mnt_want_write_file" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "msleep_interruptible" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "register_filesystem" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "get_next_ino" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "iput" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "kfree" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "efivar_entry_add" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "current_time" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "always_delete_dentry" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "d_make_root" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "simple_statfs" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "inode_set_flags" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "unregister_filesystem" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "memdup_user" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "new_inode" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "_copy_from_user" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "__efivar_entry_iter" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "clear_inode" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "d_instantiate" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "efivars_kobject" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "ucs2_as_utf8" [fs/efivarfs/efivarfs.ko] undefined!
ERROR: "rcu_lock_map" [fs/btrfs/btrfs.ko] undefined!
ERROR: "kobject_put" [fs/btrfs/btrfs.ko] undefined!
ERROR: "blkdev_issue_discard" [fs/btrfs/btrfs.ko] undefined!
ERROR: "kset_create_and_add" [fs/btrfs/btrfs.ko] undefined!
ERROR: "system_wq" [fs/btrfs/btrfs.ko] undefined!
ERROR: "kmem_cache_destroy" [fs/btrfs/btrfs.ko] undefined!
ERROR: "kernel_write" [fs/btrfs/btrfs.ko] undefined!
ERROR: "iget_failed" [fs/btrfs/btrfs.ko] undefined!
ERROR: "kmalloc_caches" [fs/btrfs/btrfs.ko] undefined!
ERROR: "atomic64_set_cx8" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__kmalloc" [fs/btrfs/btrfs.ko] undefined!
ERROR: "drop_nlink" [fs/btrfs/btrfs.ko] undefined!
ERROR: "set_anon_super" [fs/btrfs/btrfs.ko] undefined!
ERROR: "submit_bio_wait" [fs/btrfs/btrfs.ko] undefined!
ERROR: "zlib_inflateEnd" [fs/btrfs/btrfs.ko] undefined!
ERROR: "lock_is_held_type" [fs/btrfs/btrfs.ko] undefined!
ERROR: "up_read" [fs/btrfs/btrfs.ko] undefined!
ERROR: "trace_handle_return" [fs/btrfs/btrfs.ko] undefined!
ERROR: "blk_status_to_errno" [fs/btrfs/btrfs.ko] undefined!
ERROR: "bio_alloc_bioset" [fs/btrfs/btrfs.ko] undefined!
ERROR: "_raw_spin_unlock" [fs/btrfs/btrfs.ko] undefined!
ERROR: "generic_file_llseek" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__mark_inode_dirty" [fs/btrfs/btrfs.ko] undefined!
ERROR: "d_invalidate" [fs/btrfs/btrfs.ko] undefined!
ERROR: "atomic64_add_386" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__set_page_dirty_nobuffers" [fs/btrfs/btrfs.ko] undefined!
ERROR: "crypto_alloc_shash" [fs/btrfs/btrfs.ko] undefined!
ERROR: "memparse" [fs/btrfs/btrfs.ko] undefined!
ERROR: "filemap_fault" [fs/btrfs/btrfs.ko] undefined!
ERROR: "strchr" [fs/btrfs/btrfs.ko] undefined!
ERROR: "kvfree" [fs/btrfs/btrfs.ko] undefined!
ERROR: "inode_permission" [fs/btrfs/btrfs.ko] undefined!
ERROR: "generic_write_checks" [fs/btrfs/btrfs.ko] undefined!
ERROR: "del_timer" [fs/btrfs/btrfs.ko] undefined!
ERROR: "wake_up_bit" [fs/btrfs/btrfs.ko] undefined!
ERROR: "strlen" [fs/btrfs/btrfs.ko] undefined!
ERROR: "schedule_timeout_uninterruptible" [fs/btrfs/btrfs.ko] undefined!
ERROR: "rcu_barrier" [fs/btrfs/btrfs.ko] undefined!
ERROR: "page_address" [fs/btrfs/btrfs.ko] undefined!
ERROR: "filemap_write_and_wait_range" [fs/btrfs/btrfs.ko] undefined!
ERROR: "free_anon_bdev" [fs/btrfs/btrfs.ko] undefined!
ERROR: "iget5_locked" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__fdget" [fs/btrfs/btrfs.ko] undefined!
ERROR: "migrate_page" [fs/btrfs/btrfs.ko] undefined!
ERROR: "writeback_inodes_sb_nr" [fs/btrfs/btrfs.ko] undefined!
ERROR: "find_get_pages_contig" [fs/btrfs/btrfs.ko] undefined!
ERROR: "kill_anon_super" [fs/btrfs/btrfs.ko] undefined!
ERROR: "ktime_get_seconds" [fs/btrfs/btrfs.ko] undefined!
ERROR: "crc32c_impl" [fs/btrfs/btrfs.ko] undefined!
ERROR: "dget_parent" [fs/btrfs/btrfs.ko] undefined!
ERROR: "bdev_read_only" [fs/btrfs/btrfs.ko] undefined!
ERROR: "ZSTD_getParams" [fs/btrfs/btrfs.ko] undefined!
ERROR: "autoremove_wake_function" [fs/btrfs/btrfs.ko] undefined!
ERROR: "ZSTD_initCStream" [fs/btrfs/btrfs.ko] undefined!
ERROR: "file_ra_state_init" [fs/btrfs/btrfs.ko] undefined!
ERROR: "seq_escape" [fs/btrfs/btrfs.ko] undefined!
ERROR: "div64_u64" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [fs/btrfs/btrfs.ko] undefined!
ERROR: "rb_next_postorder" [fs/btrfs/btrfs.ko] undefined!
ERROR: "system_unbound_wq" [fs/btrfs/btrfs.ko] undefined!
ERROR: "seq_puts" [fs/btrfs/btrfs.ko] undefined!
ERROR: "is_bad_inode" [fs/btrfs/btrfs.ko] undefined!
ERROR: "pagecache_get_page" [fs/btrfs/btrfs.ko] undefined!
ERROR: "downgrade_write" [fs/btrfs/btrfs.ko] undefined!
ERROR: "truncate_inode_pages_range" [fs/btrfs/btrfs.ko] undefined!
ERROR: "nsecs_to_jiffies" [fs/btrfs/btrfs.ko] undefined!
ERROR: "generic_file_open" [fs/btrfs/btrfs.ko] undefined!
ERROR: "page_cache_async_readahead" [fs/btrfs/btrfs.ko] undefined!
ERROR: "match_strdup" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__might_fault" [fs/btrfs/btrfs.ko] undefined!
ERROR: "vfs_kern_mount" [fs/btrfs/btrfs.ko] undefined!
ERROR: "_raw_read_lock" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__lock_page" [fs/btrfs/btrfs.ko] undefined!
ERROR: "kobject_uevent" [fs/btrfs/btrfs.ko] undefined!
ERROR: "tag_pages_for_writeback" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__srcu_read_unlock" [fs/btrfs/btrfs.ko] undefined!
ERROR: "_raw_spin_lock_bh" [fs/btrfs/btrfs.ko] undefined!
ERROR: "ZSTD_endStream" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__lock_buffer" [fs/btrfs/btrfs.ko] undefined!
ERROR: "touch_atime" [fs/btrfs/btrfs.ko] undefined!
ERROR: "deactivate_locked_super" [fs/btrfs/btrfs.ko] undefined!
ERROR: "find_next_bit" [fs/btrfs/btrfs.ko] undefined!
ERROR: "delayed_work_timer_fn" [fs/btrfs/btrfs.ko] undefined!
ERROR: "lockref_get" [fs/btrfs/btrfs.ko] undefined!
ERROR: "___might_sleep" [fs/btrfs/btrfs.ko] undefined!
ERROR: "schedule_timeout_killable" [fs/btrfs/btrfs.ko] undefined!
ERROR: "dput" [fs/btrfs/btrfs.ko] undefined!
ERROR: "seq_printf" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__warn_printk" [fs/btrfs/btrfs.ko] undefined!
ERROR: "cancel_work_sync" [fs/btrfs/btrfs.ko] undefined!
ERROR: "sysfs_create_files" [fs/btrfs/btrfs.ko] undefined!
ERROR: "ktime_get" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__dynamic_pr_debug" [fs/btrfs/btrfs.ko] undefined!
ERROR: "rb_first_postorder" [fs/btrfs/btrfs.ko] undefined!
ERROR: "match_token" [fs/btrfs/btrfs.ko] undefined!
ERROR: "kmemdup" [fs/btrfs/btrfs.ko] undefined!
ERROR: "inc_nlink" [fs/btrfs/btrfs.ko] undefined!
ERROR: "filp_close" [fs/btrfs/btrfs.ko] undefined!
ERROR: "list_sort" [fs/btrfs/btrfs.ko] undefined!
ERROR: "invalidate_inode_pages2" [fs/btrfs/btrfs.ko] undefined!
ERROR: "bio_trim" [fs/btrfs/btrfs.ko] undefined!
ERROR: "bioset_init" [fs/btrfs/btrfs.ko] undefined!
ERROR: "init_timer_key" [fs/btrfs/btrfs.ko] undefined!
ERROR: "zlib_deflate_dfltcc_enabled" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__rwlock_init" [fs/btrfs/btrfs.ko] undefined!
ERROR: "add_to_page_cache_lru" [fs/btrfs/btrfs.ko] undefined!
ERROR: "filemap_fdatawait_range" [fs/btrfs/btrfs.ko] undefined!
ERROR: "cancel_delayed_work_sync" [fs/btrfs/btrfs.ko] undefined!
ERROR: "mutex_unlock" [fs/btrfs/btrfs.ko] undefined!
ERROR: "strsep" [fs/btrfs/btrfs.ko] undefined!
ERROR: "crypto_shash_final" [fs/btrfs/btrfs.ko] undefined!
ERROR: "bio_advance" [fs/btrfs/btrfs.ko] undefined!
ERROR: "trace_event_buffer_reserve" [fs/btrfs/btrfs.ko] undefined!
ERROR: "d_instantiate_new" [fs/btrfs/btrfs.ko] undefined!
ERROR: "kobject_del" [fs/btrfs/btrfs.ko] undefined!
ERROR: "generic_read_dir" [fs/btrfs/btrfs.ko] undefined!
ERROR: "vfree" [fs/btrfs/btrfs.ko] undefined!
ERROR: "atomic64_add_return_cx8" [fs/btrfs/btrfs.ko] undefined!
ERROR: "ZSTD_initDStream" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__getblk_gfp" [fs/btrfs/btrfs.ko] undefined!
ERROR: "igrab" [fs/btrfs/btrfs.ko] undefined!
ERROR: "super_setup_bdi" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__preempt_count" [fs/btrfs/btrfs.ko] undefined!
ERROR: "call_rcu" [fs/btrfs/btrfs.ko] undefined!
ERROR: "unlock_buffer" [fs/btrfs/btrfs.ko] undefined!
ERROR: "strcspn" [fs/btrfs/btrfs.ko] undefined!
ERROR: "redirty_page_for_writepage" [fs/btrfs/btrfs.ko] undefined!
ERROR: "crc32c" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__bitmap_clear" [fs/btrfs/btrfs.ko] undefined!
ERROR: "trace_print_flags_seq" [fs/btrfs/btrfs.ko] undefined!
ERROR: "ktime_get_real_seconds" [fs/btrfs/btrfs.ko] undefined!
ERROR: "pagevec_lookup_range_tag" [fs/btrfs/btrfs.ko] undefined!
ERROR: "bpf_trace_run3" [fs/btrfs/btrfs.ko] undefined!
ERROR: "trace_hardirqs_on" [fs/btrfs/btrfs.ko] undefined!
ERROR: "sysfs_remove_group" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__alloc_pages_nodemask" [fs/btrfs/btrfs.ko] undefined!
ERROR: "kstrdup" [fs/btrfs/btrfs.ko] undefined!
ERROR: "set_page_dirty" [fs/btrfs/btrfs.ko] undefined!
ERROR: "kthread_create_on_node" [fs/btrfs/btrfs.ko] undefined!
ERROR: "rcu_read_lock_held" [fs/btrfs/btrfs.ko] undefined!
ERROR: "jiffies" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__might_sleep" [fs/btrfs/btrfs.ko] undefined!
ERROR: "insert_inode_locked4" [fs/btrfs/btrfs.ko] undefined!
ERROR: "trace_print_symbols_seq_u64" [fs/btrfs/btrfs.ko] undefined!
ERROR: "lookup_bdev" [fs/btrfs/btrfs.ko] undefined!
ERROR: "rb_replace_node" [fs/btrfs/btrfs.ko] undefined!
ERROR: "truncate_setsize" [fs/btrfs/btrfs.ko] undefined!
ERROR: "iov_iter_fault_in_readable" [fs/btrfs/btrfs.ko] undefined!
ERROR: "try_to_release_page" [fs/btrfs/btrfs.ko] undefined!
ERROR: "mutex_trylock" [fs/btrfs/btrfs.ko] undefined!
ERROR: "strcmp" [fs/btrfs/btrfs.ko] undefined!
ERROR: "down_read" [fs/btrfs/btrfs.ko] undefined!
ERROR: "kobject_create_and_add" [fs/btrfs/btrfs.ko] undefined!
ERROR: "down_write_trylock" [fs/btrfs/btrfs.ko] undefined!
ERROR: "end_page_writeback" [fs/btrfs/btrfs.ko] undefined!
ERROR: "debug_locks" [fs/btrfs/btrfs.ko] undefined!
ERROR: "ZSTD_decompressStream" [fs/btrfs/btrfs.ko] undefined!
ERROR: "cmpxchg8b_emu" [fs/btrfs/btrfs.ko] undefined!
ERROR: "d_delete" [fs/btrfs/btrfs.ko] undefined!
ERROR: "complete_all" [fs/btrfs/btrfs.ko] undefined!
ERROR: "rb_first" [fs/btrfs/btrfs.ko] undefined!
ERROR: "invalidate_bdev" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__init_srcu_struct" [fs/btrfs/btrfs.ko] undefined!
ERROR: "lock_release" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__init_waitqueue_head" [fs/btrfs/btrfs.ko] undefined!
ERROR: "_copy_to_user" [fs/btrfs/btrfs.ko] undefined!
ERROR: "bio_reset" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__insert_inode_hash" [fs/btrfs/btrfs.ko] undefined!
ERROR: "wait_for_completion" [fs/btrfs/btrfs.ko] undefined!
ERROR: "inode_owner_or_capable" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__bitmap_or" [fs/btrfs/btrfs.ko] undefined!
ERROR: "kmap_atomic" [fs/btrfs/btrfs.ko] undefined!
ERROR: "blk_check_plugged" [fs/btrfs/btrfs.ko] undefined!
ERROR: "misc_register" [fs/btrfs/btrfs.ko] undefined!
ERROR: "generic_remap_file_range_prep" [fs/btrfs/btrfs.ko] undefined!
ERROR: "kstrtoull" [fs/btrfs/btrfs.ko] undefined!
ERROR: "raid6_call" [fs/btrfs/btrfs.ko] undefined!
ERROR: "lock_acquire" [fs/btrfs/btrfs.ko] undefined!
ERROR: "set_task_ioprio" [fs/btrfs/btrfs.ko] undefined!
ERROR: "bpf_trace_run1" [fs/btrfs/btrfs.ko] undefined!
ERROR: "inode_add_bytes" [fs/btrfs/btrfs.ko] undefined!
ERROR: "wake_up_var" [fs/btrfs/btrfs.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [fs/btrfs/btrfs.ko] undefined!
ERROR: "debug_lockdep_rcu_enabled" [fs/btrfs/btrfs.ko] undefined!
ERROR: "current_task" [fs/btrfs/btrfs.ko] undefined!
ERROR: "read_cache_page_gfp" [fs/btrfs/btrfs.ko] undefined!
ERROR: "xor_blocks" [fs/btrfs/btrfs.ko] undefined!
ERROR: "errno_to_blk_status" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__bread_gfp" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__mutex_init" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [fs/btrfs/btrfs.ko] undefined!
ERROR: "printk" [fs/btrfs/btrfs.ko] undefined!
ERROR: "kthread_stop" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__list_del_entry_valid" [fs/btrfs/btrfs.ko] undefined!
ERROR: "posix_acl_chmod" [fs/btrfs/btrfs.ko] undefined!
ERROR: "sysfs_create_group" [fs/btrfs/btrfs.ko] undefined!
ERROR: "d_obtain_alias" [fs/btrfs/btrfs.ko] undefined!
ERROR: "cleanup_srcu_struct" [fs/btrfs/btrfs.ko] undefined!
ERROR: "memcmp" [fs/btrfs/btrfs.ko] undefined!
ERROR: "_raw_write_unlock" [fs/btrfs/btrfs.ko] undefined!
ERROR: "iov_iter_alignment" [fs/btrfs/btrfs.ko] undefined!
ERROR: "ktime_get_real_ts64" [fs/btrfs/btrfs.ko] undefined!
ERROR: "atomic64_sub_return_cx8" [fs/btrfs/btrfs.ko] undefined!
ERROR: "_raw_read_unlock" [fs/btrfs/btrfs.ko] undefined!
ERROR: "crypto_shash_update" [fs/btrfs/btrfs.ko] undefined!
ERROR: "bio_add_page" [fs/btrfs/btrfs.ko] undefined!
ERROR: "zero_fill_bio_iter" [fs/btrfs/btrfs.ko] undefined!
ERROR: "sget" [fs/btrfs/btrfs.ko] undefined!
ERROR: "kobject_init_and_add" [fs/btrfs/btrfs.ko] undefined!
ERROR: "panic" [fs/btrfs/btrfs.ko] undefined!
ERROR: "mod_delayed_work_on" [fs/btrfs/btrfs.ko] undefined!
ERROR: "bio_clone_fast" [fs/btrfs/btrfs.ko] undefined!
ERROR: "kunmap" [fs/btrfs/btrfs.ko] undefined!
ERROR: "wait_for_completion_io" [fs/btrfs/btrfs.ko] undefined!
ERROR: "file_remove_privs" [fs/btrfs/btrfs.ko] undefined!
ERROR: "wait_for_completion_interruptible" [fs/btrfs/btrfs.ko] undefined!
ERROR: "find_next_zero_bit" [fs/btrfs/btrfs.ko] undefined!
ERROR: "workqueue_set_max_active" [fs/btrfs/btrfs.ko] undefined!
ERROR: "atomic64_sub_386" [fs/btrfs/btrfs.ko] undefined!
ERROR: "atomic64_read_cx8" [fs/btrfs/btrfs.ko] undefined!
ERROR: "_cond_resched" [fs/btrfs/btrfs.ko] undefined!
ERROR: "rb_erase" [fs/btrfs/btrfs.ko] undefined!
ERROR: "strncpy" [fs/btrfs/btrfs.ko] undefined!
ERROR: "trace_event_reg" [fs/btrfs/btrfs.ko] undefined!
ERROR: "blkdev_get_by_path" [fs/btrfs/btrfs.ko] undefined!
ERROR: "zlib_inflate_workspacesize" [fs/btrfs/btrfs.ko] undefined!
ERROR: "_raw_read_trylock" [fs/btrfs/btrfs.ko] undefined!
ERROR: "_raw_spin_unlock_irq" [fs/btrfs/btrfs.ko] undefined!
ERROR: "strncmp" [fs/btrfs/btrfs.ko] undefined!
ERROR: "atomic64_set_386" [fs/btrfs/btrfs.ko] undefined!
ERROR: "kmem_cache_free" [fs/btrfs/btrfs.ko] undefined!
ERROR: "set_nlink" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__wait_on_buffer" [fs/btrfs/btrfs.ko] undefined!
ERROR: "file_update_time" [fs/btrfs/btrfs.ko] undefined!
ERROR: "_raw_write_lock" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__kunmap_atomic" [fs/btrfs/btrfs.ko] undefined!
ERROR: "destroy_workqueue" [fs/btrfs/btrfs.ko] undefined!
ERROR: "setattr_copy" [fs/btrfs/btrfs.ko] undefined!
ERROR: "strstr" [fs/btrfs/btrfs.ko] undefined!
ERROR: "bpf_trace_run5" [fs/btrfs/btrfs.ko] undefined!
ERROR: "radix_tree_gang_lookup_tag" [fs/btrfs/btrfs.ko] undefined!
ERROR: "down" [fs/btrfs/btrfs.ko] undefined!
ERROR: "sysfs_merge_group" [fs/btrfs/btrfs.ko] undefined!
ERROR: "noop_llseek" [fs/btrfs/btrfs.ko] undefined!
ERROR: "wait_on_page_writeback" [fs/btrfs/btrfs.ko] undefined!
ERROR: "xa_load" [fs/btrfs/btrfs.ko] undefined!
ERROR: "generate_random_uuid" [fs/btrfs/btrfs.ko] undefined!
ERROR: "mod_timer" [fs/btrfs/btrfs.ko] undefined!
ERROR: "kobj_sysfs_ops" [fs/btrfs/btrfs.ko] undefined!
ERROR: "unlock_two_nondirectories" [fs/btrfs/btrfs.ko] undefined!
ERROR: "ZSTD_DStreamWorkspaceBound" [fs/btrfs/btrfs.ko] undefined!
ERROR: "sync_dirty_buffer" [fs/btrfs/btrfs.ko] undefined!
ERROR: "truncate_pagecache" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__xa_clear_mark" [fs/btrfs/btrfs.ko] undefined!
ERROR: "vfs_ioc_setflags_prepare" [fs/btrfs/btrfs.ko] undefined!
ERROR: "sysfs_remove_link" [fs/btrfs/btrfs.ko] undefined!
ERROR: "match_int" [fs/btrfs/btrfs.ko] undefined!
ERROR: "wait_on_page_bit" [fs/btrfs/btrfs.ko] undefined!
ERROR: "memchr_inv" [fs/btrfs/btrfs.ko] undefined!
ERROR: "zlib_deflateInit2" [fs/btrfs/btrfs.ko] undefined!
ERROR: "synchronize_rcu" [fs/btrfs/btrfs.ko] undefined!
ERROR: "unlock_page" [fs/btrfs/btrfs.ko] undefined!
ERROR: "generic_file_read_iter" [fs/btrfs/btrfs.ko] undefined!
ERROR: "sort" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [fs/btrfs/btrfs.ko] undefined!
ERROR: "up_write" [fs/btrfs/btrfs.ko] undefined!
ERROR: "kobject_add" [fs/btrfs/btrfs.ko] undefined!
ERROR: "down_write" [fs/btrfs/btrfs.ko] undefined!
ERROR: "fput" [fs/btrfs/btrfs.ko] undefined!
ERROR: "sysfs_unmerge_group" [fs/btrfs/btrfs.ko] undefined!
ERROR: "generic_file_direct_write" [fs/btrfs/btrfs.ko] undefined!
ERROR: "perf_trace_run_bpf_submit" [fs/btrfs/btrfs.ko] undefined!
ERROR: "perf_trace_buf_alloc" [fs/btrfs/btrfs.ko] undefined!
ERROR: "inode_nohighmem" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__list_add_valid" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__brelse" [fs/btrfs/btrfs.ko] undefined!
ERROR: "init_wait_entry" [fs/btrfs/btrfs.ko] undefined!
ERROR: "balance_dirty_pages_ratelimited" [fs/btrfs/btrfs.ko] undefined!
ERROR: "mount_subtree" [fs/btrfs/btrfs.ko] undefined!
ERROR: "bio_endio" [fs/btrfs/btrfs.ko] undefined!
ERROR: "rcu_read_lock_sched_held" [fs/btrfs/btrfs.ko] undefined!
ERROR: "radix_tree_delete" [fs/btrfs/btrfs.ko] undefined!
ERROR: "bio_put" [fs/btrfs/btrfs.ko] undefined!
ERROR: "ksize" [fs/btrfs/btrfs.ko] undefined!
ERROR: "bit_wait_io" [fs/btrfs/btrfs.ko] undefined!
ERROR: "mark_page_accessed" [fs/btrfs/btrfs.ko] undefined!
ERROR: "zlib_inflate" [fs/btrfs/btrfs.ko] undefined!
ERROR: "errseq_check" [fs/btrfs/btrfs.ko] undefined!
ERROR: "bioset_exit" [fs/btrfs/btrfs.ko] undefined!
ERROR: "inode_init_once" [fs/btrfs/btrfs.ko] undefined!
ERROR: "work_busy" [fs/btrfs/btrfs.ko] undefined!
ERROR: "kvmalloc_node" [fs/btrfs/btrfs.ko] undefined!
ERROR: "mntput" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__bitmap_set" [fs/btrfs/btrfs.ko] undefined!
ERROR: "sysfs_create_link" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__var_waitqueue" [fs/btrfs/btrfs.ko] undefined!
ERROR: "mnt_drop_write_file" [fs/btrfs/btrfs.ko] undefined!
ERROR: "submit_bio" [fs/btrfs/btrfs.ko] undefined!
ERROR: "capable" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__cond_resched_lock" [fs/btrfs/btrfs.ko] undefined!
ERROR: "blk_finish_plug" [fs/btrfs/btrfs.ko] undefined!
ERROR: "init_wait_var_entry" [fs/btrfs/btrfs.ko] undefined!
ERROR: "ZSTD_compressStream" [fs/btrfs/btrfs.ko] undefined!
ERROR: "xattr_full_name" [fs/btrfs/btrfs.ko] undefined!
ERROR: "strrchr" [fs/btrfs/btrfs.ko] undefined!
ERROR: "radix_tree_gang_lookup" [fs/btrfs/btrfs.ko] undefined!
ERROR: "kmem_cache_alloc" [fs/btrfs/btrfs.ko] undefined!
ERROR: "down_write_killable_nested" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__free_pages" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__check_sticky" [fs/btrfs/btrfs.ko] undefined!
ERROR: "account_page_redirty" [fs/btrfs/btrfs.ko] undefined!
ERROR: "blkdev_put" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__put_user_4" [fs/btrfs/btrfs.ko] undefined!
ERROR: "radix_tree_tag_set" [fs/btrfs/btrfs.ko] undefined!
ERROR: "strnlen" [fs/btrfs/btrfs.ko] undefined!
ERROR: "simple_dir_operations" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__filemap_set_wb_err" [fs/btrfs/btrfs.ko] undefined!
ERROR: "kmap" [fs/btrfs/btrfs.ko] undefined!
ERROR: "fs_kobj" [fs/btrfs/btrfs.ko] undefined!
ERROR: "sync_blockdev" [fs/btrfs/btrfs.ko] undefined!
ERROR: "inode_sub_bytes" [fs/btrfs/btrfs.ko] undefined!
ERROR: "truncate_inode_pages_final" [fs/btrfs/btrfs.ko] undefined!
ERROR: "trace_event_ignore_this_pid" [fs/btrfs/btrfs.ko] undefined!
ERROR: "rb_prev" [fs/btrfs/btrfs.ko] undefined!
ERROR: "_raw_spin_unlock_bh" [fs/btrfs/btrfs.ko] undefined!
ERROR: "refcount_warn_saturate" [fs/btrfs/btrfs.ko] undefined!
ERROR: "zlib_deflate_workspacesize" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__bitmap_andnot" [fs/btrfs/btrfs.ko] undefined!
ERROR: "schedule" [fs/btrfs/btrfs.ko] undefined!
ERROR: "schedule_timeout" [fs/btrfs/btrfs.ko] undefined!
ERROR: "___ratelimit" [fs/btrfs/btrfs.ko] undefined!
ERROR: "kmalloc_order_trace" [fs/btrfs/btrfs.ko] undefined!
ERROR: "atomic64_inc_386" [fs/btrfs/btrfs.ko] undefined!
ERROR: "fiemap_fill_next_extent" [fs/btrfs/btrfs.ko] undefined!
ERROR: "_raw_spin_lock_irq" [fs/btrfs/btrfs.ko] undefined!
ERROR: "unlock_new_inode" [fs/btrfs/btrfs.ko] undefined!
ERROR: "mnt_want_write_file" [fs/btrfs/btrfs.ko] undefined!
ERROR: "lock_two_nondirectories" [fs/btrfs/btrfs.ko] undefined!
ERROR: "inode_newsize_ok" [fs/btrfs/btrfs.ko] undefined!
ERROR: "raid6_datap_recov" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [fs/btrfs/btrfs.ko] undefined!
ERROR: "add_swap_extent" [fs/btrfs/btrfs.ko] undefined!
ERROR: "_kstrtoul" [fs/btrfs/btrfs.ko] undefined!
ERROR: "current_umask" [fs/btrfs/btrfs.ko] undefined!
ERROR: "page_cache_sync_readahead" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__raw_spin_lock_init" [fs/btrfs/btrfs.ko] undefined!
ERROR: "inode_set_bytes" [fs/btrfs/btrfs.ko] undefined!
ERROR: "inode_get_bytes" [fs/btrfs/btrfs.ko] undefined!
ERROR: "crypto_destroy_tfm" [fs/btrfs/btrfs.ko] undefined!
ERROR: "trace_event_buffer_commit" [fs/btrfs/btrfs.ko] undefined!
ERROR: "wake_up_process" [fs/btrfs/btrfs.ko] undefined!
ERROR: "d_prune_aliases" [fs/btrfs/btrfs.ko] undefined!
ERROR: "ZSTD_CStreamWorkspaceBound" [fs/btrfs/btrfs.ko] undefined!
ERROR: "vfs_setpos" [fs/btrfs/btrfs.ko] undefined!
ERROR: "clear_page_dirty_for_io" [fs/btrfs/btrfs.ko] undefined!
ERROR: "kthread_should_park" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [fs/btrfs/btrfs.ko] undefined!
ERROR: "submit_bh" [fs/btrfs/btrfs.ko] undefined!
ERROR: "down_read_trylock" [fs/btrfs/btrfs.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [fs/btrfs/btrfs.ko] undefined!
ERROR: "dio_end_io" [fs/btrfs/btrfs.ko] undefined!
ERROR: "_raw_spin_lock" [fs/btrfs/btrfs.ko] undefined!
ERROR: "kthread_park" [fs/btrfs/btrfs.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [fs/btrfs/btrfs.ko] undefined!
ERROR: "radix_tree_tag_clear" [fs/btrfs/btrfs.ko] undefined!
ERROR: "rb_insert_color" [fs/btrfs/btrfs.ko] undefined!
ERROR: "kmem_cache_create" [fs/btrfs/btrfs.ko] undefined!
ERROR: "d_tmpfile" [fs/btrfs/btrfs.ko] undefined!
ERROR: "register_filesystem" [fs/btrfs/btrfs.ko] undefined!
ERROR: "zlib_inflateInit2" [fs/btrfs/btrfs.ko] undefined!
ERROR: "seq_dentry" [fs/btrfs/btrfs.ko] undefined!
ERROR: "zlib_deflate" [fs/btrfs/btrfs.ko] undefined!
ERROR: "atomic64_inc_return_cx8" [fs/btrfs/btrfs.ko] undefined!
ERROR: "synchronize_srcu" [fs/btrfs/btrfs.ko] undefined!
ERROR: "event_triggers_call" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__wake_up" [fs/btrfs/btrfs.ko] undefined!
ERROR: "vfs_ioc_fssetxattr_check" [fs/btrfs/btrfs.ko] undefined!
ERROR: "sysfs_remove_files" [fs/btrfs/btrfs.ko] undefined!
ERROR: "kthread_should_stop" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__pagevec_release" [fs/btrfs/btrfs.ko] undefined!
ERROR: "out_of_line_wait_on_bit" [fs/btrfs/btrfs.ko] undefined!
ERROR: "prepare_to_wait_event" [fs/btrfs/btrfs.ko] undefined!
ERROR: "bpf_trace_run2" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__test_set_page_writeback" [fs/btrfs/btrfs.ko] undefined!
ERROR: "I_BDEV" [fs/btrfs/btrfs.ko] undefined!
ERROR: "mutex_lock_nested" [fs/btrfs/btrfs.ko] undefined!
ERROR: "blockdev_superblock" [fs/btrfs/btrfs.ko] undefined!
ERROR: "kthread_parkme" [fs/btrfs/btrfs.ko] undefined!
ERROR: "fs_umode_to_ftype" [fs/btrfs/btrfs.ko] undefined!
ERROR: "kset_unregister" [fs/btrfs/btrfs.ko] undefined!
ERROR: "iput" [fs/btrfs/btrfs.ko] undefined!
ERROR: "schedule_timeout_interruptible" [fs/btrfs/btrfs.ko] undefined!
ERROR: "kfree" [fs/btrfs/btrfs.ko] undefined!
ERROR: "truncate_pagecache_range" [fs/btrfs/btrfs.ko] undefined!
ERROR: "kstrtouint" [fs/btrfs/btrfs.ko] undefined!
ERROR: "down_read_nested" [fs/btrfs/btrfs.ko] undefined!
ERROR: "generic_permission" [fs/btrfs/btrfs.ko] undefined!
ERROR: "inode_dio_wait" [fs/btrfs/btrfs.ko] undefined!
ERROR: "page_get_link" [fs/btrfs/btrfs.ko] undefined!
ERROR: "ihold" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__sb_end_write" [fs/btrfs/btrfs.ko] undefined!
ERROR: "trace_print_symbols_seq" [fs/btrfs/btrfs.ko] undefined!
ERROR: "trace_event_raw_init" [fs/btrfs/btrfs.ko] undefined!
ERROR: "match_u64" [fs/btrfs/btrfs.ko] undefined!
ERROR: "current_time" [fs/btrfs/btrfs.ko] undefined!
ERROR: "prepare_to_wait" [fs/btrfs/btrfs.ko] undefined!
ERROR: "generic_error_remove_page" [fs/btrfs/btrfs.ko] undefined!
ERROR: "d_splice_alias" [fs/btrfs/btrfs.ko] undefined!
ERROR: "skip_spaces" [fs/btrfs/btrfs.ko] undefined!
ERROR: "fsnotify" [fs/btrfs/btrfs.ko] undefined!
ERROR: "get_anon_bdev" [fs/btrfs/btrfs.ko] undefined!
ERROR: "kobject_init" [fs/btrfs/btrfs.ko] undefined!
ERROR: "radix_tree_preload" [fs/btrfs/btrfs.ko] undefined!
ERROR: "sync_filesystem" [fs/btrfs/btrfs.ko] undefined!
ERROR: "up" [fs/btrfs/btrfs.ko] undefined!
ERROR: "invalidate_mapping_pages" [fs/btrfs/btrfs.ko] undefined!
ERROR: "div64_u64_rem" [fs/btrfs/btrfs.ko] undefined!
ERROR: "lzo1x_1_compress" [fs/btrfs/btrfs.ko] undefined!
ERROR: "fget" [fs/btrfs/btrfs.ko] undefined!
ERROR: "bsearch" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__sb_start_write" [fs/btrfs/btrfs.ko] undefined!
ERROR: "lockdep_init_map" [fs/btrfs/btrfs.ko] undefined!
ERROR: "d_make_root" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__sw_hweight32" [fs/btrfs/btrfs.ko] undefined!
ERROR: "kzfree" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__blockdev_direct_IO" [fs/btrfs/btrfs.ko] undefined!
ERROR: "iov_iter_advance" [fs/btrfs/btrfs.ko] undefined!
ERROR: "lzo1x_decompress_safe" [fs/btrfs/btrfs.ko] undefined!
ERROR: "guid_gen" [fs/btrfs/btrfs.ko] undefined!
ERROR: "find_first_bit" [fs/btrfs/btrfs.ko] undefined!
ERROR: "iov_iter_copy_from_user_atomic" [fs/btrfs/btrfs.ko] undefined!
ERROR: "zlib_deflateEnd" [fs/btrfs/btrfs.ko] undefined!
ERROR: "finish_wait" [fs/btrfs/btrfs.ko] undefined!
ERROR: "raid6_2data_recov" [fs/btrfs/btrfs.ko] undefined!
ERROR: "radix_tree_lookup" [fs/btrfs/btrfs.ko] undefined!
ERROR: "filemap_fdatawrite_range" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__find_get_block" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__bitmap_weight" [fs/btrfs/btrfs.ko] undefined!
ERROR: "rb_next" [fs/btrfs/btrfs.ko] undefined!
ERROR: "mutex_lock_interruptible_nested" [fs/btrfs/btrfs.ko] undefined!
ERROR: "bpf_trace_run6" [fs/btrfs/btrfs.ko] undefined!
ERROR: "unregister_filesystem" [fs/btrfs/btrfs.ko] undefined!
ERROR: "init_special_inode" [fs/btrfs/btrfs.ko] undefined!
ERROR: "atomic64_read_386" [fs/btrfs/btrfs.ko] undefined!
ERROR: "kobject_rename" [fs/btrfs/btrfs.ko] undefined!
ERROR: "trace_raw_output_prep" [fs/btrfs/btrfs.ko] undefined!
ERROR: "memdup_user" [fs/btrfs/btrfs.ko] undefined!
ERROR: "dump_page" [fs/btrfs/btrfs.ko] undefined!
ERROR: "queue_work_on" [fs/btrfs/btrfs.ko] undefined!
ERROR: "writeback_inodes_sb" [fs/btrfs/btrfs.ko] undefined!
ERROR: "complete" [fs/btrfs/btrfs.ko] undefined!
ERROR: "filemap_map_pages" [fs/btrfs/btrfs.ko] undefined!
ERROR: "snprintf" [fs/btrfs/btrfs.ko] undefined!
ERROR: "fiemap_check_flags" [fs/btrfs/btrfs.ko] undefined!
ERROR: "new_inode" [fs/btrfs/btrfs.ko] undefined!
ERROR: "trace_seq_printf" [fs/btrfs/btrfs.ko] undefined!
ERROR: "memmove" [fs/btrfs/btrfs.ko] undefined!
ERROR: "generic_file_splice_read" [fs/btrfs/btrfs.ko] undefined!
ERROR: "lookup_one_len" [fs/btrfs/btrfs.ko] undefined!
ERROR: "set_blocksize" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__msecs_to_jiffies" [fs/btrfs/btrfs.ko] undefined!
ERROR: "rb_last" [fs/btrfs/btrfs.ko] undefined!
ERROR: "atomic64_inc_return_386" [fs/btrfs/btrfs.ko] undefined!
ERROR: "discard_new_inode" [fs/btrfs/btrfs.ko] undefined!
ERROR: "simple_dir_inode_operations" [fs/btrfs/btrfs.ko] undefined!
ERROR: "_copy_from_user" [fs/btrfs/btrfs.ko] undefined!
ERROR: "trace_hardirqs_off" [fs/btrfs/btrfs.ko] undefined!
ERROR: "radix_tree_insert" [fs/btrfs/btrfs.ko] undefined!
ERROR: "filemap_range_has_page" [fs/btrfs/btrfs.ko] undefined!
ERROR: "fs_ftype_to_dtype" [fs/btrfs/btrfs.ko] undefined!
ERROR: "bpf_trace_run4" [fs/btrfs/btrfs.ko] undefined!
ERROR: "clear_inode" [fs/btrfs/btrfs.ko] undefined!
ERROR: "alloc_workqueue" [fs/btrfs/btrfs.ko] undefined!
ERROR: "blk_start_plug" [fs/btrfs/btrfs.ko] undefined!
ERROR: "misc_deregister" [fs/btrfs/btrfs.ko] undefined!
ERROR: "pagecache_isize_extended" [fs/btrfs/btrfs.ko] undefined!
ERROR: "bdput" [fs/btrfs/btrfs.ko] undefined!
ERROR: "d_instantiate" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__init_rwsem" [fs/btrfs/btrfs.ko] undefined!
ERROR: "filemap_flush" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__put_page" [fs/btrfs/btrfs.ko] undefined!
ERROR: "file_check_and_advance_wb_err" [fs/btrfs/btrfs.ko] undefined!
ERROR: "clear_nlink" [fs/btrfs/btrfs.ko] undefined!
ERROR: "setattr_prepare" [fs/btrfs/btrfs.ko] undefined!
ERROR: "vfs_fsync_range" [fs/btrfs/btrfs.ko] undefined!
ERROR: "krealloc" [fs/btrfs/btrfs.ko] undefined!
ERROR: "is_vmalloc_addr" [fs/btrfs/btrfs.ko] undefined!
ERROR: "lockdep_rcu_suspicious" [fs/btrfs/btrfs.ko] undefined!
ERROR: "generic_fillattr" [fs/btrfs/btrfs.ko] undefined!
ERROR: "inode_init_owner" [fs/btrfs/btrfs.ko] undefined!
ERROR: "strcpy" [fs/btrfs/btrfs.ko] undefined!
ERROR: "noop_backing_dev_info" [fs/btrfs/btrfs.ko] undefined!
ERROR: "filp_open" [fs/btrfs/btrfs.ko] undefined!
ERROR: "__page_file_index" [fs/btrfs/btrfs.ko] undefined!
ERROR: "proc_dointvec_minmax" [fs/xfs/xfs.ko] undefined!
ERROR: "rcu_lock_map" [fs/xfs/xfs.ko] undefined!
ERROR: "iomap_sort_ioends" [fs/xfs/xfs.ko] undefined!
ERROR: "kobject_put" [fs/xfs/xfs.ko] undefined!
ERROR: "blkdev_issue_discard" [fs/xfs/xfs.ko] undefined!
ERROR: "flush_work" [fs/xfs/xfs.ko] undefined!
ERROR: "kset_create_and_add" [fs/xfs/xfs.ko] undefined!
ERROR: "system_wq" [fs/xfs/xfs.ko] undefined!
ERROR: "bio_split" [fs/xfs/xfs.ko] undefined!
ERROR: "kmem_cache_destroy" [fs/xfs/xfs.ko] undefined!
ERROR: "fs_bio_set" [fs/xfs/xfs.ko] undefined!
ERROR: "__blkdev_issue_discard" [fs/xfs/xfs.ko] undefined!
ERROR: "kmalloc_caches" [fs/xfs/xfs.ko] undefined!
ERROR: "atomic64_set_cx8" [fs/xfs/xfs.ko] undefined!
ERROR: "__kmalloc" [fs/xfs/xfs.ko] undefined!
ERROR: "iomap_seek_data" [fs/xfs/xfs.ko] undefined!
ERROR: "msleep" [fs/xfs/xfs.ko] undefined!
ERROR: "drop_nlink" [fs/xfs/xfs.ko] undefined!
ERROR: "sb_min_blocksize" [fs/xfs/xfs.ko] undefined!
ERROR: "submit_bio_wait" [fs/xfs/xfs.ko] undefined!
ERROR: "lock_is_held_type" [fs/xfs/xfs.ko] undefined!
ERROR: "up_read" [fs/xfs/xfs.ko] undefined!
ERROR: "trace_handle_return" [fs/xfs/xfs.ko] undefined!
ERROR: "rht_bucket_nested" [fs/xfs/xfs.ko] undefined!
ERROR: "blk_status_to_errno" [fs/xfs/xfs.ko] undefined!
ERROR: "bio_alloc_bioset" [fs/xfs/xfs.ko] undefined!
ERROR: "list_lru_add" [fs/xfs/xfs.ko] undefined!
ERROR: "iomap_is_partially_uptodate" [fs/xfs/xfs.ko] undefined!
ERROR: "_raw_spin_unlock" [fs/xfs/xfs.ko] undefined!
ERROR: "generic_file_llseek" [fs/xfs/xfs.ko] undefined!
ERROR: "d_invalidate" [fs/xfs/xfs.ko] undefined!
ERROR: "filemap_fault" [fs/xfs/xfs.ko] undefined!
ERROR: "register_sysctl_table" [fs/xfs/xfs.ko] undefined!
ERROR: "mutex_destroy" [fs/xfs/xfs.ko] undefined!
ERROR: "user_path_at_empty" [fs/xfs/xfs.ko] undefined!
ERROR: "kvfree" [fs/xfs/xfs.ko] undefined!
ERROR: "generic_write_checks" [fs/xfs/xfs.ko] undefined!
ERROR: "vm_unmap_ram" [fs/xfs/xfs.ko] undefined!
ERROR: "bpf_trace_run7" [fs/xfs/xfs.ko] undefined!
ERROR: "wake_up_bit" [fs/xfs/xfs.ko] undefined!
ERROR: "generic_update_time" [fs/xfs/xfs.ko] undefined!
ERROR: "proc_symlink" [fs/xfs/xfs.ko] undefined!
ERROR: "strlen" [fs/xfs/xfs.ko] undefined!
ERROR: "schedule_timeout_uninterruptible" [fs/xfs/xfs.ko] undefined!
ERROR: "rcu_barrier" [fs/xfs/xfs.ko] undefined!
ERROR: "page_address" [fs/xfs/xfs.ko] undefined!
ERROR: "filemap_write_and_wait_range" [fs/xfs/xfs.ko] undefined!
ERROR: "__fdget" [fs/xfs/xfs.ko] undefined!
ERROR: "dget_parent" [fs/xfs/xfs.ko] undefined!
ERROR: "congestion_wait" [fs/xfs/xfs.ko] undefined!
ERROR: "bdev_read_only" [fs/xfs/xfs.ko] undefined!
ERROR: "kfree_link" [fs/xfs/xfs.ko] undefined!
ERROR: "autoremove_wake_function" [fs/xfs/xfs.ko] undefined!
ERROR: "seq_escape" [fs/xfs/xfs.ko] undefined!
ERROR: "iomap_zero_range" [fs/xfs/xfs.ko] undefined!
ERROR: "vm_unmap_aliases" [fs/xfs/xfs.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [fs/xfs/xfs.ko] undefined!
ERROR: "iomap_dio_iopoll" [fs/xfs/xfs.ko] undefined!
ERROR: "remove_wait_queue" [fs/xfs/xfs.ko] undefined!
ERROR: "seq_puts" [fs/xfs/xfs.ko] undefined!
ERROR: "blkdev_issue_flush" [fs/xfs/xfs.ko] undefined!
ERROR: "downgrade_write" [fs/xfs/xfs.ko] undefined!
ERROR: "system_freezing_cnt" [fs/xfs/xfs.ko] undefined!
ERROR: "__might_fault" [fs/xfs/xfs.ko] undefined!
ERROR: "touch_atime" [fs/xfs/xfs.ko] undefined!
ERROR: "delayed_work_timer_fn" [fs/xfs/xfs.ko] undefined!
ERROR: "___might_sleep" [fs/xfs/xfs.ko] undefined!
ERROR: "dput" [fs/xfs/xfs.ko] undefined!
ERROR: "seq_printf" [fs/xfs/xfs.ko] undefined!
ERROR: "__warn_printk" [fs/xfs/xfs.ko] undefined!
ERROR: "list_lru_walk_one" [fs/xfs/xfs.ko] undefined!
ERROR: "radix_tree_tagged" [fs/xfs/xfs.ko] undefined!
ERROR: "get_tree_bdev" [fs/xfs/xfs.ko] undefined!
ERROR: "__get_user_4" [fs/xfs/xfs.ko] undefined!
ERROR: "inc_nlink" [fs/xfs/xfs.ko] undefined!
ERROR: "list_sort" [fs/xfs/xfs.ko] undefined!
ERROR: "iomap_writepages" [fs/xfs/xfs.ko] undefined!
ERROR: "invalidate_inode_pages2" [fs/xfs/xfs.ko] undefined!
ERROR: "__alloc_percpu" [fs/xfs/xfs.ko] undefined!
ERROR: "d_find_alias" [fs/xfs/xfs.ko] undefined!
ERROR: "dentry_open" [fs/xfs/xfs.ko] undefined!
ERROR: "div_s64_rem" [fs/xfs/xfs.ko] undefined!
ERROR: "wake_bit_function" [fs/xfs/xfs.ko] undefined!
ERROR: "get_unused_fd_flags" [fs/xfs/xfs.ko] undefined!
ERROR: "debug_check_no_locks_held" [fs/xfs/xfs.ko] undefined!
ERROR: "vfs_readlink" [fs/xfs/xfs.ko] undefined!
ERROR: "init_timer_key" [fs/xfs/xfs.ko] undefined!
ERROR: "prepare_to_wait_exclusive" [fs/xfs/xfs.ko] undefined!
ERROR: "cancel_delayed_work_sync" [fs/xfs/xfs.ko] undefined!
ERROR: "mutex_unlock" [fs/xfs/xfs.ko] undefined!
ERROR: "bio_uninit" [fs/xfs/xfs.ko] undefined!
ERROR: "trace_event_buffer_reserve" [fs/xfs/xfs.ko] undefined!
ERROR: "kobject_del" [fs/xfs/xfs.ko] undefined!
ERROR: "generic_read_dir" [fs/xfs/xfs.ko] undefined!
ERROR: "igrab" [fs/xfs/xfs.ko] undefined!
ERROR: "__preempt_count" [fs/xfs/xfs.ko] undefined!
ERROR: "call_rcu" [fs/xfs/xfs.ko] undefined!
ERROR: "noop_direct_IO" [fs/xfs/xfs.ko] undefined!
ERROR: "crc32c" [fs/xfs/xfs.ko] undefined!
ERROR: "rhashtable_insert_slow" [fs/xfs/xfs.ko] undefined!
ERROR: "trace_print_flags_seq" [fs/xfs/xfs.ko] undefined!
ERROR: "strncpy_from_user" [fs/xfs/xfs.ko] undefined!
ERROR: "bpf_trace_run3" [fs/xfs/xfs.ko] undefined!
ERROR: "__alloc_pages_nodemask" [fs/xfs/xfs.ko] undefined!
ERROR: "list_lru_isolate_move" [fs/xfs/xfs.ko] undefined!
ERROR: "kstrdup" [fs/xfs/xfs.ko] undefined!
ERROR: "kthread_create_on_node" [fs/xfs/xfs.ko] undefined!
ERROR: "rcu_read_lock_held" [fs/xfs/xfs.ko] undefined!
ERROR: "jiffies" [fs/xfs/xfs.ko] undefined!
ERROR: "free_percpu" [fs/xfs/xfs.ko] undefined!
ERROR: "__might_sleep" [fs/xfs/xfs.ko] undefined!
ERROR: "down_write_nested" [fs/xfs/xfs.ko] undefined!
ERROR: "truncate_setsize" [fs/xfs/xfs.ko] undefined!
ERROR: "mutex_trylock" [fs/xfs/xfs.ko] undefined!
ERROR: "down_read" [fs/xfs/xfs.ko] undefined!
ERROR: "down_write_trylock" [fs/xfs/xfs.ko] undefined!
ERROR: "debug_locks" [fs/xfs/xfs.ko] undefined!
ERROR: "cmpxchg8b_emu" [fs/xfs/xfs.ko] undefined!
ERROR: "rhashtable_destroy" [fs/xfs/xfs.ko] undefined!
ERROR: "invalidate_bdev" [fs/xfs/xfs.ko] undefined!
ERROR: "lock_release" [fs/xfs/xfs.ko] undefined!
ERROR: "_atomic_dec_and_lock" [fs/xfs/xfs.ko] undefined!
ERROR: "__init_waitqueue_head" [fs/xfs/xfs.ko] undefined!
ERROR: "_copy_to_user" [fs/xfs/xfs.ko] undefined!
ERROR: "default_wake_function" [fs/xfs/xfs.ko] undefined!
ERROR: "__list_lru_init" [fs/xfs/xfs.ko] undefined!
ERROR: "wait_for_completion" [fs/xfs/xfs.ko] undefined!
ERROR: "inode_owner_or_capable" [fs/xfs/xfs.ko] undefined!
ERROR: "iomap_fiemap" [fs/xfs/xfs.ko] undefined!
ERROR: "generic_remap_file_range_prep" [fs/xfs/xfs.ko] undefined!
ERROR: "rht_bucket_nested_insert" [fs/xfs/xfs.ko] undefined!
ERROR: "noop_set_page_dirty" [fs/xfs/xfs.ko] undefined!
ERROR: "__put_user_8" [fs/xfs/xfs.ko] undefined!
ERROR: "lock_acquire" [fs/xfs/xfs.ko] undefined!
ERROR: "noop_invalidatepage" [fs/xfs/xfs.ko] undefined!
ERROR: "touch_softlockup_watchdog" [fs/xfs/xfs.ko] undefined!
ERROR: "rhashtable_free_and_destroy" [fs/xfs/xfs.ko] undefined!
ERROR: "bio_init" [fs/xfs/xfs.ko] undefined!
ERROR: "__default_kernel_pte_mask" [fs/xfs/xfs.ko] undefined!
ERROR: "sync_inodes_sb" [fs/xfs/xfs.ko] undefined!
ERROR: "proc_mkdir" [fs/xfs/xfs.ko] undefined!
ERROR: "d_add_ci" [fs/xfs/xfs.ko] undefined!
ERROR: "bpf_trace_run9" [fs/xfs/xfs.ko] undefined!
ERROR: "bpf_trace_run1" [fs/xfs/xfs.ko] undefined!
ERROR: "iomap_bmap" [fs/xfs/xfs.ko] undefined!
ERROR: "_ctype" [fs/xfs/xfs.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [fs/xfs/xfs.ko] undefined!
ERROR: "debug_lockdep_rcu_enabled" [fs/xfs/xfs.ko] undefined!
ERROR: "current_task" [fs/xfs/xfs.ko] undefined!
ERROR: "freezing_slow_path" [fs/xfs/xfs.ko] undefined!
ERROR: "jiffies_to_msecs" [fs/xfs/xfs.ko] undefined!
ERROR: "down_trylock" [fs/xfs/xfs.ko] undefined!
ERROR: "list_lru_count_one" [fs/xfs/xfs.ko] undefined!
ERROR: "__mutex_init" [fs/xfs/xfs.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [fs/xfs/xfs.ko] undefined!
ERROR: "printk" [fs/xfs/xfs.ko] undefined!
ERROR: "_raw_spin_trylock" [fs/xfs/xfs.ko] undefined!
ERROR: "kthread_stop" [fs/xfs/xfs.ko] undefined!
ERROR: "__local_bh_enable_ip" [fs/xfs/xfs.ko] undefined!
ERROR: "__list_del_entry_valid" [fs/xfs/xfs.ko] undefined!
ERROR: "posix_acl_chmod" [fs/xfs/xfs.ko] undefined!
ERROR: "file_modified" [fs/xfs/xfs.ko] undefined!
ERROR: "d_obtain_alias" [fs/xfs/xfs.ko] undefined!
ERROR: "memcmp" [fs/xfs/xfs.ko] undefined!
ERROR: "bio_add_page" [fs/xfs/xfs.ko] undefined!
ERROR: "kobject_init_and_add" [fs/xfs/xfs.ko] undefined!
ERROR: "blkdev_issue_zeroout" [fs/xfs/xfs.ko] undefined!
ERROR: "find_next_zero_bit" [fs/xfs/xfs.ko] undefined!
ERROR: "atomic64_read_cx8" [fs/xfs/xfs.ko] undefined!
ERROR: "bio_chain" [fs/xfs/xfs.ko] undefined!
ERROR: "laptop_mode" [fs/xfs/xfs.ko] undefined!
ERROR: "_cond_resched" [fs/xfs/xfs.ko] undefined!
ERROR: "rb_erase" [fs/xfs/xfs.ko] undefined!
ERROR: "strncpy" [fs/xfs/xfs.ko] undefined!
ERROR: "trace_event_reg" [fs/xfs/xfs.ko] undefined!
ERROR: "uuid_null" [fs/xfs/xfs.ko] undefined!
ERROR: "iomap_swapfile_activate" [fs/xfs/xfs.ko] undefined!
ERROR: "blkdev_get_by_path" [fs/xfs/xfs.ko] undefined!
ERROR: "seq_putc" [fs/xfs/xfs.ko] undefined!
ERROR: "atomic64_set_386" [fs/xfs/xfs.ko] undefined!
ERROR: "vm_map_ram" [fs/xfs/xfs.ko] undefined!
ERROR: "kmem_cache_free" [fs/xfs/xfs.ko] undefined!
ERROR: "io_schedule" [fs/xfs/xfs.ko] undefined!
ERROR: "set_nlink" [fs/xfs/xfs.ko] undefined!
ERROR: "file_update_time" [fs/xfs/xfs.ko] undefined!
ERROR: "mem_section" [fs/xfs/xfs.ko] undefined!
ERROR: "destroy_workqueue" [fs/xfs/xfs.ko] undefined!
ERROR: "bpf_trace_run5" [fs/xfs/xfs.ko] undefined!
ERROR: "radix_tree_gang_lookup_tag" [fs/xfs/xfs.ko] undefined!
ERROR: "down" [fs/xfs/xfs.ko] undefined!
ERROR: "thaw_bdev" [fs/xfs/xfs.ko] undefined!
ERROR: "unlock_two_nondirectories" [fs/xfs/xfs.ko] undefined!
ERROR: "prandom_u32" [fs/xfs/xfs.ko] undefined!
ERROR: "memchr" [fs/xfs/xfs.ko] undefined!
ERROR: "kstrtoint" [fs/xfs/xfs.ko] undefined!
ERROR: "thp_get_unmapped_area" [fs/xfs/xfs.ko] undefined!
ERROR: "memchr_inv" [fs/xfs/xfs.ko] undefined!
ERROR: "generic_file_read_iter" [fs/xfs/xfs.ko] undefined!
ERROR: "sort" [fs/xfs/xfs.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [fs/xfs/xfs.ko] undefined!
ERROR: "up_write" [fs/xfs/xfs.ko] undefined!
ERROR: "down_write" [fs/xfs/xfs.ko] undefined!
ERROR: "fput" [fs/xfs/xfs.ko] undefined!
ERROR: "perf_trace_run_bpf_submit" [fs/xfs/xfs.ko] undefined!
ERROR: "perf_trace_buf_alloc" [fs/xfs/xfs.ko] undefined!
ERROR: "__list_add_valid" [fs/xfs/xfs.ko] undefined!
ERROR: "flush_workqueue" [fs/xfs/xfs.ko] undefined!
ERROR: "posix_acl_create" [fs/xfs/xfs.ko] undefined!
ERROR: "init_wait_entry" [fs/xfs/xfs.ko] undefined!
ERROR: "iomap_file_unshare" [fs/xfs/xfs.ko] undefined!
ERROR: "rcu_read_lock_sched_held" [fs/xfs/xfs.ko] undefined!
ERROR: "radix_tree_delete" [fs/xfs/xfs.ko] undefined!
ERROR: "bio_put" [fs/xfs/xfs.ko] undefined!
ERROR: "find_first_zero_bit" [fs/xfs/xfs.ko] undefined!
ERROR: "kmem_cache_size" [fs/xfs/xfs.ko] undefined!
ERROR: "bit_waitqueue" [fs/xfs/xfs.ko] undefined!
ERROR: "iomap_ioend_try_merge" [fs/xfs/xfs.ko] undefined!
ERROR: "file_write_and_wait_range" [fs/xfs/xfs.ko] undefined!
ERROR: "inode_init_once" [fs/xfs/xfs.ko] undefined!
ERROR: "iomap_page_mkwrite" [fs/xfs/xfs.ko] undefined!
ERROR: "__destroy_inode" [fs/xfs/xfs.ko] undefined!
ERROR: "iomap_invalidatepage" [fs/xfs/xfs.ko] undefined!
ERROR: "print_hex_dump" [fs/xfs/xfs.ko] undefined!
ERROR: "mnt_drop_write_file" [fs/xfs/xfs.ko] undefined!
ERROR: "submit_bio" [fs/xfs/xfs.ko] undefined!
ERROR: "capable" [fs/xfs/xfs.ko] undefined!
ERROR: "blk_finish_plug" [fs/xfs/xfs.ko] undefined!
ERROR: "capable_wrt_inode_uidgid" [fs/xfs/xfs.ko] undefined!
ERROR: "radix_tree_gang_lookup" [fs/xfs/xfs.ko] undefined!
ERROR: "kmem_cache_alloc" [fs/xfs/xfs.ko] undefined!
ERROR: "__free_pages" [fs/xfs/xfs.ko] undefined!
ERROR: "blkdev_put" [fs/xfs/xfs.ko] undefined!
ERROR: "unregister_shrinker" [fs/xfs/xfs.ko] undefined!
ERROR: "__put_user_4" [fs/xfs/xfs.ko] undefined!
ERROR: "generic_fadvise" [fs/xfs/xfs.ko] undefined!
ERROR: "iomap_set_page_dirty" [fs/xfs/xfs.ko] undefined!
ERROR: "radix_tree_tag_set" [fs/xfs/xfs.ko] undefined!
ERROR: "strnlen" [fs/xfs/xfs.ko] undefined!
ERROR: "fs_kobj" [fs/xfs/xfs.ko] undefined!
ERROR: "trace_event_ignore_this_pid" [fs/xfs/xfs.ko] undefined!
ERROR: "unregister_sysctl_table" [fs/xfs/xfs.ko] undefined!
ERROR: "queue_delayed_work_on" [fs/xfs/xfs.ko] undefined!
ERROR: "refcount_warn_saturate" [fs/xfs/xfs.ko] undefined!
ERROR: "schedule" [fs/xfs/xfs.ko] undefined!
ERROR: "schedule_timeout" [fs/xfs/xfs.ko] undefined!
ERROR: "___ratelimit" [fs/xfs/xfs.ko] undefined!
ERROR: "iomap_seek_hole" [fs/xfs/xfs.ko] undefined!
ERROR: "unlock_new_inode" [fs/xfs/xfs.ko] undefined!
ERROR: "mnt_want_write_file" [fs/xfs/xfs.ko] undefined!
ERROR: "exportfs_decode_fh" [fs/xfs/xfs.ko] undefined!
ERROR: "in_group_p" [fs/xfs/xfs.ko] undefined!
ERROR: "kill_block_super" [fs/xfs/xfs.ko] undefined!
ERROR: "flush_delayed_work" [fs/xfs/xfs.ko] undefined!
ERROR: "dump_stack" [fs/xfs/xfs.ko] undefined!
ERROR: "lock_two_nondirectories" [fs/xfs/xfs.ko] undefined!
ERROR: "iomap_writepage" [fs/xfs/xfs.ko] undefined!
ERROR: "inode_newsize_ok" [fs/xfs/xfs.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [fs/xfs/xfs.ko] undefined!
ERROR: "current_umask" [fs/xfs/xfs.ko] undefined!
ERROR: "iomap_dio_rw" [fs/xfs/xfs.ko] undefined!
ERROR: "list_lru_walk_node" [fs/xfs/xfs.ko] undefined!
ERROR: "__raw_spin_lock_init" [fs/xfs/xfs.ko] undefined!
ERROR: "__refrigerator" [fs/xfs/xfs.ko] undefined!
ERROR: "iomap_readpage" [fs/xfs/xfs.ko] undefined!
ERROR: "trace_event_buffer_commit" [fs/xfs/xfs.ko] undefined!
ERROR: "lockdep_rht_mutex_is_held" [fs/xfs/xfs.ko] undefined!
ERROR: "wake_up_process" [fs/xfs/xfs.ko] undefined!
ERROR: "put_unused_fd" [fs/xfs/xfs.ko] undefined!
ERROR: "vfs_setpos" [fs/xfs/xfs.ko] undefined!
ERROR: "fs_parse" [fs/xfs/xfs.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [fs/xfs/xfs.ko] undefined!
ERROR: "down_read_trylock" [fs/xfs/xfs.ko] undefined!
ERROR: "path_put" [fs/xfs/xfs.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [fs/xfs/xfs.ko] undefined!
ERROR: "_raw_spin_lock" [fs/xfs/xfs.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [fs/xfs/xfs.ko] undefined!
ERROR: "radix_tree_tag_clear" [fs/xfs/xfs.ko] undefined!
ERROR: "rb_insert_color" [fs/xfs/xfs.ko] undefined!
ERROR: "__phys_addr" [fs/xfs/xfs.ko] undefined!
ERROR: "kmem_cache_create" [fs/xfs/xfs.ko] undefined!
ERROR: "d_tmpfile" [fs/xfs/xfs.ko] undefined!
ERROR: "list_lru_count_node" [fs/xfs/xfs.ko] undefined!
ERROR: "register_filesystem" [fs/xfs/xfs.ko] undefined!
ERROR: "event_triggers_call" [fs/xfs/xfs.ko] undefined!
ERROR: "__wake_up" [fs/xfs/xfs.ko] undefined!
ERROR: "vfs_ioc_fssetxattr_check" [fs/xfs/xfs.ko] undefined!
ERROR: "kthread_should_stop" [fs/xfs/xfs.ko] undefined!
ERROR: "remove_proc_subtree" [fs/xfs/xfs.ko] undefined!
ERROR: "prepare_to_wait_event" [fs/xfs/xfs.ko] undefined!
ERROR: "bpf_trace_run2" [fs/xfs/xfs.ko] undefined!
ERROR: "I_BDEV" [fs/xfs/xfs.ko] undefined!
ERROR: "__local_bh_disable_ip" [fs/xfs/xfs.ko] undefined!
ERROR: "rhashtable_init" [fs/xfs/xfs.ko] undefined!
ERROR: "mutex_lock_nested" [fs/xfs/xfs.ko] undefined!
ERROR: "iter_file_splice_write" [fs/xfs/xfs.ko] undefined!
ERROR: "blockdev_superblock" [fs/xfs/xfs.ko] undefined!
ERROR: "add_wait_queue" [fs/xfs/xfs.ko] undefined!
ERROR: "freeze_bdev" [fs/xfs/xfs.ko] undefined!
ERROR: "kset_unregister" [fs/xfs/xfs.ko] undefined!
ERROR: "iput" [fs/xfs/xfs.ko] undefined!
ERROR: "__vmalloc" [fs/xfs/xfs.ko] undefined!
ERROR: "invalidate_inode_pages2_range" [fs/xfs/xfs.ko] undefined!
ERROR: "kfree" [fs/xfs/xfs.ko] undefined!
ERROR: "truncate_pagecache_range" [fs/xfs/xfs.ko] undefined!
ERROR: "lockdep_rht_bucket_is_held" [fs/xfs/xfs.ko] undefined!
ERROR: "down_read_nested" [fs/xfs/xfs.ko] undefined!
ERROR: "inode_dio_wait" [fs/xfs/xfs.ko] undefined!
ERROR: "ihold" [fs/xfs/xfs.ko] undefined!
ERROR: "__sb_end_write" [fs/xfs/xfs.ko] undefined!
ERROR: "trace_print_symbols_seq" [fs/xfs/xfs.ko] undefined!
ERROR: "iomap_readpages" [fs/xfs/xfs.ko] undefined!
ERROR: "trace_event_raw_init" [fs/xfs/xfs.ko] undefined!
ERROR: "current_time" [fs/xfs/xfs.ko] undefined!
ERROR: "fd_install" [fs/xfs/xfs.ko] undefined!
ERROR: "prepare_to_wait" [fs/xfs/xfs.ko] undefined!
ERROR: "generic_error_remove_page" [fs/xfs/xfs.ko] undefined!
ERROR: "set_freezable" [fs/xfs/xfs.ko] undefined!
ERROR: "d_splice_alias" [fs/xfs/xfs.ko] undefined!
ERROR: "register_shrinker" [fs/xfs/xfs.ko] undefined!
ERROR: "iomap_releasepage" [fs/xfs/xfs.ko] undefined!
ERROR: "radix_tree_preload" [fs/xfs/xfs.ko] undefined!
ERROR: "sync_filesystem" [fs/xfs/xfs.ko] undefined!
ERROR: "up" [fs/xfs/xfs.ko] undefined!
ERROR: "add_wait_queue_exclusive" [fs/xfs/xfs.ko] undefined!
ERROR: "__sb_start_write" [fs/xfs/xfs.ko] undefined!
ERROR: "lockdep_init_map" [fs/xfs/xfs.ko] undefined!
ERROR: "d_make_root" [fs/xfs/xfs.ko] undefined!
ERROR: "__sw_hweight32" [fs/xfs/xfs.ko] undefined!
ERROR: "finish_wait" [fs/xfs/xfs.ko] undefined!
ERROR: "radix_tree_lookup" [fs/xfs/xfs.ko] undefined!
ERROR: "list_lru_destroy" [fs/xfs/xfs.ko] undefined!
ERROR: "bpf_trace_run6" [fs/xfs/xfs.ko] undefined!
ERROR: "iomap_finish_ioends" [fs/xfs/xfs.ko] undefined!
ERROR: "unregister_filesystem" [fs/xfs/xfs.ko] undefined!
ERROR: "init_special_inode" [fs/xfs/xfs.ko] undefined!
ERROR: "evict_inodes" [fs/xfs/xfs.ko] undefined!
ERROR: "atomic64_read_386" [fs/xfs/xfs.ko] undefined!
ERROR: "trace_raw_output_prep" [fs/xfs/xfs.ko] undefined!
ERROR: "inode_sb_list_add" [fs/xfs/xfs.ko] undefined!
ERROR: "memdup_user" [fs/xfs/xfs.ko] undefined!
ERROR: "iomap_truncate_page" [fs/xfs/xfs.ko] undefined!
ERROR: "queue_work_on" [fs/xfs/xfs.ko] undefined!
ERROR: "iomap_file_buffered_write" [fs/xfs/xfs.ko] undefined!
ERROR: "complete" [fs/xfs/xfs.ko] undefined!
ERROR: "filemap_map_pages" [fs/xfs/xfs.ko] undefined!
ERROR: "snprintf" [fs/xfs/xfs.ko] undefined!
ERROR: "trace_seq_printf" [fs/xfs/xfs.ko] undefined!
ERROR: "memmove" [fs/xfs/xfs.ko] undefined!
ERROR: "__break_lease" [fs/xfs/xfs.ko] undefined!
ERROR: "generic_file_splice_read" [fs/xfs/xfs.ko] undefined!
ERROR: "vmalloc_to_page" [fs/xfs/xfs.ko] undefined!
ERROR: "set_blocksize" [fs/xfs/xfs.ko] undefined!
ERROR: "__msecs_to_jiffies" [fs/xfs/xfs.ko] undefined!
ERROR: "sysfs_create_file_ns" [fs/xfs/xfs.ko] undefined!
ERROR: "inode_init_always" [fs/xfs/xfs.ko] undefined!
ERROR: "list_lru_del" [fs/xfs/xfs.ko] undefined!
ERROR: "_copy_from_user" [fs/xfs/xfs.ko] undefined!
ERROR: "radix_tree_insert" [fs/xfs/xfs.ko] undefined!
ERROR: "__rht_bucket_nested" [fs/xfs/xfs.ko] undefined!
ERROR: "bpf_trace_run4" [fs/xfs/xfs.ko] undefined!
ERROR: "iomap_migrate_page" [fs/xfs/xfs.ko] undefined!
ERROR: "blk_start_plug" [fs/xfs/xfs.ko] undefined!
ERROR: "alloc_workqueue" [fs/xfs/xfs.ko] undefined!
ERROR: "d_instantiate" [fs/xfs/xfs.ko] undefined!
ERROR: "__init_rwsem" [fs/xfs/xfs.ko] undefined!
ERROR: "filemap_flush" [fs/xfs/xfs.ko] undefined!
ERROR: "vfs_fsync_range" [fs/xfs/xfs.ko] undefined!
ERROR: "setattr_prepare" [fs/xfs/xfs.ko] undefined!
ERROR: "krealloc" [fs/xfs/xfs.ko] undefined!
ERROR: "is_vmalloc_addr" [fs/xfs/xfs.ko] undefined!
ERROR: "lockdep_rcu_suspicious" [fs/xfs/xfs.ko] undefined!
ERROR: "noop_backing_dev_info" [fs/xfs/xfs.ko] undefined!
  CPUSTR  arch/x86/boot/cpustr.h
  CC      arch/x86/boot/cpu.o
ERROR: "flush_work" [fs/fuse/virtiofs.ko] undefined!
ERROR: "system_wq" [fs/fuse/virtiofs.ko] undefined!
ERROR: "kmalloc_caches" [fs/fuse/virtiofs.ko] undefined!
ERROR: "__kmalloc" [fs/fuse/virtiofs.ko] undefined!
ERROR: "sg_init_table" [fs/fuse/virtiofs.ko] undefined!
ERROR: "fuse_free_conn" [fs/fuse/virtiofs.ko] undefined!
ERROR: "_raw_spin_unlock" [fs/fuse/virtiofs.ko] undefined!
ERROR: "fuse_fill_super_common" [fs/fuse/virtiofs.ko] undefined!
ERROR: "fuse_request_end" [fs/fuse/virtiofs.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [fs/fuse/virtiofs.ko] undefined!
ERROR: "fuse_get_unique" [fs/fuse/virtiofs.ko] undefined!
ERROR: "deactivate_locked_super" [fs/fuse/virtiofs.ko] undefined!
ERROR: "delayed_work_timer_fn" [fs/fuse/virtiofs.ko] undefined!
ERROR: "lockref_get" [fs/fuse/virtiofs.ko] undefined!
ERROR: "fuse_conn_put" [fs/fuse/virtiofs.ko] undefined!
ERROR: "__dynamic_pr_debug" [fs/fuse/virtiofs.ko] undefined!
ERROR: "init_user_ns" [fs/fuse/virtiofs.ko] undefined!
ERROR: "init_timer_key" [fs/fuse/virtiofs.ko] undefined!
ERROR: "virtqueue_kick_prepare" [fs/fuse/virtiofs.ko] undefined!
ERROR: "mutex_unlock" [fs/fuse/virtiofs.ko] undefined!
ERROR: "fuse_conn_init" [fs/fuse/virtiofs.ko] undefined!
ERROR: "virtqueue_add_outbuf" [fs/fuse/virtiofs.ko] undefined!
ERROR: "virtqueue_get_buf" [fs/fuse/virtiofs.ko] undefined!
ERROR: "__might_sleep" [fs/fuse/virtiofs.ko] undefined!
ERROR: "strcmp" [fs/fuse/virtiofs.ko] undefined!
ERROR: "__init_waitqueue_head" [fs/fuse/virtiofs.ko] undefined!
ERROR: "fuse_send_init" [fs/fuse/virtiofs.ko] undefined!
ERROR: "wait_for_completion" [fs/fuse/virtiofs.ko] undefined!
ERROR: "kmap_atomic" [fs/fuse/virtiofs.ko] undefined!
ERROR: "virtqueue_add_sgs" [fs/fuse/virtiofs.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [fs/fuse/virtiofs.ko] undefined!
ERROR: "printk" [fs/fuse/virtiofs.ko] undefined!
ERROR: "__list_del_entry_valid" [fs/fuse/virtiofs.ko] undefined!
ERROR: "virtqueue_disable_cb" [fs/fuse/virtiofs.ko] undefined!
ERROR: "__kunmap_atomic" [fs/fuse/virtiofs.ko] undefined!
ERROR: "memchr" [fs/fuse/virtiofs.ko] undefined!
ERROR: "fuse_dev_install" [fs/fuse/virtiofs.ko] undefined!
ERROR: "__list_add_valid" [fs/fuse/virtiofs.ko] undefined!
ERROR: "fuse_dev_free" [fs/fuse/virtiofs.ko] undefined!
ERROR: "fuse_dev_alloc" [fs/fuse/virtiofs.ko] undefined!
ERROR: "virtqueue_notify" [fs/fuse/virtiofs.ko] undefined!
ERROR: "fuse_dequeue_forget" [fs/fuse/virtiofs.ko] undefined!
ERROR: "fuse_kill_sb_anon" [fs/fuse/virtiofs.ko] undefined!
ERROR: "unregister_virtio_driver" [fs/fuse/virtiofs.ko] undefined!
ERROR: "queue_delayed_work_on" [fs/fuse/virtiofs.ko] undefined!
ERROR: "refcount_warn_saturate" [fs/fuse/virtiofs.ko] undefined!
ERROR: "fuse_conn_get" [fs/fuse/virtiofs.ko] undefined!
ERROR: "flush_delayed_work" [fs/fuse/virtiofs.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [fs/fuse/virtiofs.ko] undefined!
ERROR: "__raw_spin_lock_init" [fs/fuse/virtiofs.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [fs/fuse/virtiofs.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [fs/fuse/virtiofs.ko] undefined!
ERROR: "_raw_spin_lock" [fs/fuse/virtiofs.ko] undefined!
ERROR: "__dynamic_dev_dbg" [fs/fuse/virtiofs.ko] undefined!
ERROR: "register_filesystem" [fs/fuse/virtiofs.ko] undefined!
ERROR: "mutex_lock_nested" [fs/fuse/virtiofs.ko] undefined!
ERROR: "sg_init_one" [fs/fuse/virtiofs.ko] undefined!
ERROR: "kfree" [fs/fuse/virtiofs.ko] undefined!
ERROR: "sget_fc" [fs/fuse/virtiofs.ko] undefined!
ERROR: "get_anon_bdev" [fs/fuse/virtiofs.ko] undefined!
ERROR: "lockdep_init_map" [fs/fuse/virtiofs.ko] undefined!
ERROR: "unregister_filesystem" [fs/fuse/virtiofs.ko] undefined!
ERROR: "queue_work_on" [fs/fuse/virtiofs.ko] undefined!
ERROR: "complete" [fs/fuse/virtiofs.ko] undefined!
ERROR: "snprintf" [fs/fuse/virtiofs.ko] undefined!
ERROR: "virtqueue_is_broken" [fs/fuse/virtiofs.ko] undefined!
ERROR: "devm_kmalloc" [fs/fuse/virtiofs.ko] undefined!
ERROR: "virtqueue_enable_cb" [fs/fuse/virtiofs.ko] undefined!
ERROR: "fuse_len_args" [fs/fuse/virtiofs.ko] undefined!
ERROR: "register_virtio_driver" [fs/fuse/virtiofs.ko] undefined!
ERROR: "fuse_file_poll" [fs/fuse/cuse.ko] undefined!
ERROR: "noop_llseek" [fs/fuse/cuse.ko] undefined!
ERROR: "misc_deregister" [fs/fuse/cuse.ko] undefined!
ERROR: "class_destroy" [fs/fuse/cuse.ko] undefined!
ERROR: "misc_register" [fs/fuse/cuse.ko] undefined!
ERROR: "__class_create" [fs/fuse/cuse.ko] undefined!
ERROR: "fuse_dev_operations" [fs/fuse/cuse.ko] undefined!
ERROR: "fuse_dev_free" [fs/fuse/cuse.ko] undefined!
ERROR: "fuse_simple_background" [fs/fuse/cuse.ko] undefined!
ERROR: "__alloc_pages_nodemask" [fs/fuse/cuse.ko] undefined!
ERROR: "fuse_dev_alloc_install" [fs/fuse/cuse.ko] undefined!
ERROR: "fuse_conn_init" [fs/fuse/cuse.ko] undefined!
ERROR: "fuse_dev_fiq_ops" [fs/fuse/cuse.ko] undefined!
ERROR: "printk" [fs/fuse/cuse.ko] undefined!
ERROR: "kobject_uevent" [fs/fuse/cuse.ko] undefined!
ERROR: "__list_add_valid" [fs/fuse/cuse.ko] undefined!
ERROR: "cdev_add" [fs/fuse/cuse.ko] undefined!
ERROR: "cdev_alloc" [fs/fuse/cuse.ko] undefined!
ERROR: "device_add" [fs/fuse/cuse.ko] undefined!
ERROR: "register_chrdev_region" [fs/fuse/cuse.ko] undefined!
ERROR: "put_device" [fs/fuse/cuse.ko] undefined!
ERROR: "dev_set_name" [fs/fuse/cuse.ko] undefined!
ERROR: "device_initialize" [fs/fuse/cuse.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [fs/fuse/cuse.ko] undefined!
ERROR: "kmalloc_caches" [fs/fuse/cuse.ko] undefined!
ERROR: "alloc_chrdev_region" [fs/fuse/cuse.ko] undefined!
ERROR: "strcmp" [fs/fuse/cuse.ko] undefined!
ERROR: "strim" [fs/fuse/cuse.ko] undefined!
ERROR: "strsep" [fs/fuse/cuse.ko] undefined!
ERROR: "strlen" [fs/fuse/cuse.ko] undefined!
ERROR: "page_address" [fs/fuse/cuse.ko] undefined!
ERROR: "__free_pages" [fs/fuse/cuse.ko] undefined!
ERROR: "fuse_direct_io" [fs/fuse/cuse.ko] undefined!
ERROR: "fuse_do_ioctl" [fs/fuse/cuse.ko] undefined!
ERROR: "fuse_do_open" [fs/fuse/cuse.ko] undefined!
ERROR: "fuse_conn_get" [fs/fuse/cuse.ko] undefined!
ERROR: "fuse_sync_release" [fs/fuse/cuse.ko] undefined!
ERROR: "call_rcu" [fs/fuse/cuse.ko] undefined!
ERROR: "kfree" [fs/fuse/cuse.ko] undefined!
ERROR: "fuse_dev_release" [fs/fuse/cuse.ko] undefined!
ERROR: "fuse_conn_put" [fs/fuse/cuse.ko] undefined!
ERROR: "cdev_del" [fs/fuse/cuse.ko] undefined!
ERROR: "unregister_chrdev_region" [fs/fuse/cuse.ko] undefined!
ERROR: "device_unregister" [fs/fuse/cuse.ko] undefined!
ERROR: "mutex_unlock" [fs/fuse/cuse.ko] undefined!
ERROR: "__list_del_entry_valid" [fs/fuse/cuse.ko] undefined!
ERROR: "mutex_lock_nested" [fs/fuse/cuse.ko] undefined!
ERROR: "sprintf" [fs/fuse/cuse.ko] undefined!
ERROR: "fuse_abort_conn" [fs/fuse/cuse.ko] undefined!
ERROR: "rcu_lock_map" [fs/fuse/fuse.ko] undefined!
ERROR: "kobject_put" [fs/fuse/fuse.ko] undefined!
ERROR: "kmem_cache_destroy" [fs/fuse/fuse.ko] undefined!
ERROR: "set_wb_congested" [fs/fuse/fuse.ko] undefined!
ERROR: "bdi_set_max_ratio" [fs/fuse/fuse.ko] undefined!
ERROR: "kmalloc_caches" [fs/fuse/fuse.ko] undefined!
ERROR: "atomic64_set_cx8" [fs/fuse/fuse.ko] undefined!
ERROR: "__kmalloc" [fs/fuse/fuse.ko] undefined!
ERROR: "filemap_check_errors" [fs/fuse/fuse.ko] undefined!
ERROR: "replace_page_cache_page" [fs/fuse/fuse.ko] undefined!
ERROR: "drop_nlink" [fs/fuse/fuse.ko] undefined!
ERROR: "iov_iter_npages" [fs/fuse/fuse.ko] undefined!
ERROR: "lock_is_held_type" [fs/fuse/fuse.ko] undefined!
ERROR: "up_read" [fs/fuse/fuse.ko] undefined!
ERROR: "simple_read_from_buffer" [fs/fuse/fuse.ko] undefined!
ERROR: "make_bad_inode" [fs/fuse/fuse.ko] undefined!
ERROR: "_raw_spin_unlock" [fs/fuse/fuse.ko] undefined!
ERROR: "generic_file_llseek" [fs/fuse/fuse.ko] undefined!
ERROR: "__mark_inode_dirty" [fs/fuse/fuse.ko] undefined!
ERROR: "d_invalidate" [fs/fuse/fuse.ko] undefined!
ERROR: "__set_page_dirty_nobuffers" [fs/fuse/fuse.ko] undefined!
ERROR: "filemap_fault" [fs/fuse/fuse.ko] undefined!
ERROR: "mutex_destroy" [fs/fuse/fuse.ko] undefined!
ERROR: "kvfree" [fs/fuse/fuse.ko] undefined!
ERROR: "generic_write_checks" [fs/fuse/fuse.ko] undefined!
ERROR: "strlen" [fs/fuse/fuse.ko] undefined!
ERROR: "rcu_barrier" [fs/fuse/fuse.ko] undefined!
ERROR: "get_tree_single" [fs/fuse/fuse.ko] undefined!
ERROR: "page_address" [fs/fuse/fuse.ko] undefined!
ERROR: "filemap_write_and_wait_range" [fs/fuse/fuse.ko] undefined!
ERROR: "iget5_locked" [fs/fuse/fuse.ko] undefined!
ERROR: "kill_anon_super" [fs/fuse/fuse.ko] undefined!
ERROR: "dget_parent" [fs/fuse/fuse.ko] undefined!
ERROR: "posix_acl_to_xattr" [fs/fuse/fuse.ko] undefined!
ERROR: "add_to_pipe" [fs/fuse/fuse.ko] undefined!
ERROR: "__wake_up_sync" [fs/fuse/fuse.ko] undefined!
ERROR: "get_random_bytes" [fs/fuse/fuse.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [fs/fuse/fuse.ko] undefined!
ERROR: "stream_open" [fs/fuse/fuse.ko] undefined!
ERROR: "seq_puts" [fs/fuse/fuse.ko] undefined!
ERROR: "is_bad_inode" [fs/fuse/fuse.ko] undefined!
ERROR: "pagecache_get_page" [fs/fuse/fuse.ko] undefined!
ERROR: "generic_file_open" [fs/fuse/fuse.ko] undefined!
ERROR: "posix_acl_access_xattr_handler" [fs/fuse/fuse.ko] undefined!
ERROR: "no_llseek" [fs/fuse/fuse.ko] undefined!
ERROR: "pid_nr_ns" [fs/fuse/fuse.ko] undefined!
ERROR: "__might_fault" [fs/fuse/fuse.ko] undefined!
ERROR: "__lock_page" [fs/fuse/fuse.ko] undefined!
ERROR: "set_page_dirty_lock" [fs/fuse/fuse.ko] undefined!
ERROR: "touch_atime" [fs/fuse/fuse.ko] undefined!
ERROR: "generic_delete_inode" [fs/fuse/fuse.ko] undefined!
ERROR: "dput" [fs/fuse/fuse.ko] undefined!
ERROR: "seq_printf" [fs/fuse/fuse.ko] undefined!
ERROR: "get_tree_bdev" [fs/fuse/fuse.ko] undefined!
ERROR: "__dynamic_pr_debug" [fs/fuse/fuse.ko] undefined!
ERROR: "__get_user_4" [fs/fuse/fuse.ko] undefined!
ERROR: "inc_nlink" [fs/fuse/fuse.ko] undefined!
ERROR: "invalidate_inode_pages2" [fs/fuse/fuse.ko] undefined!
ERROR: "d_find_alias" [fs/fuse/fuse.ko] undefined!
ERROR: "init_user_ns" [fs/fuse/fuse.ko] undefined!
ERROR: "vm_node_stat" [fs/fuse/fuse.ko] undefined!
ERROR: "mutex_unlock" [fs/fuse/fuse.ko] undefined!
ERROR: "d_add" [fs/fuse/fuse.ko] undefined!
ERROR: "generic_read_dir" [fs/fuse/fuse.ko] undefined!
ERROR: "igrab" [fs/fuse/fuse.ko] undefined!
ERROR: "call_rcu" [fs/fuse/fuse.ko] undefined!
ERROR: "__preempt_count" [fs/fuse/fuse.ko] undefined!
ERROR: "redirty_page_for_writepage" [fs/fuse/fuse.ko] undefined!
ERROR: "sprintf" [fs/fuse/fuse.ko] undefined!
ERROR: "get_jiffies_64" [fs/fuse/fuse.ko] undefined!
ERROR: "__alloc_pages_nodemask" [fs/fuse/fuse.ko] undefined!
ERROR: "copy_page_from_iter" [fs/fuse/fuse.ko] undefined!
ERROR: "set_page_dirty" [fs/fuse/fuse.ko] undefined!
ERROR: "nonseekable_open" [fs/fuse/fuse.ko] undefined!
ERROR: "__might_sleep" [fs/fuse/fuse.ko] undefined!
ERROR: "wb_writeout_inc" [fs/fuse/fuse.ko] undefined!
ERROR: "iov_iter_fault_in_readable" [fs/fuse/fuse.ko] undefined!
ERROR: "lru_cache_add_file" [fs/fuse/fuse.ko] undefined!
ERROR: "down_read" [fs/fuse/fuse.ko] undefined!
ERROR: "kobject_create_and_add" [fs/fuse/fuse.ko] undefined!
ERROR: "end_page_writeback" [fs/fuse/fuse.ko] undefined!
ERROR: "debug_locks" [fs/fuse/fuse.ko] undefined!
ERROR: "cmpxchg8b_emu" [fs/fuse/fuse.ko] undefined!
ERROR: "d_delete" [fs/fuse/fuse.ko] undefined!
ERROR: "rb_first" [fs/fuse/fuse.ko] undefined!
ERROR: "lock_release" [fs/fuse/fuse.ko] undefined!
ERROR: "__init_waitqueue_head" [fs/fuse/fuse.ko] undefined!
ERROR: "wait_for_completion" [fs/fuse/fuse.ko] undefined!
ERROR: "timespec64_to_jiffies" [fs/fuse/fuse.ko] undefined!
ERROR: "kmap_atomic" [fs/fuse/fuse.ko] undefined!
ERROR: "misc_register" [fs/fuse/fuse.ko] undefined!
ERROR: "sysfs_remove_mount_point" [fs/fuse/fuse.ko] undefined!
ERROR: "lock_acquire" [fs/fuse/fuse.ko] undefined!
ERROR: "kill_litter_super" [fs/fuse/fuse.ko] undefined!
ERROR: "finish_no_open" [fs/fuse/fuse.ko] undefined!
ERROR: "debug_lockdep_rcu_enabled" [fs/fuse/fuse.ko] undefined!
ERROR: "current_task" [fs/fuse/fuse.ko] undefined!
ERROR: "__mutex_init" [fs/fuse/fuse.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [fs/fuse/fuse.ko] undefined!
ERROR: "printk" [fs/fuse/fuse.ko] undefined!
ERROR: "_totalram_pages" [fs/fuse/fuse.ko] undefined!
ERROR: "copy_page_to_iter" [fs/fuse/fuse.ko] undefined!
ERROR: "__list_del_entry_valid" [fs/fuse/fuse.ko] undefined!
ERROR: "file_modified" [fs/fuse/fuse.ko] undefined!
ERROR: "d_obtain_alias" [fs/fuse/fuse.ko] undefined!
ERROR: "iov_iter_get_pages" [fs/fuse/fuse.ko] undefined!
ERROR: "write_inode_now" [fs/fuse/fuse.ko] undefined!
ERROR: "kunmap" [fs/fuse/fuse.ko] undefined!
ERROR: "file_remove_privs" [fs/fuse/fuse.ko] undefined!
ERROR: "atomic64_read_cx8" [fs/fuse/fuse.ko] undefined!
ERROR: "rb_erase" [fs/fuse/fuse.ko] undefined!
ERROR: "fasync_helper" [fs/fuse/fuse.ko] undefined!
ERROR: "atomic64_set_386" [fs/fuse/fuse.ko] undefined!
ERROR: "kmem_cache_free" [fs/fuse/fuse.ko] undefined!
ERROR: "set_nlink" [fs/fuse/fuse.ko] undefined!
ERROR: "file_update_time" [fs/fuse/fuse.ko] undefined!
ERROR: "write_cache_pages" [fs/fuse/fuse.ko] undefined!
ERROR: "__kunmap_atomic" [fs/fuse/fuse.ko] undefined!
ERROR: "truncate_pagecache" [fs/fuse/fuse.ko] undefined!
ERROR: "memchr" [fs/fuse/fuse.ko] undefined!
ERROR: "unlock_page" [fs/fuse/fuse.ko] undefined!
ERROR: "generic_file_read_iter" [fs/fuse/fuse.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [fs/fuse/fuse.ko] undefined!
ERROR: "up_write" [fs/fuse/fuse.ko] undefined!
ERROR: "down_write" [fs/fuse/fuse.ko] undefined!
ERROR: "fput" [fs/fuse/fuse.ko] undefined!
ERROR: "generic_file_direct_write" [fs/fuse/fuse.ko] undefined!
ERROR: "release_pages" [fs/fuse/fuse.ko] undefined!
ERROR: "inode_nohighmem" [fs/fuse/fuse.ko] undefined!
ERROR: "__list_add_valid" [fs/fuse/fuse.ko] undefined!
ERROR: "init_wait_entry" [fs/fuse/fuse.ko] undefined!
ERROR: "contig_page_data" [fs/fuse/fuse.ko] undefined!
ERROR: "ilookup5" [fs/fuse/fuse.ko] undefined!
ERROR: "nosteal_pipe_buf_ops" [fs/fuse/fuse.ko] undefined!
ERROR: "file_write_and_wait_range" [fs/fuse/fuse.ko] undefined!
ERROR: "inode_init_once" [fs/fuse/fuse.ko] undefined!
ERROR: "kvmalloc_node" [fs/fuse/fuse.ko] undefined!
ERROR: "capable" [fs/fuse/fuse.ko] undefined!
ERROR: "kstrtoul_from_user" [fs/fuse/fuse.ko] undefined!
ERROR: "overflowgid" [fs/fuse/fuse.ko] undefined!
ERROR: "kmem_cache_alloc" [fs/fuse/fuse.ko] undefined!
ERROR: "__free_pages" [fs/fuse/fuse.ko] undefined!
ERROR: "strnlen" [fs/fuse/fuse.ko] undefined!
ERROR: "generic_file_mmap" [fs/fuse/fuse.ko] undefined!
ERROR: "simple_dir_operations" [fs/fuse/fuse.ko] undefined!
ERROR: "__filemap_set_wb_err" [fs/fuse/fuse.ko] undefined!
ERROR: "kmap" [fs/fuse/fuse.ko] undefined!
ERROR: "fs_kobj" [fs/fuse/fuse.ko] undefined!
ERROR: "truncate_inode_pages_final" [fs/fuse/fuse.ko] undefined!
ERROR: "__get_free_pages" [fs/fuse/fuse.ko] undefined!
ERROR: "refcount_warn_saturate" [fs/fuse/fuse.ko] undefined!
ERROR: "param_get_uint" [fs/fuse/fuse.ko] undefined!
ERROR: "schedule" [fs/fuse/fuse.ko] undefined!
ERROR: "posix_acl_from_xattr" [fs/fuse/fuse.ko] undefined!
ERROR: "bdi_put" [fs/fuse/fuse.ko] undefined!
ERROR: "__d_lookup_done" [fs/fuse/fuse.ko] undefined!
ERROR: "unlock_new_inode" [fs/fuse/fuse.ko] undefined!
ERROR: "kill_block_super" [fs/fuse/fuse.ko] undefined!
ERROR: "d_drop" [fs/fuse/fuse.ko] undefined!
ERROR: "inode_newsize_ok" [fs/fuse/fuse.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [fs/fuse/fuse.ko] undefined!
ERROR: "current_umask" [fs/fuse/fuse.ko] undefined!
ERROR: "locks_lock_inode_wait" [fs/fuse/fuse.ko] undefined!
ERROR: "__raw_spin_lock_init" [fs/fuse/fuse.ko] undefined!
ERROR: "get_tree_nodev" [fs/fuse/fuse.ko] undefined!
ERROR: "shrink_dcache_parent" [fs/fuse/fuse.ko] undefined!
ERROR: "full_name_hash" [fs/fuse/fuse.ko] undefined!
ERROR: "vfs_setpos" [fs/fuse/fuse.ko] undefined!
ERROR: "fs_parse" [fs/fuse/fuse.ko] undefined!
ERROR: "clear_page_dirty_for_io" [fs/fuse/fuse.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [fs/fuse/fuse.ko] undefined!
ERROR: "clear_wb_congested" [fs/fuse/fuse.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [fs/fuse/fuse.ko] undefined!
ERROR: "_raw_spin_lock" [fs/fuse/fuse.ko] undefined!
ERROR: "read_cache_pages" [fs/fuse/fuse.ko] undefined!
ERROR: "simple_empty" [fs/fuse/fuse.ko] undefined!
ERROR: "sync_inode_metadata" [fs/fuse/fuse.ko] undefined!
ERROR: "rb_insert_color" [fs/fuse/fuse.ko] undefined!
ERROR: "kmem_cache_create" [fs/fuse/fuse.ko] undefined!
ERROR: "register_filesystem" [fs/fuse/fuse.ko] undefined!
ERROR: "atomic64_inc_return_cx8" [fs/fuse/fuse.ko] undefined!
ERROR: "free_pages" [fs/fuse/fuse.ko] undefined!
ERROR: "__wake_up" [fs/fuse/fuse.ko] undefined!
ERROR: "generic_file_write_iter" [fs/fuse/fuse.ko] undefined!
ERROR: "sysfs_create_mount_point" [fs/fuse/fuse.ko] undefined!
ERROR: "d_lookup" [fs/fuse/fuse.ko] undefined!
ERROR: "iov_iter_init" [fs/fuse/fuse.ko] undefined!
ERROR: "init_pid_ns" [fs/fuse/fuse.ko] undefined!
ERROR: "prepare_to_wait_event" [fs/fuse/fuse.ko] undefined!
ERROR: "__test_set_page_writeback" [fs/fuse/fuse.ko] undefined!
ERROR: "I_BDEV" [fs/fuse/fuse.ko] undefined!
ERROR: "mutex_lock_nested" [fs/fuse/fuse.ko] undefined!
ERROR: "iter_file_splice_write" [fs/fuse/fuse.ko] undefined!
ERROR: "blockdev_superblock" [fs/fuse/fuse.ko] undefined!
ERROR: "logfc" [fs/fuse/fuse.ko] undefined!
ERROR: "get_next_ino" [fs/fuse/fuse.ko] undefined!
ERROR: "iput" [fs/fuse/fuse.ko] undefined!
ERROR: "finish_open" [fs/fuse/fuse.ko] undefined!
ERROR: "posix_lock_file" [fs/fuse/fuse.ko] undefined!
ERROR: "invalidate_inode_pages2_range" [fs/fuse/fuse.ko] undefined!
ERROR: "kfree" [fs/fuse/fuse.ko] undefined!
ERROR: "truncate_pagecache_range" [fs/fuse/fuse.ko] undefined!
ERROR: "generic_permission" [fs/fuse/fuse.ko] undefined!
ERROR: "page_get_link" [fs/fuse/fuse.ko] undefined!
ERROR: "current_time" [fs/fuse/fuse.ko] undefined!
ERROR: "d_splice_alias" [fs/fuse/fuse.ko] undefined!
ERROR: "param_set_uint" [fs/fuse/fuse.ko] undefined!
ERROR: "sync_filesystem" [fs/fuse/fuse.ko] undefined!
ERROR: "invalidate_mapping_pages" [fs/fuse/fuse.ko] undefined!
ERROR: "simple_fill_super" [fs/fuse/fuse.ko] undefined!
ERROR: "fget" [fs/fuse/fuse.ko] undefined!
ERROR: "sb_set_blocksize" [fs/fuse/fuse.ko] undefined!
ERROR: "d_make_root" [fs/fuse/fuse.ko] undefined!
ERROR: "kill_fasync" [fs/fuse/fuse.ko] undefined!
ERROR: "iov_iter_advance" [fs/fuse/fuse.ko] undefined!
ERROR: "__page_mapcount" [fs/fuse/fuse.ko] undefined!
ERROR: "iov_iter_copy_from_user_atomic" [fs/fuse/fuse.ko] undefined!
ERROR: "d_alloc_name" [fs/fuse/fuse.ko] undefined!
ERROR: "finish_wait" [fs/fuse/fuse.ko] undefined!
ERROR: "overflowuid" [fs/fuse/fuse.ko] undefined!
ERROR: "posix_acl_default_xattr_handler" [fs/fuse/fuse.ko] undefined!
ERROR: "rb_next" [fs/fuse/fuse.ko] undefined!
ERROR: "iov_iter_single_seg_count" [fs/fuse/fuse.ko] undefined!
ERROR: "task_active_pid_ns" [fs/fuse/fuse.ko] undefined!
ERROR: "unregister_filesystem" [fs/fuse/fuse.ko] undefined!
ERROR: "init_special_inode" [fs/fuse/fuse.ko] undefined!
ERROR: "forget_all_cached_acls" [fs/fuse/fuse.ko] undefined!
ERROR: "atomic64_read_386" [fs/fuse/fuse.ko] undefined!
ERROR: "dump_page" [fs/fuse/fuse.ko] undefined!
ERROR: "complete" [fs/fuse/fuse.ko] undefined!
ERROR: "filemap_map_pages" [fs/fuse/fuse.ko] undefined!
ERROR: "new_inode" [fs/fuse/fuse.ko] undefined!
ERROR: "generic_file_splice_read" [fs/fuse/fuse.ko] undefined!
ERROR: "pipe_unlock" [fs/fuse/fuse.ko] undefined!
ERROR: "atomic64_inc_return_386" [fs/fuse/fuse.ko] undefined!
ERROR: "simple_dir_inode_operations" [fs/fuse/fuse.ko] undefined!
ERROR: "grab_cache_page_write_begin" [fs/fuse/fuse.ko] undefined!
ERROR: "page_mapped" [fs/fuse/fuse.ko] undefined!
ERROR: "find_pid_ns" [fs/fuse/fuse.ko] undefined!
ERROR: "clear_inode" [fs/fuse/fuse.ko] undefined!
ERROR: "misc_deregister" [fs/fuse/fuse.ko] undefined!
ERROR: "page_put_link" [fs/fuse/fuse.ko] undefined!
ERROR: "d_instantiate" [fs/fuse/fuse.ko] undefined!
ERROR: "__init_rwsem" [fs/fuse/fuse.ko] undefined!
ERROR: "d_alloc_parallel" [fs/fuse/fuse.ko] undefined!
ERROR: "__put_page" [fs/fuse/fuse.ko] undefined!
ERROR: "file_check_and_advance_wb_err" [fs/fuse/fuse.ko] undefined!
ERROR: "clear_nlink" [fs/fuse/fuse.ko] undefined!
ERROR: "setattr_prepare" [fs/fuse/fuse.ko] undefined!
ERROR: "vfs_fsync_range" [fs/fuse/fuse.ko] undefined!
ERROR: "generic_fillattr" [fs/fuse/fuse.ko] undefined!
ERROR: "pipe_lock" [fs/fuse/fuse.ko] undefined!
ERROR: "noop_backing_dev_info" [fs/fuse/fuse.ko] undefined!
ERROR: "generic_copy_file_range" [fs/fuse/fuse.ko] undefined!
ERROR: "truncate_inode_pages" [fs/fuse/fuse.ko] undefined!
ERROR: "posix_test_lock" [fs/fuse/fuse.ko] undefined!
ERROR: "super_setup_bdi_name" [fs/fuse/fuse.ko] undefined!
ERROR: "kmalloc_caches" [fs/cramfs/cramfs.ko] undefined!
ERROR: "zlib_inflateEnd" [fs/cramfs/cramfs.ko] undefined!
ERROR: "generic_file_llseek" [fs/cramfs/cramfs.ko] undefined!
ERROR: "vmalloc" [fs/cramfs/cramfs.ko] undefined!
ERROR: "get_tree_bdev" [fs/cramfs/cramfs.ko] undefined!
ERROR: "mutex_unlock" [fs/cramfs/cramfs.ko] undefined!
ERROR: "page_symlink_inode_operations" [fs/cramfs/cramfs.ko] undefined!
ERROR: "generic_read_dir" [fs/cramfs/cramfs.ko] undefined!
ERROR: "vfree" [fs/cramfs/cramfs.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [fs/cramfs/cramfs.ko] undefined!
ERROR: "printk" [fs/cramfs/cramfs.ko] undefined!
ERROR: "memcmp" [fs/cramfs/cramfs.ko] undefined!
ERROR: "kunmap" [fs/cramfs/cramfs.ko] undefined!
ERROR: "zlib_inflate_workspacesize" [fs/cramfs/cramfs.ko] undefined!
ERROR: "generic_ro_fops" [fs/cramfs/cramfs.ko] undefined!
ERROR: "wait_on_page_bit" [fs/cramfs/cramfs.ko] undefined!
ERROR: "unlock_page" [fs/cramfs/cramfs.ko] undefined!
ERROR: "inode_nohighmem" [fs/cramfs/cramfs.ko] undefined!
ERROR: "zlib_inflate" [fs/cramfs/cramfs.ko] undefined!
ERROR: "kmap" [fs/cramfs/cramfs.ko] undefined!
ERROR: "unlock_new_inode" [fs/cramfs/cramfs.ko] undefined!
ERROR: "kill_block_super" [fs/cramfs/cramfs.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [fs/cramfs/cramfs.ko] undefined!
ERROR: "register_filesystem" [fs/cramfs/cramfs.ko] undefined!
ERROR: "zlib_inflateInit2" [fs/cramfs/cramfs.ko] undefined!
ERROR: "mutex_lock_nested" [fs/cramfs/cramfs.ko] undefined!
ERROR: "logfc" [fs/cramfs/cramfs.ko] undefined!
ERROR: "read_cache_page" [fs/cramfs/cramfs.ko] undefined!
ERROR: "kfree" [fs/cramfs/cramfs.ko] undefined!
ERROR: "zlib_inflateReset" [fs/cramfs/cramfs.ko] undefined!
ERROR: "d_splice_alias" [fs/cramfs/cramfs.ko] undefined!
ERROR: "sync_filesystem" [fs/cramfs/cramfs.ko] undefined!
ERROR: "d_make_root" [fs/cramfs/cramfs.ko] undefined!
ERROR: "unregister_filesystem" [fs/cramfs/cramfs.ko] undefined!
ERROR: "init_special_inode" [fs/cramfs/cramfs.ko] undefined!
ERROR: "dump_page" [fs/cramfs/cramfs.ko] undefined!
ERROR: "__put_page" [fs/cramfs/cramfs.ko] undefined!
ERROR: "iget_locked" [fs/cramfs/cramfs.ko] undefined!
ERROR: "rcu_lock_map" [fs/fscache/fscache.ko] undefined!
ERROR: "kobject_put" [fs/fscache/fscache.ko] undefined!
ERROR: "system_wq" [fs/fscache/fscache.ko] undefined!
ERROR: "kmem_cache_destroy" [fs/fscache/fscache.ko] undefined!
ERROR: "kmalloc_caches" [fs/fscache/fscache.ko] undefined!
ERROR: "__kmalloc" [fs/fscache/fscache.ko] undefined!
ERROR: "up_read" [fs/fscache/fscache.ko] undefined!
ERROR: "trace_handle_return" [fs/fscache/fscache.ko] undefined!
ERROR: "_raw_spin_unlock" [fs/fscache/fscache.ko] undefined!
ERROR: "register_sysctl_table" [fs/fscache/fscache.ko] undefined!
ERROR: "wake_up_bit" [fs/fscache/fscache.ko] undefined!
ERROR: "strlen" [fs/fscache/fscache.ko] undefined!
ERROR: "autoremove_wake_function" [fs/fscache/fscache.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [fs/fscache/fscache.ko] undefined!
ERROR: "proc_dointvec" [fs/fscache/fscache.ko] undefined!
ERROR: "kobject_uevent" [fs/fscache/fscache.ko] undefined!
ERROR: "___might_sleep" [fs/fscache/fscache.ko] undefined!
ERROR: "__warn_printk" [fs/fscache/fscache.ko] undefined!
ERROR: "remove_proc_entry" [fs/fscache/fscache.ko] undefined!
ERROR: "kmemdup" [fs/fscache/fscache.ko] undefined!
ERROR: "workqueue_congested" [fs/fscache/fscache.ko] undefined!
ERROR: "pagevec_lookup_range" [fs/fscache/fscache.ko] undefined!
ERROR: "trace_event_buffer_reserve" [fs/fscache/fscache.ko] undefined!
ERROR: "__preempt_count" [fs/fscache/fscache.ko] undefined!
ERROR: "radix_tree_tag_get" [fs/fscache/fscache.ko] undefined!
ERROR: "bpf_trace_run3" [fs/fscache/fscache.ko] undefined!
ERROR: "jiffies" [fs/fscache/fscache.ko] undefined!
ERROR: "__might_sleep" [fs/fscache/fscache.ko] undefined!
ERROR: "down_read" [fs/fscache/fscache.ko] undefined!
ERROR: "strcmp" [fs/fscache/fscache.ko] undefined!
ERROR: "kobject_create_and_add" [fs/fscache/fscache.ko] undefined!
ERROR: "out_of_line_wait_on_bit_lock" [fs/fscache/fscache.ko] undefined!
ERROR: "lock_release" [fs/fscache/fscache.ko] undefined!
ERROR: "__init_waitqueue_head" [fs/fscache/fscache.ko] undefined!
ERROR: "radix_tree_maybe_preload" [fs/fscache/fscache.ko] undefined!
ERROR: "lock_acquire" [fs/fscache/fscache.ko] undefined!
ERROR: "proc_mkdir" [fs/fscache/fscache.ko] undefined!
ERROR: "bpf_trace_run1" [fs/fscache/fscache.ko] undefined!
ERROR: "wake_up_var" [fs/fscache/fscache.ko] undefined!
ERROR: "debug_lockdep_rcu_enabled" [fs/fscache/fscache.ko] undefined!
ERROR: "current_task" [fs/fscache/fscache.ko] undefined!
ERROR: "__x86_indirect_thunk_esi" [fs/fscache/fscache.ko] undefined!
ERROR: "printk" [fs/fscache/fscache.ko] undefined!
ERROR: "_raw_spin_trylock" [fs/fscache/fscache.ko] undefined!
ERROR: "__list_del_entry_valid" [fs/fscache/fscache.ko] undefined!
ERROR: "memcmp" [fs/fscache/fscache.ko] undefined!
ERROR: "_raw_spin_lock_nested" [fs/fscache/fscache.ko] undefined!
ERROR: "workqueue_set_max_active" [fs/fscache/fscache.ko] undefined!
ERROR: "_cond_resched" [fs/fscache/fscache.ko] undefined!
ERROR: "strncpy" [fs/fscache/fscache.ko] undefined!
ERROR: "trace_event_reg" [fs/fscache/fscache.ko] undefined!
ERROR: "kmem_cache_free" [fs/fscache/fscache.ko] undefined!
ERROR: "destroy_workqueue" [fs/fscache/fscache.ko] undefined!
ERROR: "bpf_trace_run5" [fs/fscache/fscache.ko] undefined!
ERROR: "radix_tree_gang_lookup_tag" [fs/fscache/fscache.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [fs/fscache/fscache.ko] undefined!
ERROR: "up_write" [fs/fscache/fscache.ko] undefined!
ERROR: "down_write" [fs/fscache/fscache.ko] undefined!
ERROR: "perf_trace_run_bpf_submit" [fs/fscache/fscache.ko] undefined!
ERROR: "perf_trace_buf_alloc" [fs/fscache/fscache.ko] undefined!
ERROR: "__list_add_valid" [fs/fscache/fscache.ko] undefined!
ERROR: "init_wait_entry" [fs/fscache/fscache.ko] undefined!
ERROR: "rcu_read_lock_sched_held" [fs/fscache/fscache.ko] undefined!
ERROR: "radix_tree_delete" [fs/fscache/fscache.ko] undefined!
ERROR: "bit_waitqueue" [fs/fscache/fscache.ko] undefined!
ERROR: "__var_waitqueue" [fs/fscache/fscache.ko] undefined!
ERROR: "__cond_resched_lock" [fs/fscache/fscache.ko] undefined!
ERROR: "bit_wait" [fs/fscache/fscache.ko] undefined!
ERROR: "init_wait_var_entry" [fs/fscache/fscache.ko] undefined!
ERROR: "kmem_cache_alloc" [fs/fscache/fscache.ko] undefined!
ERROR: "radix_tree_tag_set" [fs/fscache/fscache.ko] undefined!
ERROR: "trace_event_ignore_this_pid" [fs/fscache/fscache.ko] undefined!
ERROR: "unregister_sysctl_table" [fs/fscache/fscache.ko] undefined!
ERROR: "schedule" [fs/fscache/fscache.ko] undefined!
ERROR: "schedule_timeout" [fs/fscache/fscache.ko] undefined!
ERROR: "dump_stack" [fs/fscache/fscache.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [fs/fscache/fscache.ko] undefined!
ERROR: "__raw_spin_lock_init" [fs/fscache/fscache.ko] undefined!
ERROR: "trace_event_buffer_commit" [fs/fscache/fscache.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [fs/fscache/fscache.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [fs/fscache/fscache.ko] undefined!
ERROR: "_raw_spin_lock" [fs/fscache/fscache.ko] undefined!
ERROR: "radix_tree_tag_clear" [fs/fscache/fscache.ko] undefined!
ERROR: "kmem_cache_create" [fs/fscache/fscache.ko] undefined!
ERROR: "vsnprintf" [fs/fscache/fscache.ko] undefined!
ERROR: "event_triggers_call" [fs/fscache/fscache.ko] undefined!
ERROR: "__wake_up" [fs/fscache/fscache.ko] undefined!
ERROR: "__pagevec_release" [fs/fscache/fscache.ko] undefined!
ERROR: "out_of_line_wait_on_bit" [fs/fscache/fscache.ko] undefined!
ERROR: "prepare_to_wait_event" [fs/fscache/fscache.ko] undefined!
ERROR: "bpf_trace_run2" [fs/fscache/fscache.ko] undefined!
ERROR: "kernel_kobj" [fs/fscache/fscache.ko] undefined!
ERROR: "kfree" [fs/fscache/fscache.ko] undefined!
ERROR: "trace_print_symbols_seq" [fs/fscache/fscache.ko] undefined!
ERROR: "trace_event_raw_init" [fs/fscache/fscache.ko] undefined!
ERROR: "add_wait_queue_exclusive" [fs/fscache/fscache.ko] undefined!
ERROR: "lockdep_init_map" [fs/fscache/fscache.ko] undefined!
ERROR: "finish_wait" [fs/fscache/fscache.ko] undefined!
ERROR: "radix_tree_lookup" [fs/fscache/fscache.ko] undefined!
ERROR: "trace_raw_output_prep" [fs/fscache/fscache.ko] undefined!
ERROR: "dump_page" [fs/fscache/fscache.ko] undefined!
ERROR: "queue_work_on" [fs/fscache/fscache.ko] undefined!
ERROR: "trace_seq_printf" [fs/fscache/fscache.ko] undefined!
ERROR: "radix_tree_insert" [fs/fscache/fscache.ko] undefined!
ERROR: "param_ops_uint" [fs/fscache/fscache.ko] undefined!
ERROR: "bpf_trace_run4" [fs/fscache/fscache.ko] undefined!
ERROR: "alloc_workqueue" [fs/fscache/fscache.ko] undefined!
ERROR: "__put_page" [fs/fscache/fscache.ko] undefined!
ERROR: "lockdep_rcu_suspicious" [fs/fscache/fscache.ko] undefined!
ERROR: "strcpy" [fs/fscache/fscache.ko] undefined!
ERROR: "__request_region" [fs/pstore/ramoops.ko] undefined!
ERROR: "kmalloc_caches" [fs/pstore/ramoops.ko] undefined!
ERROR: "pstore_name_to_type" [fs/pstore/ramoops.ko] undefined!
ERROR: "__kmalloc" [fs/pstore/ramoops.ko] undefined!
ERROR: "ioremap_wc" [fs/pstore/ramoops.ko] undefined!
ERROR: "param_ops_int" [fs/pstore/ramoops.ko] undefined!
ERROR: "iomem_resource" [fs/pstore/ramoops.ko] undefined!
ERROR: "of_node_name_eq" [fs/pstore/ramoops.ko] undefined!
ERROR: "pstore_unregister" [fs/pstore/ramoops.ko] undefined!
ERROR: "boot_cpu_data" [fs/pstore/ramoops.ko] undefined!
ERROR: "__might_fault" [fs/pstore/ramoops.ko] undefined!
ERROR: "__dynamic_pr_debug" [fs/pstore/ramoops.ko] undefined!
ERROR: "platform_device_register_full" [fs/pstore/ramoops.ko] undefined!
ERROR: "__preempt_count" [fs/pstore/ramoops.ko] undefined!
ERROR: "free_rs" [fs/pstore/ramoops.ko] undefined!
ERROR: "kstrdup" [fs/pstore/ramoops.ko] undefined!
ERROR: "__platform_driver_register" [fs/pstore/ramoops.ko] undefined!
ERROR: "kasprintf" [fs/pstore/ramoops.ko] undefined!
ERROR: "pgprot_writecombine" [fs/pstore/ramoops.ko] undefined!
ERROR: "__default_kernel_pte_mask" [fs/pstore/ramoops.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [fs/pstore/ramoops.ko] undefined!
ERROR: "current_task" [fs/pstore/ramoops.ko] undefined!
ERROR: "printk" [fs/pstore/ramoops.ko] undefined!
ERROR: "sscanf" [fs/pstore/ramoops.ko] undefined!
ERROR: "ioremap" [fs/pstore/ramoops.ko] undefined!
ERROR: "of_find_property" [fs/pstore/ramoops.ko] undefined!
ERROR: "vmap" [fs/pstore/ramoops.ko] undefined!
ERROR: "mem_section" [fs/pstore/ramoops.ko] undefined!
ERROR: "platform_get_resource" [fs/pstore/ramoops.ko] undefined!
ERROR: "platform_device_unregister" [fs/pstore/ramoops.ko] undefined!
ERROR: "_dev_err" [fs/pstore/ramoops.ko] undefined!
ERROR: "init_rs_gfp" [fs/pstore/ramoops.ko] undefined!
ERROR: "__cachemode2pte_tbl" [fs/pstore/ramoops.ko] undefined!
ERROR: "___ratelimit" [fs/pstore/ramoops.ko] undefined!
ERROR: "memcpy_toio" [fs/pstore/ramoops.ko] undefined!
ERROR: "__raw_spin_lock_init" [fs/pstore/ramoops.ko] undefined!
ERROR: "__release_region" [fs/pstore/ramoops.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [fs/pstore/ramoops.ko] undefined!
ERROR: "__dynamic_dev_dbg" [fs/pstore/ramoops.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [fs/pstore/ramoops.ko] undefined!
ERROR: "__copy_user_ll" [fs/pstore/ramoops.ko] undefined!
ERROR: "of_get_parent" [fs/pstore/ramoops.ko] undefined!
ERROR: "kfree" [fs/pstore/ramoops.ko] undefined!
ERROR: "vunmap" [fs/pstore/ramoops.ko] undefined!
ERROR: "iounmap" [fs/pstore/ramoops.ko] undefined!
ERROR: "memcpy_fromio" [fs/pstore/ramoops.ko] undefined!
ERROR: "scnprintf" [fs/pstore/ramoops.ko] undefined!
ERROR: "pstore_register" [fs/pstore/ramoops.ko] undefined!
ERROR: "snprintf" [fs/pstore/ramoops.ko] undefined!
ERROR: "platform_driver_unregister" [fs/pstore/ramoops.ko] undefined!
ERROR: "decode_rs8" [fs/pstore/ramoops.ko] undefined!
ERROR: "of_property_read_variable_u32_array" [fs/pstore/ramoops.ko] undefined!
ERROR: "encode_rs8" [fs/pstore/ramoops.ko] undefined!
ERROR: "of_node_put" [fs/pstore/ramoops.ko] undefined!
ERROR: "param_ops_ulong" [fs/pstore/ramoops.ko] undefined!
ERROR: "param_ops_uint" [fs/pstore/ramoops.ko] undefined!
ERROR: "param_ops_ullong" [fs/pstore/ramoops.ko] undefined!
ERROR: "unregister_nls" [fs/nls/mac-turkish.ko] undefined!
ERROR: "__register_nls" [fs/nls/mac-turkish.ko] undefined!
ERROR: "unregister_nls" [fs/nls/mac-roman.ko] undefined!
ERROR: "__register_nls" [fs/nls/mac-roman.ko] undefined!
ERROR: "unregister_nls" [fs/nls/mac-gaelic.ko] undefined!
ERROR: "__register_nls" [fs/nls/mac-gaelic.ko] undefined!
ERROR: "unregister_nls" [fs/nls/nls_utf8.ko] undefined!
ERROR: "__register_nls" [fs/nls/nls_utf8.ko] undefined!
ERROR: "utf32_to_utf8" [fs/nls/nls_utf8.ko] undefined!
ERROR: "utf8_to_utf32" [fs/nls/nls_utf8.ko] undefined!
ERROR: "unload_nls" [fs/nls/nls_koi8-ru.ko] undefined!
ERROR: "unregister_nls" [fs/nls/nls_koi8-ru.ko] undefined!
ERROR: "__register_nls" [fs/nls/nls_koi8-ru.ko] undefined!
ERROR: "load_nls" [fs/nls/nls_koi8-ru.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [fs/nls/nls_koi8-ru.ko] undefined!
ERROR: "unregister_nls" [fs/nls/nls_koi8-u.ko] undefined!
ERROR: "__register_nls" [fs/nls/nls_koi8-u.ko] undefined!
ERROR: "unregister_nls" [fs/nls/nls_iso8859-15.ko] undefined!
ERROR: "__register_nls" [fs/nls/nls_iso8859-15.ko] undefined!
ERROR: "unregister_nls" [fs/nls/nls_iso8859-13.ko] undefined!
ERROR: "__register_nls" [fs/nls/nls_iso8859-13.ko] undefined!
ERROR: "unregister_nls" [fs/nls/nls_iso8859-9.ko] undefined!
ERROR: "__register_nls" [fs/nls/nls_iso8859-9.ko] undefined!
ERROR: "unregister_nls" [fs/nls/nls_iso8859-5.ko] undefined!
ERROR: "__register_nls" [fs/nls/nls_iso8859-5.ko] undefined!
ERROR: "unregister_nls" [fs/nls/nls_iso8859-4.ko] undefined!
ERROR: "__register_nls" [fs/nls/nls_iso8859-4.ko] undefined!
ERROR: "unregister_nls" [fs/nls/nls_iso8859-3.ko] undefined!
ERROR: "__register_nls" [fs/nls/nls_iso8859-3.ko] undefined!
ERROR: "unregister_nls" [fs/nls/nls_iso8859-2.ko] undefined!
ERROR: "__register_nls" [fs/nls/nls_iso8859-2.ko] undefined!
ERROR: "unregister_nls" [fs/nls/nls_cp936.ko] undefined!
ERROR: "__register_nls" [fs/nls/nls_cp936.ko] undefined!
ERROR: "unload_nls" [fs/nls/nls_euc-jp.ko] undefined!
ERROR: "unregister_nls" [fs/nls/nls_euc-jp.ko] undefined!
ERROR: "__register_nls" [fs/nls/nls_euc-jp.ko] undefined!
ERROR: "load_nls" [fs/nls/nls_euc-jp.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [fs/nls/nls_euc-jp.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [fs/nls/nls_euc-jp.ko] undefined!
ERROR: "unregister_nls" [fs/nls/nls_cp932.ko] undefined!
ERROR: "__register_nls" [fs/nls/nls_cp932.ko] undefined!
ERROR: "unregister_nls" [fs/nls/nls_cp874.ko] undefined!
ERROR: "__register_nls" [fs/nls/nls_cp874.ko] undefined!
ERROR: "unregister_nls" [fs/nls/nls_cp861.ko] undefined!
ERROR: "__register_nls" [fs/nls/nls_cp861.ko] undefined!
ERROR: "unregister_nls" [fs/nls/nls_cp860.ko] undefined!
ERROR: "__register_nls" [fs/nls/nls_cp860.ko] undefined!
ERROR: "unregister_nls" [fs/nls/nls_cp857.ko] undefined!
ERROR: "__register_nls" [fs/nls/nls_cp857.ko] undefined!
ERROR: "unregister_nls" [fs/nls/nls_cp775.ko] undefined!
ERROR: "__register_nls" [fs/nls/nls_cp775.ko] undefined!
ERROR: "unregister_nls" [fs/nls/nls_cp737.ko] undefined!
ERROR: "__register_nls" [fs/nls/nls_cp737.ko] undefined!
ERROR: "unregister_nls" [fs/nls/nls_cp437.ko] undefined!
ERROR: "__register_nls" [fs/nls/nls_cp437.ko] undefined!
ERROR: "kill_anon_super" [mm/z3fold.ko] undefined!
ERROR: "zpool_unregister_driver" [mm/z3fold.ko] undefined!
ERROR: "kern_unmount" [mm/z3fold.ko] undefined!
ERROR: "zpool_register_driver" [mm/z3fold.ko] undefined!
ERROR: "kern_mount" [mm/z3fold.ko] undefined!
ERROR: "memmove" [mm/z3fold.ko] undefined!
ERROR: "atomic64_inc_return_cx8" [mm/z3fold.ko] undefined!
ERROR: "atomic64_inc_386" [mm/z3fold.ko] undefined!
ERROR: "__rwlock_init" [mm/z3fold.ko] undefined!
ERROR: "kmem_cache_alloc" [mm/z3fold.ko] undefined!
ERROR: "__alloc_pages_nodemask" [mm/z3fold.ko] undefined!
ERROR: "__preempt_count" [mm/z3fold.ko] undefined!
ERROR: "refcount_warn_saturate" [mm/z3fold.ko] undefined!
ERROR: "atomic64_dec_return_cx8" [mm/z3fold.ko] undefined!
ERROR: "atomic64_dec_386" [mm/z3fold.ko] undefined!
ERROR: "printk" [mm/z3fold.ko] undefined!
ERROR: "_cond_resched" [mm/z3fold.ko] undefined!
ERROR: "___might_sleep" [mm/z3fold.ko] undefined!
ERROR: "cancel_work_sync" [mm/z3fold.ko] undefined!
ERROR: "__lock_page" [mm/z3fold.ko] undefined!
ERROR: "unlock_page" [mm/z3fold.ko] undefined!
ERROR: "__might_sleep" [mm/z3fold.ko] undefined!
ERROR: "__free_pages" [mm/z3fold.ko] undefined!
ERROR: "free_percpu" [mm/z3fold.ko] undefined!
ERROR: "alloc_anon_inode" [mm/z3fold.ko] undefined!
ERROR: "alloc_workqueue" [mm/z3fold.ko] undefined!
ERROR: "atomic64_set_cx8" [mm/z3fold.ko] undefined!
ERROR: "atomic64_set_386" [mm/z3fold.ko] undefined!
ERROR: "__alloc_percpu" [mm/z3fold.ko] undefined!
ERROR: "kmem_cache_create" [mm/z3fold.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [mm/z3fold.ko] undefined!
ERROR: "kmalloc_caches" [mm/z3fold.ko] undefined!
ERROR: "kmem_cache_free" [mm/z3fold.ko] undefined!
ERROR: "__list_del_entry_valid" [mm/z3fold.ko] undefined!
ERROR: "mem_section" [mm/z3fold.ko] undefined!
ERROR: "__phys_addr" [mm/z3fold.ko] undefined!
ERROR: "init_pseudo" [mm/z3fold.ko] undefined!
ERROR: "dump_page" [mm/z3fold.ko] undefined!
ERROR: "__put_page" [mm/z3fold.ko] undefined!
ERROR: "queue_work_on" [mm/z3fold.ko] undefined!
ERROR: "__SetPageMovable" [mm/z3fold.ko] undefined!
ERROR: "__list_add_valid" [mm/z3fold.ko] undefined!
ERROR: "_raw_spin_lock" [mm/z3fold.ko] undefined!
ERROR: "__ClearPageMovable" [mm/z3fold.ko] undefined!
ERROR: "page_mapping" [mm/z3fold.ko] undefined!
ERROR: "lockdep_init_map" [mm/z3fold.ko] undefined!
ERROR: "__raw_spin_lock_init" [mm/z3fold.ko] undefined!
ERROR: "_raw_spin_unlock" [mm/z3fold.ko] undefined!
ERROR: "_raw_spin_trylock" [mm/z3fold.ko] undefined!
ERROR: "page_address" [mm/z3fold.ko] undefined!
ERROR: "PageMovable" [mm/z3fold.ko] undefined!
ERROR: "kfree" [mm/z3fold.ko] undefined!
ERROR: "iput" [mm/z3fold.ko] undefined!
ERROR: "destroy_workqueue" [mm/z3fold.ko] undefined!
ERROR: "kmem_cache_destroy" [mm/z3fold.ko] undefined!
ERROR: "atomic64_read_cx8" [mm/z3fold.ko] undefined!
ERROR: "atomic64_read_386" [mm/z3fold.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [mm/z3fold.ko] undefined!
ERROR: "_raw_read_unlock" [mm/z3fold.ko] undefined!
ERROR: "_raw_read_lock" [mm/z3fold.ko] undefined!
ERROR: "_raw_write_unlock" [mm/z3fold.ko] undefined!
ERROR: "_raw_write_lock" [mm/z3fold.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [mm/zpool.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [mm/zpool.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [mm/zpool.ko] undefined!
ERROR: "kfree" [mm/zpool.ko] undefined!
ERROR: "printk" [mm/zpool.ko] undefined!
ERROR: "__dynamic_pr_debug" [mm/zpool.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [mm/zpool.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [mm/zpool.ko] undefined!
ERROR: "kmalloc_caches" [mm/zpool.ko] undefined!
ERROR: "__request_module" [mm/zpool.ko] undefined!
ERROR: "__list_del_entry_valid" [mm/zpool.ko] undefined!
ERROR: "__list_add_valid" [mm/zpool.ko] undefined!
ERROR: "_raw_spin_unlock" [mm/zpool.ko] undefined!
ERROR: "strcmp" [mm/zpool.ko] undefined!
ERROR: "_raw_spin_lock" [mm/zpool.ko] undefined!
ERROR: "param_ops_bool" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "param_ops_charp" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "rcu_barrier" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "srcu_drive_gp" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "synchronize_rcu_tasks" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "rcu_barrier_tasks" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "call_rcu_tasks" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "param_ops_int" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "_torture_create_kthread" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "__init_waitqueue_head" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "torture_init_end" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "strcmp" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "torture_init_begin" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "__kmalloc" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "rcu_lock_map" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "__preempt_count" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "debug_lockdep_rcu_enabled" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "synchronize_rcu" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "__init_srcu_struct" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "cleanup_srcu_struct" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "lock_acquire" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "__srcu_read_unlock" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "lock_release" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "call_srcu" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "synchronize_srcu" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "kernel_power_off" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "finish_wait" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "prepare_to_wait_event" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "schedule" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "init_wait_entry" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "__might_sleep" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "torture_cleanup_end" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "_torture_stop_kthread" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "torture_cleanup_begin" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "call_rcu" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "trace_hardirqs_on" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "trace_hardirqs_off" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "set_user_nice" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "__wake_up" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "ftrace_dump" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "tracing_off" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "schedule_timeout_interruptible" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "printk" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "__x86_indirect_thunk_ecx" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "kthread_should_stop" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "kmalloc_caches" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "torture_kthread_stopping" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "__x86_indirect_thunk_eax" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "__udelay" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "ktime_get_mono_fast_ns" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "system_state" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "sched_setscheduler_nocheck" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "cpu_bit_bitmap" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "torture_must_stop" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "schedule_timeout_uninterruptible" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "_cond_resched" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "___might_sleep" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "current_task" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "kfree" [kernel/rcu/rcuperf.ko] undefined!
ERROR: "destroy_workqueue" [kernel/locking/test-ww_mutex.ko] undefined!
ERROR: "alloc_workqueue" [kernel/locking/test-ww_mutex.ko] undefined!
ERROR: "__list_del_entry_valid" [kernel/locking/test-ww_mutex.ko] undefined!
ERROR: "__list_add_valid" [kernel/locking/test-ww_mutex.ko] undefined!
ERROR: "mutex_destroy" [kernel/locking/test-ww_mutex.ko] undefined!
ERROR: "flush_workqueue" [kernel/locking/test-ww_mutex.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [kernel/locking/test-ww_mutex.ko] undefined!
ERROR: "kmalloc_caches" [kernel/locking/test-ww_mutex.ko] undefined!
ERROR: "__kmalloc" [kernel/locking/test-ww_mutex.ko] undefined!
ERROR: "wait_for_completion_timeout" [kernel/locking/test-ww_mutex.ko] undefined!
ERROR: "completion_done" [kernel/locking/test-ww_mutex.ko] undefined!
ERROR: "flush_work" [kernel/locking/test-ww_mutex.ko] undefined!
ERROR: "queue_work_on" [kernel/locking/test-ww_mutex.ko] undefined!
ERROR: "system_wq" [kernel/locking/test-ww_mutex.ko] undefined!
ERROR: "__init_waitqueue_head" [kernel/locking/test-ww_mutex.ko] undefined!
ERROR: "__mutex_init" [kernel/locking/test-ww_mutex.ko] undefined!
ERROR: "lock_acquire" [kernel/locking/test-ww_mutex.ko] undefined!
ERROR: "lockdep_init_map" [kernel/locking/test-ww_mutex.ko] undefined!
ERROR: "debug_check_no_locks_freed" [kernel/locking/test-ww_mutex.ko] undefined!
ERROR: "current_task" [kernel/locking/test-ww_mutex.ko] undefined!
ERROR: "printk" [kernel/locking/test-ww_mutex.ko] undefined!
ERROR: "kfree" [kernel/locking/test-ww_mutex.ko] undefined!
ERROR: "jiffies" [kernel/locking/test-ww_mutex.ko] undefined!
ERROR: "usleep_range" [kernel/locking/test-ww_mutex.ko] undefined!
ERROR: "get_random_u32" [kernel/locking/test-ww_mutex.ko] undefined!
ERROR: "__warn_printk" [kernel/locking/test-ww_mutex.ko] undefined!
ERROR: "debug_locks_silent" [kernel/locking/test-ww_mutex.ko] undefined!
ERROR: "debug_locks_off" [kernel/locking/test-ww_mutex.ko] undefined!
ERROR: "oops_in_progress" [kernel/locking/test-ww_mutex.ko] undefined!
ERROR: "lock_release" [kernel/locking/test-ww_mutex.ko] undefined!
ERROR: "ww_mutex_lock" [kernel/locking/test-ww_mutex.ko] undefined!
ERROR: "ww_mutex_unlock" [kernel/locking/test-ww_mutex.ko] undefined!
ERROR: "mutex_trylock" [kernel/locking/test-ww_mutex.ko] undefined!
ERROR: "_cond_resched" [kernel/locking/test-ww_mutex.ko] undefined!
ERROR: "___might_sleep" [kernel/locking/test-ww_mutex.ko] undefined!
ERROR: "wait_for_completion" [kernel/locking/test-ww_mutex.ko] undefined!
ERROR: "complete" [kernel/locking/test-ww_mutex.ko] undefined!
ERROR: "param_ops_int" [kernel/locking/locktorture.ko] undefined!
ERROR: "param_ops_charp" [kernel/locking/locktorture.ko] undefined!
ERROR: "_torture_create_kthread" [kernel/locking/locktorture.ko] undefined!
ERROR: "torture_stutter_init" [kernel/locking/locktorture.ko] undefined!
ERROR: "torture_shutdown_init" [kernel/locking/locktorture.ko] undefined!
ERROR: "torture_shuffle_init" [kernel/locking/locktorture.ko] undefined!
ERROR: "torture_onoff_init" [kernel/locking/locktorture.ko] undefined!
ERROR: "strncmp" [kernel/locking/locktorture.ko] undefined!
ERROR: "strlen" [kernel/locking/locktorture.ko] undefined!
ERROR: "torture_init_end" [kernel/locking/locktorture.ko] undefined!
ERROR: "strcmp" [kernel/locking/locktorture.ko] undefined!
ERROR: "torture_init_begin" [kernel/locking/locktorture.ko] undefined!
ERROR: "torture_cleanup_end" [kernel/locking/locktorture.ko] undefined!
ERROR: "torture_onoff_failures" [kernel/locking/locktorture.ko] undefined!
ERROR: "_torture_stop_kthread" [kernel/locking/locktorture.ko] undefined!
ERROR: "torture_cleanup_begin" [kernel/locking/locktorture.ko] undefined!
ERROR: "torture_shutdown_absorb" [kernel/locking/locktorture.ko] undefined!
ERROR: "schedule_timeout_interruptible" [kernel/locking/locktorture.ko] undefined!
ERROR: "kfree" [kernel/locking/locktorture.ko] undefined!
ERROR: "__percpu_up_read" [kernel/locking/locktorture.ko] undefined!
ERROR: "__percpu_down_read" [kernel/locking/locktorture.ko] undefined!
ERROR: "lockdep_rcu_suspicious" [kernel/locking/locktorture.ko] undefined!
ERROR: "rcu_read_lock_any_held" [kernel/locking/locktorture.ko] undefined!
ERROR: "debug_lockdep_rcu_enabled" [kernel/locking/locktorture.ko] undefined!
ERROR: "__preempt_count" [kernel/locking/locktorture.ko] undefined!
ERROR: "__might_sleep" [kernel/locking/locktorture.ko] undefined!
ERROR: "__warn_printk" [kernel/locking/locktorture.ko] undefined!
ERROR: "debug_locks_silent" [kernel/locking/locktorture.ko] undefined!
ERROR: "debug_locks_off" [kernel/locking/locktorture.ko] undefined!
ERROR: "lock_release" [kernel/locking/locktorture.ko] undefined!
ERROR: "__list_del_entry_valid" [kernel/locking/locktorture.ko] undefined!
ERROR: "oops_in_progress" [kernel/locking/locktorture.ko] undefined!
ERROR: "ww_mutex_lock" [kernel/locking/locktorture.ko] undefined!
ERROR: "lock_acquire" [kernel/locking/locktorture.ko] undefined!
ERROR: "lockdep_init_map" [kernel/locking/locktorture.ko] undefined!
ERROR: "debug_check_no_locks_freed" [kernel/locking/locktorture.ko] undefined!
ERROR: "__list_add_valid" [kernel/locking/locktorture.ko] undefined!
ERROR: "mutex_lock_nested" [kernel/locking/locktorture.ko] undefined!
ERROR: "mutex_unlock" [kernel/locking/locktorture.ko] undefined!
ERROR: "ww_mutex_unlock" [kernel/locking/locktorture.ko] undefined!
ERROR: "rt_mutex_lock_nested" [kernel/locking/locktorture.ko] undefined!
ERROR: "sched_setscheduler_nocheck" [kernel/locking/locktorture.ko] undefined!
ERROR: "rt_mutex_unlock" [kernel/locking/locktorture.ko] undefined!
ERROR: "down_write" [kernel/locking/locktorture.ko] undefined!
ERROR: "up_write" [kernel/locking/locktorture.ko] undefined!
ERROR: "down_read" [kernel/locking/locktorture.ko] undefined!
ERROR: "up_read" [kernel/locking/locktorture.ko] undefined!
ERROR: "percpu_down_write" [kernel/locking/locktorture.ko] undefined!
ERROR: "percpu_up_write" [kernel/locking/locktorture.ko] undefined!
ERROR: "__const_udelay" [kernel/locking/locktorture.ko] undefined!
ERROR: "printk" [kernel/locking/locktorture.ko] undefined!
ERROR: "torture_kthread_stopping" [kernel/locking/locktorture.ko] undefined!
ERROR: "schedule_timeout_uninterruptible" [kernel/locking/locktorture.ko] undefined!
ERROR: "torture_random" [kernel/locking/locktorture.ko] undefined!
ERROR: "torture_must_stop" [kernel/locking/locktorture.ko] undefined!
ERROR: "stutter_wait" [kernel/locking/locktorture.ko] undefined!
ERROR: "__x86_indirect_thunk_edx" [kernel/locking/locktorture.ko] undefined!
ERROR: "__x86_indirect_thunk_eax" [kernel/locking/locktorture.ko] undefined!
ERROR: "set_user_nice" [kernel/locking/locktorture.ko] undefined!
ERROR: "current_task" [kernel/locking/locktorture.ko] undefined!
ERROR: "sprintf" [kernel/locking/locktorture.ko] undefined!
ERROR: "__kmalloc" [kernel/locking/locktorture.ko] undefined!
ERROR: "__percpu_init_rwsem" [kernel/locking/locktorture.ko] undefined!
ERROR: "_raw_read_unlock_irqrestore" [kernel/locking/locktorture.ko] undefined!
ERROR: "_raw_read_lock_irqsave" [kernel/locking/locktorture.ko] undefined!
ERROR: "_raw_write_unlock_irqrestore" [kernel/locking/locktorture.ko] undefined!
ERROR: "_raw_write_lock_irqsave" [kernel/locking/locktorture.ko] undefined!
ERROR: "_raw_read_unlock" [kernel/locking/locktorture.ko] undefined!
ERROR: "_raw_read_lock" [kernel/locking/locktorture.ko] undefined!
ERROR: "_raw_write_unlock" [kernel/locking/locktorture.ko] undefined!
ERROR: "_raw_write_lock" [kernel/locking/locktorture.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [kernel/locking/locktorture.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [kernel/locking/locktorture.ko] undefined!
ERROR: "_raw_spin_unlock" [kernel/locking/locktorture.ko] undefined!
ERROR: "_raw_spin_lock" [kernel/locking/locktorture.ko] undefined!
ERROR: "__request_region" [arch/x86/platform/scx200/scx200.ko] undefined!
ERROR: "mutex_unlock" [arch/x86/platform/scx200/scx200.ko] undefined!
ERROR: "ioport_resource" [arch/x86/platform/scx200/scx200.ko] undefined!
ERROR: "printk" [arch/x86/platform/scx200/scx200.ko] undefined!
ERROR: "pci_read_config_dword" [arch/x86/platform/scx200/scx200.ko] undefined!
ERROR: "__release_region" [arch/x86/platform/scx200/scx200.ko] undefined!
ERROR: "pci_unregister_driver" [arch/x86/platform/scx200/scx200.ko] undefined!
ERROR: "mutex_lock_nested" [arch/x86/platform/scx200/scx200.ko] undefined!
ERROR: "__pci_register_driver" [arch/x86/platform/scx200/scx200.ko] undefined!
ERROR: "param_ops_bool" [arch/x86/platform/iris/iris.ko] undefined!
ERROR: "platform_device_unregister" [arch/x86/platform/iris/iris.ko] undefined!
ERROR: "platform_driver_unregister" [arch/x86/platform/iris/iris.ko] undefined!
ERROR: "platform_device_register_full" [arch/x86/platform/iris/iris.ko] undefined!
ERROR: "__platform_driver_register" [arch/x86/platform/iris/iris.ko] undefined!
ERROR: "msleep" [arch/x86/platform/iris/iris.ko] undefined!
ERROR: "printk" [arch/x86/platform/iris/iris.ko] undefined!
ERROR: "pm_power_off" [arch/x86/platform/iris/iris.ko] undefined!
ERROR: "single_release" [arch/x86/platform/atom/punit_atom_debug.ko] undefined!
ERROR: "seq_read" [arch/x86/platform/atom/punit_atom_debug.ko] undefined!
ERROR: "seq_lseek" [arch/x86/platform/atom/punit_atom_debug.ko] undefined!
ERROR: "debugfs_remove_recursive" [arch/x86/platform/atom/punit_atom_debug.ko] undefined!
ERROR: "debugfs_create_file" [arch/x86/platform/atom/punit_atom_debug.ko] undefined!
ERROR: "debugfs_create_dir" [arch/x86/platform/atom/punit_atom_debug.ko] undefined!
ERROR: "x86_match_cpu" [arch/x86/platform/atom/punit_atom_debug.ko] undefined!
ERROR: "iosf_mbi_read" [arch/x86/platform/atom/punit_atom_debug.ko] undefined!
ERROR: "seq_printf" [arch/x86/platform/atom/punit_atom_debug.ko] undefined!
ERROR: "seq_puts" [arch/x86/platform/atom/punit_atom_debug.ko] undefined!
ERROR: "single_open" [arch/x86/platform/atom/punit_atom_debug.ko] undefined!
ERROR: "printk" [arch/x86/crypto/crc32-pclmul.ko] undefined!
ERROR: "kernel_fpu_begin" [arch/x86/crypto/crc32-pclmul.ko] undefined!
ERROR: "crc32_le" [arch/x86/crypto/crc32-pclmul.ko] undefined!
ERROR: "crypto_unregister_shash" [arch/x86/crypto/crc32-pclmul.ko] undefined!
ERROR: "crypto_register_shash" [arch/x86/crypto/crc32-pclmul.ko] undefined!
ERROR: "kernel_fpu_end" [arch/x86/crypto/crc32-pclmul.ko] undefined!
ERROR: "irq_fpu_usable" [arch/x86/crypto/crc32-pclmul.ko] undefined!
ERROR: "x86_match_cpu" [arch/x86/crypto/crc32-pclmul.ko] undefined!
ERROR: "glue_ctr_req_128bit" [arch/x86/crypto/serpent-sse2-i586.ko] undefined!
ERROR: "boot_cpu_data" [arch/x86/crypto/serpent-sse2-i586.ko] undefined!
ERROR: "__serpent_encrypt" [arch/x86/crypto/serpent-sse2-i586.ko] undefined!
ERROR: "simd_unregister_skciphers" [arch/x86/crypto/serpent-sse2-i586.ko] undefined!
ERROR: "glue_ecb_req_128bit" [arch/x86/crypto/serpent-sse2-i586.ko] undefined!
ERROR: "__serpent_decrypt" [arch/x86/crypto/serpent-sse2-i586.ko] undefined!
ERROR: "printk" [arch/x86/crypto/serpent-sse2-i586.ko] undefined!
ERROR: "simd_register_skciphers_compat" [arch/x86/crypto/serpent-sse2-i586.ko] undefined!
ERROR: "__serpent_setkey" [arch/x86/crypto/serpent-sse2-i586.ko] undefined!
ERROR: "glue_cbc_encrypt_req_128bit" [arch/x86/crypto/serpent-sse2-i586.ko] undefined!
ERROR: "glue_cbc_decrypt_req_128bit" [arch/x86/crypto/serpent-sse2-i586.ko] undefined!
ERROR: "crypto_register_alg" [arch/x86/crypto/twofish-i586.ko] undefined!
ERROR: "twofish_setkey" [arch/x86/crypto/twofish-i586.ko] undefined!
ERROR: "crypto_unregister_alg" [arch/x86/crypto/twofish-i586.ko] undefined!
ERROR: "scatterwalk_map_and_copy" [arch/x86/crypto/glue_helper.ko] undefined!
ERROR: "scatterwalk_ffwd" [arch/x86/crypto/glue_helper.ko] undefined!
ERROR: "__x86_indirect_thunk_edi" [arch/x86/crypto/glue_helper.ko] undefined!
ERROR: "kernel_fpu_begin" [arch/x86/crypto/glue_helper.ko] undefined!
ERROR: "skcipher_walk_atomise" [arch/x86/crypto/glue_helper.ko] undefined!
ERROR: "kernel_fpu_end" [arch/x86/crypto/glue_helper.ko] undefined!
ERROR: "skcipher_walk_done" [arch/x86/crypto/glue_helper.ko] undefined!
ERROR: "skcipher_walk_virt" [arch/x86/crypto/glue_helper.ko] undefined!
ERROR: "__x86_indirect_thunk_ebx" [arch/x86/crypto/glue_helper.ko] undefined!
ERROR: "no_seek_end_llseek" [arch/x86/kernel/cpuid.ko] undefined!
ERROR: "__cpuhp_remove_state" [arch/x86/kernel/cpuid.ko] undefined!
ERROR: "__unregister_chrdev" [arch/x86/kernel/cpuid.ko] undefined!
ERROR: "class_destroy" [arch/x86/kernel/cpuid.ko] undefined!
ERROR: "__cpuhp_setup_state" [arch/x86/kernel/cpuid.ko] undefined!
ERROR: "__class_create" [arch/x86/kernel/cpuid.ko] undefined!
ERROR: "printk" [arch/x86/kernel/cpuid.ko] undefined!
ERROR: "__register_chrdev" [arch/x86/kernel/cpuid.ko] undefined!
ERROR: "smp_call_function_single_async" [arch/x86/kernel/cpuid.ko] undefined!
ERROR: "_copy_to_user" [arch/x86/kernel/cpuid.ko] undefined!
ERROR: "wait_for_completion" [arch/x86/kernel/cpuid.ko] undefined!
ERROR: "__init_waitqueue_head" [arch/x86/kernel/cpuid.ko] undefined!
ERROR: "complete" [arch/x86/kernel/cpuid.ko] undefined!
ERROR: "kasprintf" [arch/x86/kernel/cpuid.ko] undefined!
ERROR: "device_create" [arch/x86/kernel/cpuid.ko] undefined!
ERROR: "device_destroy" [arch/x86/kernel/cpuid.ko] undefined!
ERROR: "boot_cpu_data" [arch/x86/kernel/cpuid.ko] undefined!
ERROR: "no_seek_end_llseek" [arch/x86/kernel/msr.ko] undefined!
ERROR: "__cpuhp_remove_state" [arch/x86/kernel/msr.ko] undefined!
ERROR: "__unregister_chrdev" [arch/x86/kernel/msr.ko] undefined!
ERROR: "class_destroy" [arch/x86/kernel/msr.ko] undefined!
ERROR: "__cpuhp_setup_state" [arch/x86/kernel/msr.ko] undefined!
ERROR: "__class_create" [arch/x86/kernel/msr.ko] undefined!
ERROR: "printk" [arch/x86/kernel/msr.ko] undefined!
ERROR: "__register_chrdev" [arch/x86/kernel/msr.ko] undefined!
ERROR: "do_trace_read_msr" [arch/x86/kernel/msr.ko] undefined!
ERROR: "__tracepoint_read_msr" [arch/x86/kernel/msr.ko] undefined!
ERROR: "do_trace_write_msr" [arch/x86/kernel/msr.ko] undefined!
ERROR: "__tracepoint_write_msr" [arch/x86/kernel/msr.ko] undefined!
ERROR: "ex_handler_default" [arch/x86/kernel/msr.ko] undefined!
ERROR: "rdmsr_safe_regs" [arch/x86/kernel/msr.ko] undefined!
ERROR: "_copy_to_user" [arch/x86/kernel/msr.ko] undefined!
ERROR: "wrmsr_safe_regs" [arch/x86/kernel/msr.ko] undefined!
ERROR: "_copy_from_user" [arch/x86/kernel/msr.ko] undefined!
ERROR: "boot_cpu_data" [arch/x86/kernel/msr.ko] undefined!
ERROR: "capable" [arch/x86/kernel/msr.ko] undefined!
ERROR: "kasprintf" [arch/x86/kernel/msr.ko] undefined!
ERROR: "device_create" [arch/x86/kernel/msr.ko] undefined!
ERROR: "device_destroy" [arch/x86/kernel/msr.ko] undefined!
ERROR: "atomic64_set_cx8" [arch/x86/events/intel/intel-cstate.ko] undefined!
ERROR: "__cpuhp_remove_state" [arch/x86/events/intel/intel-cstate.ko] undefined!
ERROR: "atomic64_add_386" [arch/x86/events/intel/intel-cstate.ko] undefined!
ERROR: "boot_cpu_data" [arch/x86/events/intel/intel-cstate.ko] undefined!
ERROR: "ex_handler_rdmsr_unsafe" [arch/x86/events/intel/intel-cstate.ko] undefined!
ERROR: "perf_msr_probe" [arch/x86/events/intel/intel-cstate.ko] undefined!
ERROR: "__tracepoint_read_msr" [arch/x86/events/intel/intel-cstate.ko] undefined!
ERROR: "atomic64_add_return_cx8" [arch/x86/events/intel/intel-cstate.ko] undefined!
ERROR: "sprintf" [arch/x86/events/intel/intel-cstate.ko] undefined!
ERROR: "cmpxchg8b_emu" [arch/x86/events/intel/intel-cstate.ko] undefined!
ERROR: "printk" [arch/x86/events/intel/intel-cstate.ko] undefined!
ERROR: "perf_pmu_unregister" [arch/x86/events/intel/intel-cstate.ko] undefined!
ERROR: "perf_event_sysfs_show" [arch/x86/events/intel/intel-cstate.ko] undefined!
ERROR: "atomic64_read_cx8" [arch/x86/events/intel/intel-cstate.ko] undefined!
ERROR: "atomic64_set_386" [arch/x86/events/intel/intel-cstate.ko] undefined!
ERROR: "__cpuhp_setup_state" [arch/x86/events/intel/intel-cstate.ko] undefined!
ERROR: "perf_pmu_register" [arch/x86/events/intel/intel-cstate.ko] undefined!
ERROR: "do_trace_read_msr" [arch/x86/events/intel/intel-cstate.ko] undefined!
ERROR: "bitmap_print_to_pagebuf" [arch/x86/events/intel/intel-cstate.ko] undefined!
ERROR: "atomic64_read_386" [arch/x86/events/intel/intel-cstate.ko] undefined!
ERROR: "x86_match_cpu" [arch/x86/events/intel/intel-cstate.ko] undefined!
ERROR: "kmalloc_caches" [arch/x86/events/intel/intel-rapl-perf.ko] undefined!
ERROR: "atomic64_set_cx8" [arch/x86/events/intel/intel-rapl-perf.ko] undefined!
ERROR: "__cpuhp_remove_state" [arch/x86/events/intel/intel-rapl-perf.ko] undefined!
ERROR: "atomic64_add_386" [arch/x86/events/intel/intel-rapl-perf.ko] undefined!
ERROR: "hrtimer_forward" [arch/x86/events/intel/intel-rapl-perf.ko] undefined!
ERROR: "boot_cpu_data" [arch/x86/events/intel/intel-rapl-perf.ko] undefined!
ERROR: "ex_handler_rdmsr_unsafe" [arch/x86/events/intel/intel-rapl-perf.ko] undefined!
ERROR: "hrtimer_cancel" [arch/x86/events/intel/intel-rapl-perf.ko] undefined!
ERROR: "__x86_indirect_thunk_eax" [arch/x86/events/intel/intel-rapl-perf.ko] undefined!
ERROR: "perf_msr_probe" [arch/x86/events/intel/intel-rapl-perf.ko] undefined!
ERROR: "__tracepoint_read_msr" [arch/x86/events/intel/intel-rapl-perf.ko] undefined!
ERROR: "atomic64_add_return_cx8" [arch/x86/events/intel/intel-rapl-perf.ko] undefined!
ERROR: "sprintf" [arch/x86/events/intel/intel-rapl-perf.ko] undefined!
ERROR: "cmpxchg8b_emu" [arch/x86/events/intel/intel-rapl-perf.ko] undefined!
ERROR: "hrtimer_start_range_ns" [arch/x86/events/intel/intel-rapl-perf.ko] undefined!
ERROR: "_raw_spin_unlock_irqrestore" [arch/x86/events/intel/intel-rapl-perf.ko] undefined!
ERROR: "printk" [arch/x86/events/intel/intel-rapl-perf.ko] undefined!
ERROR: "__list_del_entry_valid" [arch/x86/events/intel/intel-rapl-perf.ko] undefined!
ERROR: "perf_pmu_unregister" [arch/x86/events/intel/intel-rapl-perf.ko] undefined!
ERROR: "perf_event_sysfs_show" [arch/x86/events/intel/intel-rapl-perf.ko] undefined!
ERROR: "atomic64_read_cx8" [arch/x86/events/intel/intel-rapl-perf.ko] undefined!
ERROR: "atomic64_set_386" [arch/x86/events/intel/intel-rapl-perf.ko] undefined!
ERROR: "__cpuhp_setup_state" [arch/x86/events/intel/intel-rapl-perf.ko] undefined!
ERROR: "__list_add_valid" [arch/x86/events/intel/intel-rapl-perf.ko] undefined!
ERROR: "perf_pmu_register" [arch/x86/events/intel/intel-rapl-perf.ko] undefined!
ERROR: "__raw_spin_lock_init" [arch/x86/events/intel/intel-rapl-perf.ko] undefined!
ERROR: "do_trace_read_msr" [arch/x86/events/intel/intel-rapl-perf.ko] undefined!
ERROR: "kmem_cache_alloc_trace" [arch/x86/events/intel/intel-rapl-perf.ko] undefined!
ERROR: "_raw_spin_lock_irqsave" [arch/x86/events/intel/intel-rapl-perf.ko] undefined!
ERROR: "ex_handler_default" [arch/x86/events/intel/intel-rapl-perf.ko] undefined!
ERROR: "kfree" [arch/x86/events/intel/intel-rapl-perf.ko] undefined!
ERROR: "hrtimer_init" [arch/x86/events/intel/intel-rapl-perf.ko] undefined!
ERROR: "bitmap_print_to_pagebuf" [arch/x86/events/intel/intel-rapl-perf.ko] undefined!
ERROR: "__sw_hweight32" [arch/x86/events/intel/intel-rapl-perf.ko] undefined!
ERROR: "atomic64_read_386" [arch/x86/events/intel/intel-rapl-perf.ko] undefined!
ERROR: "x86_match_cpu" [arch/x86/events/intel/intel-rapl-perf.ko] undefined!
ERROR: "events_sysfs_show" [arch/x86/events/amd/power.ko] undefined!
ERROR: "perf_pmu_unregister" [arch/x86/events/amd/power.ko] undefined!
ERROR: "__cpuhp_remove_state" [arch/x86/events/amd/power.ko] undefined!
ERROR: "perf_pmu_register" [arch/x86/events/amd/power.ko] undefined!
ERROR: "__cpuhp_setup_state" [arch/x86/events/amd/power.ko] undefined!
ERROR: "printk" [arch/x86/events/amd/power.ko] undefined!
ERROR: "ex_handler_default" [arch/x86/events/amd/power.ko] undefined!
ERROR: "boot_cpu_data" [arch/x86/events/amd/power.ko] undefined!
ERROR: "x86_match_cpu" [arch/x86/events/amd/power.ko] undefined!
ERROR: "atomic64_add_return_cx8" [arch/x86/events/amd/power.ko] undefined!
ERROR: "atomic64_add_386" [arch/x86/events/amd/power.ko] undefined!
ERROR: "do_trace_read_msr" [arch/x86/events/amd/power.ko] undefined!
ERROR: "__tracepoint_read_msr" [arch/x86/events/amd/power.ko] undefined!
ERROR: "ex_handler_rdmsr_unsafe" [arch/x86/events/amd/power.ko] undefined!
ERROR: "bitmap_print_to_pagebuf" [arch/x86/events/amd/power.ko] undefined!
ERROR: "sprintf" [arch/x86/events/amd/power.ko] undefined!
make[1]: *** [scripts/Makefile.modpost:93: __modpost] Error 1
make: *** [Makefile:1281: modules] Error 2
make: *** Waiting for unfinished jobs....
  CC      arch/x86/boot/compressed/misc.o
  LZO     arch/x86/boot/compressed/vmlinux.bin.lzo
  MKPIGGY arch/x86/boot/compressed/piggy.S
  AS      arch/x86/boot/compressed/piggy.o
  LD      arch/x86/boot/compressed/vmlinux
  ZOFFSET arch/x86/boot/zoffset.h
  OBJCOPY arch/x86/boot/vmlinux.bin
  AS      arch/x86/boot/header.o
  LD      arch/x86/boot/setup.elf
  OBJCOPY arch/x86/boot/setup.bin
  BUILD   arch/x86/boot/bzImage
Setup is 15036 bytes (padded to 15360 bytes).
System is 8684 kB
CRC 76096760
Kernel: arch/x86/boot/bzImage is ready  (#2)

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [kbuild-all] Re: [PATCH v3 3/3] kbuild: generate autoksyms.h early
  2020-02-13  8:46       ` kernel test robot
@ 2020-02-13 18:07           ` Quentin Perret
  0 siblings, 0 replies; 20+ messages in thread
From: Quentin Perret @ 2020-02-13 18:07 UTC (permalink / raw)
  To: kernel test robot
  Cc: kbuild test robot, kbuild-all, masahiroy, nico, linux-kernel,
	linux-kbuild, maennich, kernel-team, jeyu, hch

On Thursday 13 Feb 2020 at 16:42:51 (+0800), kernel test robot wrote:
> I attached the build log for your reference.

Thanks!

<snip>
> scripts/kconfig/conf  --syncconfig Kconfig
>   SYSTBL  arch/x86/include/generated/asm/syscalls_32.h
>   SYSHDR  arch/x86/include/generated/uapi/asm/unistd_32.h
>   UPD     include/config/kernel.release
>   SYSHDR  arch/x86/include/generated/uapi/asm/unistd_64.h
>   SYSHDR  arch/x86/include/generated/uapi/asm/unistd_x32.h
>   UPD     include/generated/utsrelease.h
>   HOSTCC  scripts/dtc/dtc.o
>   HOSTCC  scripts/dtc/flattree.o
> ./scripts/gen_autoksyms.sh: 24: ./scripts/gen_autoksyms.sh: [[: not found
> ./scripts/gen_autoksyms.sh: 35: ./scripts/gen_autoksyms.sh: [[: not found
> cat: /home/nfs/linux//dev/null: No such file or directory

OK, so that's the issue, which Nicolas pointed out earlier. That should
be fixed in v4.

Thanks,
Quentin

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [PATCH v3 3/3] kbuild: generate autoksyms.h early
@ 2020-02-13 18:07           ` Quentin Perret
  0 siblings, 0 replies; 20+ messages in thread
From: Quentin Perret @ 2020-02-13 18:07 UTC (permalink / raw)
  To: kbuild-all

[-- Attachment #1: Type: text/plain, Size: 907 bytes --]

On Thursday 13 Feb 2020 at 16:42:51 (+0800), kernel test robot wrote:
> I attached the build log for your reference.

Thanks!

<snip>
> scripts/kconfig/conf  --syncconfig Kconfig
>   SYSTBL  arch/x86/include/generated/asm/syscalls_32.h
>   SYSHDR  arch/x86/include/generated/uapi/asm/unistd_32.h
>   UPD     include/config/kernel.release
>   SYSHDR  arch/x86/include/generated/uapi/asm/unistd_64.h
>   SYSHDR  arch/x86/include/generated/uapi/asm/unistd_x32.h
>   UPD     include/generated/utsrelease.h
>   HOSTCC  scripts/dtc/dtc.o
>   HOSTCC  scripts/dtc/flattree.o
> ./scripts/gen_autoksyms.sh: 24: ./scripts/gen_autoksyms.sh: [[: not found
> ./scripts/gen_autoksyms.sh: 35: ./scripts/gen_autoksyms.sh: [[: not found
> cat: /home/nfs/linux//dev/null: No such file or directory

OK, so that's the issue, which Nicolas pointed out earlier. That should
be fixed in v4.

Thanks,
Quentin

^ permalink raw reply	[flat|nested] 20+ messages in thread

end of thread, other threads:[~2020-02-13 18:07 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-02-07 18:07 [PATCH v3 0/3] kbuild: allow symbol whitelisting with TRIM_UNUSED_KSYM Quentin Perret
2020-02-07 18:07 ` [PATCH v3 1/3] kbuild: allow symbol whitelisting with TRIM_UNUSED_KSYMS Quentin Perret
2020-02-07 18:22   ` Nicolas Pitre
2020-02-11  5:41     ` Quentin Perret
2020-02-08  5:05   ` Masahiro Yamada
2020-02-11  5:44     ` Quentin Perret
2020-02-07 18:07 ` [PATCH v3 2/3] kbuild: split adjust_autoksyms.sh in two parts Quentin Perret
2020-02-08  5:08   ` Masahiro Yamada
2020-02-11  5:45     ` Quentin Perret
2020-02-07 18:07 ` [PATCH v3 3/3] kbuild: generate autoksyms.h early Quentin Perret
2020-02-08  5:09   ` Masahiro Yamada
2020-02-11  5:46     ` Quentin Perret
2020-02-11  2:14   ` kbuild test robot
2020-02-11  2:14     ` kbuild test robot
2020-02-11  2:14     ` kbuild test robot
2020-02-12 19:56     ` Quentin Perret
2020-02-12 19:56       ` Quentin Perret
2020-02-13  8:46       ` kernel test robot
2020-02-13 18:07         ` [kbuild-all] " Quentin Perret
2020-02-13 18:07           ` Quentin Perret

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.