diff options
author | Tim Harvey | 2020-10-12 12:21:54 -0700 |
---|---|---|
committer | Stefano Babic | 2020-11-01 15:53:08 +0100 |
commit | 85abf0415d2d4cbb31c07053422ae031a7610764 (patch) | |
tree | 9efdb671adeb20a94b27db32724aff7630b534a1 /drivers/thermal/imx_tmu.c | |
parent | 9d41628863c9a2f34da0b8f3a19af3114f999e1c (diff) |
thermal: imx_tmu: fix missing include
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>
Diffstat (limited to 'drivers/thermal/imx_tmu.c')
-rw-r--r-- | drivers/thermal/imx_tmu.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/thermal/imx_tmu.c b/drivers/thermal/imx_tmu.c index 4ca22089b8b..936068c6cba 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> |