]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
include: Add missing headers in a few instances
authorTom Rini <trini@konsulko.com>
Tue, 30 Apr 2024 13:35:28 +0000 (07:35 -0600)
committerTom Rini <trini@konsulko.com>
Mon, 6 May 2024 21:06:33 +0000 (15:06 -0600)
A few headers rely on indirect inclusion of <linux/types.h> or
<linux/kernel.h> so add them directly. In the case of <netdev.h> add a
"struct bd_info;" as well rather than the large header chain to resolve
that.

Signed-off-by: Tom Rini <trini@konsulko.com>
include/mailbox.h
include/netdev.h
include/phy_interface.h
include/u-boot/sha1.h
include/u-boot/sha256.h
include/u-boot/sha512.h

index 323b6c2bc5d8f7983a6b4f5d2564c1bb64bd2f3d..e70266fb61c9455b68c2e32f248631878cf55e1c 100644 (file)
@@ -6,6 +6,8 @@
 #ifndef _MAILBOX_H
 #define _MAILBOX_H
 
+#include <linux/types.h>
+
 /**
  * A mailbox is a hardware mechanism for transferring small fixed-size messages
  * and/or notifications between the CPU on which U-Boot runs and some other
index 2a7f40e5040ee0a88e589f16ad8bdadbd4ec650c..2a06d9a261bbe78e4fa8a8492417cdca805bc3b6 100644 (file)
 
 #ifndef _NETDEV_H_
 #define _NETDEV_H_
+
+#include <linux/types.h>
 #include <phy_interface.h>
 
 struct udevice;
+struct bd_info;
 
 /*
  * Board and CPU-specific initialization functions
index 31be3228c7c4e8a95fb31653f910c415249ca437..b74f4ccd84ad240c08c275c482b1f0f4a75d8d8d 100644 (file)
@@ -11,6 +11,7 @@
 #define _PHY_INTERFACE_H
 
 #include <string.h>
+#include <linux/kernel.h>
 
 typedef enum {
        PHY_INTERFACE_MODE_NA, /* don't touch */
index 09fee594d263fa94e1060cf113f9e603b521b99d..c1e9f67068d4f194b5a15df6f51d580abaf096e1 100644 (file)
@@ -14,6 +14,8 @@
 #ifndef _SHA1_H
 #define _SHA1_H
 
+#include <linux/types.h>
+
 #ifdef __cplusplus
 extern "C" {
 #endif
index 9aa1251789a34f1b824fe0cd9f9c9445f4dde464..a4fe176c0b46a0a2ad86cb404f27b29a715e4864 100644 (file)
@@ -1,6 +1,8 @@
 #ifndef _SHA256_H
 #define _SHA256_H
 
+#include <linux/types.h>
+
 #define SHA256_SUM_LEN 32
 #define SHA256_DER_LEN 19
 
index 516729d7750669bed525de86dea19b9355352a83..90bd96a3f8c2065e36e5f627b1dba3a866cab318 100644 (file)
@@ -1,6 +1,8 @@
 #ifndef _SHA512_H
 #define _SHA512_H
 
+#include <linux/types.h>
+
 #define SHA384_SUM_LEN          48
 #define SHA384_DER_LEN          19
 #define SHA512_SUM_LEN          64