diff options
author | Tom Rini <trini@konsulko.com> | 2020-10-16 09:44:51 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-10-16 09:44:51 -0400 |
commit | da09b99ea572cec9a114872e480b798db11f9c6e (patch) | |
tree | ea40e8c6a93a8e6e54ead962cc709e993b607419 /drivers/timer/timer-uclass.c | |
parent | 9dc6aef8c963ae17e1263b89c692792fce0c7198 (diff) | |
parent | 4a1989c0bc77565493fd142ce224d5d0c88deda9 (diff) |
Merge branch '2020-10-15-further-cleanup_dev_xxx'
- Bring in the next round of dev_xxx cleanup patches.
Diffstat (limited to 'drivers/timer/timer-uclass.c')
-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 e9802c8b43e..f8a092b8cb1 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> |