diff options
author | Tom Rini <trini@konsulko.com> | 2024-05-01 19:30:33 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-05-07 08:00:41 -0600 |
commit | 4fa3470efd7cf9edeb51d2c81bc8d0d6e80b6622 (patch) | |
tree | 71b70221cc43dc46105308ffdd43b63ab92c4b02 /drivers/bus | |
parent | f3a081603e7eed389d21fb9ba265ae7886986aa5 (diff) | |
download | u-boot-4fa3470efd7cf9edeb51d2c81bc8d0d6e80b6622.tar.gz |
bus: Remove <common.h> and add needed includes
Remove <common.h> from this driver directory and when needed
add missing include files directly.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'drivers/bus')
-rw-r--r-- | drivers/bus/ti-pwmss.c | 1 | ||||
-rw-r--r-- | drivers/bus/ti-sysc.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/drivers/bus/ti-pwmss.c b/drivers/bus/ti-pwmss.c index 265b4cf83b5..d1f6f3bab00 100644 --- a/drivers/bus/ti-pwmss.c +++ b/drivers/bus/ti-pwmss.c @@ -5,7 +5,6 @@ * Copyright (C) 2020 Dario Binacchi <dariobin@libero.it> */ -#include <common.h> #include <dm.h> static const struct udevice_id ti_pwmss_ids[] = { diff --git a/drivers/bus/ti-sysc.c b/drivers/bus/ti-sysc.c index 778c0654f6a..5f9f0a0d0b7 100644 --- a/drivers/bus/ti-sysc.c +++ b/drivers/bus/ti-sysc.c @@ -5,7 +5,6 @@ * Copyright (C) 2020 Dario Binacchi <dariobin@libero.it> */ -#include <common.h> #include <clk.h> #include <dm.h> #include <dm/device_compat.h> |