summaryrefslogtreecommitdiff
path: root/include/linux/module.h
diff options
context:
space:
mode:
authorMark Brown <broonie@kernel.org>2025-05-20 10:34:09 +0100
committerMark Brown <broonie@kernel.org>2025-05-20 10:34:09 +0100
commit831962e9d7b774d858cfeefc3848e06a2d5599df (patch)
treec66522409bd3913a89a7ac3d37459d6bb78ee8b8 /include/linux/module.h
parente4dca67b2463e6abe775876c9cb049ea5b1c8e0d (diff)
parent5b5bf5922f4c104e4e829c0dbfdd9399b7cfc434 (diff)
Add sound card support for QCS9100 and QCS9075
Merge series from Mohammad Rafi Shaik <mohammad.rafi.shaik@oss.qualcomm.com>: This patchset adds support for sound card on Qualcomm QCS9100 and QCS9075 boards.
Diffstat (limited to 'include/linux/module.h')
-rw-r--r--include/linux/module.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/module.h b/include/linux/module.h
index b3329110d668..8050f77c3b64 100644
--- a/include/linux/module.h
+++ b/include/linux/module.h
@@ -586,6 +586,11 @@ struct module {
atomic_t refcnt;
#endif
+#ifdef CONFIG_MITIGATION_ITS
+ int its_num_pages;
+ void **its_page_array;
+#endif
+
#ifdef CONFIG_CONSTRUCTORS
/* Constructor functions. */
ctor_fn_t *ctors;