diff options
author | Tom Rini <trini@konsulko.com> | 2024-04-27 08:11:01 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-05-06 15:05:04 -0600 |
commit | c93cc8ed4166e0486d5c09d952695662708cd72c (patch) | |
tree | 763b2bbfaab08de6bf2671e8ee815c15f8bcfc37 /disk/part_dos.c | |
parent | a79fc7a79cc9d4f7a46b19a4891484ac1e9ef599 (diff) | |
download | u-boot-c93cc8ed4166e0486d5c09d952695662708cd72c.tar.gz |
part: Remove <common.h> and add needed includes
Remove <common.h> from all "part/" files and when needed add
missing include files directly.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'disk/part_dos.c')
-rw-r--r-- | disk/part_dos.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/disk/part_dos.c b/disk/part_dos.c index 567ead7511d..e6b5295e0ec 100644 --- a/disk/part_dos.c +++ b/disk/part_dos.c @@ -13,11 +13,11 @@ * http://developer.apple.com/techpubs/mac/Devices/Devices-126.html#MARKER-14-92 */ -#include <common.h> #include <blk.h> #include <command.h> #include <ide.h> #include <memalign.h> +#include <vsprintf.h> #include <asm/unaligned.h> #include <linux/compiler.h> #include "part_dos.h" |