diff options
author | Tom Rini <trini@konsulko.com> | 2023-12-14 13:16:58 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-12-21 08:54:37 -0500 |
commit | 467382ca03758e4f3f13107e3a83669e93a7461e (patch) | |
tree | c8b6c0f66052e329cc57451c9e0fe2d24bc3407d /lib/acpi/base.c | |
parent | 1e8ce11a0b94bb2fcf55590eeffa9c85886b89bc (diff) |
lib: Remove <common.h> inclusion from these files
After some header file cleanups to add missing include files, remove
common.h from all files in the lib directory. This primarily means just
dropping the line but in a few cases we need to add in other header
files now.
Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'lib/acpi/base.c')
-rw-r--r-- | lib/acpi/base.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/acpi/base.c b/lib/acpi/base.c index 26bf0cb8d30..07b53e0c561 100644 --- a/lib/acpi/base.c +++ b/lib/acpi/base.c @@ -7,12 +7,13 @@ #define LOG_CATEGORY LOGC_ACPI -#include <common.h> #include <acpi/acpi_table.h> #include <dm/acpi.h> #include <mapmem.h> #include <tables_csum.h> #include <linux/sizes.h> +#include <linux/errno.h> +#include <linux/string.h> void acpi_write_rsdp(struct acpi_rsdp *rsdp, struct acpi_rsdt *rsdt, struct acpi_xsdt *xsdt) |