diff mbox series

thermal: imx_tmu: fix missing include

Message ID 1602530514-483-1-git-send-email-tharvey@gateworks.com
State Accepted
Commit 85abf0415d2d4cbb31c07053422ae031a7610764
Delegated to: Stefano Babic
Headers show
Series thermal: imx_tmu: fix missing include | expand

Commit Message

Tim Harvey Oct. 12, 2020, 7:21 p.m. UTC
commit c05ed00afb dropped linux/delay.h from common header

add linux/delay.h to avoid compile warning here

Signed-off-by: Tim Harvey <tharvey@gateworks.com>
---
 drivers/thermal/imx_tmu.c | 1 +
 1 file changed, 1 insertion(+)

Comments

Stefano Babic Nov. 2, 2020, 8:09 a.m. UTC | #1
> commit c05ed00afb dropped linux/delay.h from common header
> add linux/delay.h to avoid compile warning here
> Signed-off-by: Tim Harvey <tharvey@gateworks.com>
Applied to u-boot-imx, master, thanks !

Best regards,
Stefano Babic
diff mbox series

Patch

diff --git a/drivers/thermal/imx_tmu.c b/drivers/thermal/imx_tmu.c
index 4ca2208..936068c 100644
--- a/drivers/thermal/imx_tmu.c
+++ b/drivers/thermal/imx_tmu.c
@@ -14,6 +14,7 @@ 
 #include <dm/device.h>
 #include <errno.h>
 #include <fuse.h>
+#include <linux/delay.h>
 #include <malloc.h>
 #include <thermal.h>