diff options
author | Sean Anderson <seanga2@gmail.com> | 2020-10-04 21:39:52 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-10-16 09:44:27 -0400 |
commit | a5d4f861247fe3601162b397b2f7cd29c9c7d749 (patch) | |
tree | f669fb2668daa8cf70956918f4539b2a41c01889 | |
parent | 7399897b6c0ac5346444347ba516528b991e720f (diff) | |
download | u-boot-a5d4f861247fe3601162b397b2f7cd29c9c7d749.zip u-boot-a5d4f861247fe3601162b397b2f7cd29c9c7d749.tar.gz u-boot-a5d4f861247fe3601162b397b2f7cd29c9c7d749.tar.bz2 |
timer: Include device_compat.h
Necessary for dev_xxx.
Signed-off-by: Sean Anderson <seanga2@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | drivers/timer/timer-uclass.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/timer/timer-uclass.c b/drivers/timer/timer-uclass.c index e9802c8..f8a092b 100644 --- a/drivers/timer/timer-uclass.c +++ b/drivers/timer/timer-uclass.c @@ -4,14 +4,15 @@ */ #include <common.h> +#include <clk.h> #include <cpu.h> #include <dm.h> -#include <init.h> #include <dm/lists.h> +#include <dm/device_compat.h> #include <dm/device-internal.h> #include <dm/root.h> -#include <clk.h> #include <errno.h> +#include <init.h> #include <timer.h> #include <linux/err.h> |