]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
api: Remove <common.h> and add needed includes
authorTom Rini <trini@konsulko.com>
Thu, 2 May 2024 01:31:37 +0000 (19:31 -0600)
committerTom Rini <trini@konsulko.com>
Tue, 7 May 2024 14:00:57 +0000 (08:00 -0600)
Remove <common.h> from here and when needed add missing include files
directly.

Signed-off-by: Tom Rini <trini@konsulko.com>
api/api.c
api/api_display.c
api/api_net.c
api/api_storage.c
examples/api/demo.c
examples/api/glue.c
examples/api/libgenwrap.c
examples/standalone/atmel_df_pow2.c
examples/standalone/sched.c
examples/standalone/stubs.c
include/api_public.h

index 89003c161c2fbf58cf147a248b7028f38d0f5dea..d22132f62fe336dee9da10c4f93bd5ed9a687657 100644 (file)
--- a/api/api.c
+++ b/api/api.c
@@ -7,11 +7,13 @@
 
 #include <config.h>
 #include <command.h>
-#include <common.h>
 #include <env.h>
 #include <malloc.h>
+#include <time.h>
 #include <env_internal.h>
+#include <vsprintf.h>
 #include <linux/delay.h>
+#include <linux/errno.h>
 #include <linux/types.h>
 #include <api_public.h>
 #include <u-boot/crc.h>
index 2e877a85d1474b3054ca55fc56b651c625c4dbe3..8fd078c8c4aa5f5ee57feed64802f64106b1e55b 100644 (file)
@@ -3,9 +3,9 @@
  * Copyright (c) 2011 The Chromium OS Authors.
  */
 
-#include <common.h>
 #include <api_public.h>
 #include <log.h>
+#include <linux/types.h>
 
 /* TODO(clchiou): add support of video device */
 
index 7515c26e8b44edd3a4cc2e8184776cc97a4612c5..264ff530563b913a2db352176901c00f99c4f01c 100644 (file)
@@ -6,7 +6,6 @@
  */
 
 #include <config.h>
-#include <common.h>
 #include <net.h>
 #include <linux/types.h>
 #include <api_public.h>
index 78becbe39fb6546656f62490172da0c1205e0df0..3d2d9d6ef4c181cabfc7df3e1d843497226f83c6 100644 (file)
@@ -6,10 +6,10 @@
  */
 
 #include <config.h>
-#include <common.h>
 #include <api_public.h>
 #include <part.h>
 #include <scsi.h>
+#include <linux/types.h>
 
 #if defined(CONFIG_CMD_USB) && defined(CONFIG_USB_STORAGE)
 #include <usb.h>
index d586174ce8c92a820f45f6153e9dcc0b879e93bf..677d13b307a13e7701632abcbb5f0f926528b410 100644 (file)
@@ -5,7 +5,7 @@
  * Written by: Rafal Jaworowski <raj@semihalf.com>
  */
 
-#include <common.h>
+#include <stdio.h>
 #include <env.h>
 #include <linux/types.h>
 #include <api_public.h>
index 075d307ae2611090fa4d0cb5ae71c019db4b5f55..08c21a8cb9c1da23eafeb02d93953a532e84ed00 100644 (file)
@@ -3,7 +3,6 @@
  * (C) Copyright 2007-2008 Semihalf, Rafal Jaworowski <raj@semihalf.com>
  */
 
-#include <common.h>
 #include <env.h>
 #include <linux/types.h>
 #include <api_public.h>
index 3aa222866ff50bbf5f6f37866348e282b30659af..bfd88e100d6ed7d5029dfa42028a5f3e4b3f1938 100644 (file)
@@ -9,7 +9,6 @@
  * existing code e.g. operations on strings and similar.
  */
 
-#include <common.h>
 #include <command.h>
 #include <hang.h>
 #include <linux/delay.h>
index dcb25da94986dfb501b53d0c018658293276356d..ed0d7aeaadca98709c82d9d1cfc3f62b3caba593 100644 (file)
@@ -6,7 +6,6 @@
  * Licensed under the 2-clause BSD.
  */
 
-#include <common.h>
 #include <exports.h>
 #include <spi.h>
 #include <linux/delay.h>
index 1c529607132291effc308c24a55061c409181194..d507163f6f3447369e2428728c61c7797ce1a09c 100644 (file)
@@ -1,6 +1,5 @@
 // SPDX-License-Identifier: GPL-2.0+
 
-#include <common.h>
 #include <exports.h>
 
 /*
index 65115570e8eb537892a6e4dfe375b03325f42ad1..04e8acb8abe9e8554f4bac5b0b4a0538f0751845 100644 (file)
@@ -1,4 +1,3 @@
-#include <common.h>
 #include <exports.h>
 #include <linux/compiler.h>
 
index 5a4465ea893d97aadafca12cf05f6a4cfe4800f8..e89572c00a4b02607110a41fc6766c4802680291 100644 (file)
@@ -8,6 +8,8 @@
 #ifndef _API_PUBLIC_H_
 #define _API_PUBLIC_H_
 
+#include <linux/types.h>
+
 #define API_EINVAL             1       /* invalid argument(s)  */
 #define API_ENODEV             2       /* no device            */
 #define API_ENOMEM             3       /* no memory            */