diff options
| author | Tom Rini <trini@konsulko.com> | 2020-05-19 10:51:43 -0400 |
|---|---|---|
| committer | Tom Rini <trini@konsulko.com> | 2020-05-19 10:51:43 -0400 |
| commit | c2279d784e35fa25ee3a9fa28a74a1ba545f8c1e (patch) | |
| tree | 158fd30f3d06142f6a99cbae6ed8ccb0f3be567b /drivers/core | |
| parent | ed9a3aa6452f57af65eb74f73bd2a54c3a2f4b03 (diff) | |
| parent | cd93d625fd751d55c729c78b10f82109d56a5f1d (diff) | |
Merge branch '2020-05-18-reduce-size-of-common.h'
Bring in the latest round of Simon's changes to reduce what's in
<common.h> overall.
Diffstat (limited to 'drivers/core')
| -rw-r--r-- | drivers/core/acpi.c | 1 | ||||
| -rw-r--r-- | drivers/core/device.c | 2 | ||||
| -rw-r--r-- | drivers/core/devres.c | 1 | ||||
| -rw-r--r-- | drivers/core/fdtaddr.c | 1 | ||||
| -rw-r--r-- | drivers/core/lists.c | 1 | ||||
| -rw-r--r-- | drivers/core/of_access.c | 2 | ||||
| -rw-r--r-- | drivers/core/of_addr.c | 2 | ||||
| -rw-r--r-- | drivers/core/of_extra.c | 1 | ||||
| -rw-r--r-- | drivers/core/ofnode.c | 1 | ||||
| -rw-r--r-- | drivers/core/regmap.c | 1 | ||||
| -rw-r--r-- | drivers/core/root.c | 1 | ||||
| -rw-r--r-- | drivers/core/syscon-uclass.c | 1 | ||||
| -rw-r--r-- | drivers/core/uclass.c | 1 |
13 files changed, 16 insertions, 0 deletions
diff --git a/drivers/core/acpi.c b/drivers/core/acpi.c index e09905cf2a..8ae61575dd 100644 --- a/drivers/core/acpi.c +++ b/drivers/core/acpi.c @@ -10,6 +10,7 @@ #include <common.h> #include <dm.h> +#include <log.h> #include <dm/acpi.h> #include <dm/device-internal.h> #include <dm/root.h> diff --git a/drivers/core/device.c b/drivers/core/device.c index 0157bb1fe0..a7408d9c76 100644 --- a/drivers/core/device.c +++ b/drivers/core/device.c @@ -10,11 +10,13 @@ #include <common.h> #include <cpu_func.h> +#include <log.h> #include <asm/io.h> #include <clk.h> #include <fdtdec.h> #include <fdt_support.h> #include <malloc.h> +#include <asm/cache.h> #include <dm/device.h> #include <dm/device-internal.h> #include <dm/lists.h> diff --git a/drivers/core/devres.c b/drivers/core/devres.c index 457e1309c5..88244698b0 100644 --- a/drivers/core/devres.c +++ b/drivers/core/devres.c @@ -10,6 +10,7 @@ #define LOG_CATEGORY LOGC_DEVRES #include <common.h> +#include <log.h> #include <malloc.h> #include <linux/compat.h> #include <linux/kernel.h> diff --git a/drivers/core/fdtaddr.c b/drivers/core/fdtaddr.c index 33811e62f7..dfcb868f65 100644 --- a/drivers/core/fdtaddr.c +++ b/drivers/core/fdtaddr.c @@ -11,6 +11,7 @@ #include <common.h> #include <dm.h> #include <fdt_support.h> +#include <log.h> #include <asm/io.h> #include <dm/device-internal.h> diff --git a/drivers/core/lists.c b/drivers/core/lists.c index c7db14ed56..5beba9181c 100644 --- a/drivers/core/lists.c +++ b/drivers/core/lists.c @@ -10,6 +10,7 @@ #include <common.h> #include <errno.h> +#include <log.h> #include <dm/device.h> #include <dm/device-internal.h> #include <dm/lists.h> diff --git a/drivers/core/of_access.c b/drivers/core/of_access.c index ea3ee8bd63..922e78f99b 100644 --- a/drivers/core/of_access.c +++ b/drivers/core/of_access.c @@ -20,7 +20,9 @@ */ #include <common.h> +#include <log.h> #include <malloc.h> +#include <linux/bug.h> #include <linux/libfdt.h> #include <dm/of_access.h> #include <linux/ctype.h> diff --git a/drivers/core/of_addr.c b/drivers/core/of_addr.c index 4e256d9926..ca34d84922 100644 --- a/drivers/core/of_addr.c +++ b/drivers/core/of_addr.c @@ -7,6 +7,8 @@ */ #include <common.h> +#include <log.h> +#include <linux/bug.h> #include <linux/libfdt.h> #include <dm/of_access.h> #include <dm/of_addr.h> diff --git a/drivers/core/of_extra.c b/drivers/core/of_extra.c index f1f393c359..6420e6ec44 100644 --- a/drivers/core/of_extra.c +++ b/drivers/core/of_extra.c @@ -5,6 +5,7 @@ */ #include <common.h> +#include <log.h> #include <linux/libfdt.h> #include <dm/of_access.h> #include <dm/of_extra.h> diff --git a/drivers/core/ofnode.c b/drivers/core/ofnode.c index e3c42dae5c..c37afa1fe6 100644 --- a/drivers/core/ofnode.c +++ b/drivers/core/ofnode.c @@ -8,6 +8,7 @@ #include <dm.h> #include <fdtdec.h> #include <fdt_support.h> +#include <log.h> #include <malloc.h> #include <linux/libfdt.h> #include <dm/of_access.h> diff --git a/drivers/core/regmap.c b/drivers/core/regmap.c index a974744a61..4a214eff7c 100644 --- a/drivers/core/regmap.c +++ b/drivers/core/regmap.c @@ -7,6 +7,7 @@ #include <common.h> #include <dm.h> #include <errno.h> +#include <log.h> #include <linux/libfdt.h> #include <malloc.h> #include <mapmem.h> diff --git a/drivers/core/root.c b/drivers/core/root.c index 14df16c280..7d257ea887 100644 --- a/drivers/core/root.c +++ b/drivers/core/root.c @@ -9,6 +9,7 @@ #include <common.h> #include <errno.h> #include <fdtdec.h> +#include <log.h> #include <malloc.h> #include <linux/libfdt.h> #include <dm/device.h> diff --git a/drivers/core/syscon-uclass.c b/drivers/core/syscon-uclass.c index 15f0e42a85..b5cd763b6b 100644 --- a/drivers/core/syscon-uclass.c +++ b/drivers/core/syscon-uclass.c @@ -5,6 +5,7 @@ */ #include <common.h> +#include <log.h> #include <syscon.h> #include <dm.h> #include <errno.h> diff --git a/drivers/core/uclass.c b/drivers/core/uclass.c index 6849302936..2ab419cfe4 100644 --- a/drivers/core/uclass.c +++ b/drivers/core/uclass.c @@ -11,6 +11,7 @@ #include <common.h> #include <dm.h> #include <errno.h> +#include <log.h> #include <malloc.h> #include <dm/device.h> #include <dm/device-internal.h> |
