MODULE_DEVICE_TABLE is defined in <linux/module.h>, which is not included. Add the include to fix the build error its lack caused. Cc: Sumit Garg <sumit.garg@xxxxxxxxxx> Signed-off-by: Ahmad Fatoum <a.fatoum@xxxxxxxxxxxxxx> --- security/keys/trusted-keys/trusted_tee.c | 1 + 1 file changed, 1 insertion(+) diff --git a/security/keys/trusted-keys/trusted_tee.c b/security/keys/trusted-keys/trusted_tee.c index 62983d98a252..2ce66c199e1d 100644 --- a/security/keys/trusted-keys/trusted_tee.c +++ b/security/keys/trusted-keys/trusted_tee.c @@ -8,6 +8,7 @@ #include <linux/err.h> #include <linux/key-type.h> +#include <linux/module.h> #include <linux/slab.h> #include <linux/string.h> #include <linux/tee_drv.h> -- 2.29.2