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/physmem.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/physmem.c')
-rw-r--r-- | lib/physmem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/physmem.c b/lib/physmem.c index fc90ce4d7c..562c74d37f 100644 --- a/lib/physmem.c +++ b/lib/physmem.c @@ -8,11 +8,11 @@ * Software Foundation. */ -#include <common.h> #include <log.h> #include <mapmem.h> #include <physmem.h> #include <linux/compiler.h> +#include <linux/string.h> phys_addr_t __weak arch_phys_memset(phys_addr_t s, int c, phys_size_t n) { |