diff mbox series

KEYS: trusted: tee: fix build error due to missing include

Message ID 20210317142904.27855-1-a.fatoum@pengutronix.de (mailing list archive)
State New, archived
Headers show
Series KEYS: trusted: tee: fix build error due to missing include | expand

Commit Message

Ahmad Fatoum March 17, 2021, 2:29 p.m. UTC
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@linaro.org>
Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
---
 security/keys/trusted-keys/trusted_tee.c | 1 +
 1 file changed, 1 insertion(+)

Comments

Jarkko Sakkinen March 17, 2021, 9:57 p.m. UTC | #1
On Wed, Mar 17, 2021 at 03:29:05PM +0100, Ahmad Fatoum wrote:
> 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@linaro.org>
> Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>

Hi, I appreciate your work, thanks for taking action, but unfortunately
I already incorporated this fix to the original patch.

/Jarkko
Ahmad Fatoum March 18, 2021, 7:06 a.m. UTC | #2
Hi Jarkko,

On 17.03.21 22:57, Jarkko Sakkinen wrote:
> On Wed, Mar 17, 2021 at 03:29:05PM +0100, Ahmad Fatoum wrote:
>> 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@linaro.org>
>> Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
> 
> Hi, I appreciate your work, thanks for taking action, but unfortunately
> I already incorporated this fix to the original patch.

Nothing unfortunate about this! :)

Cheers,
Ahmad

> 
> /Jarkko
>
diff mbox series

Patch

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>