include: Add missing <linux/types.h>

These files have many "Linux" style types in them, add <linux/types.h>

Signed-off-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
Tom Rini 2024-05-01 19:30:24 -06:00
parent 0576234460
commit a37323a2cb
6 changed files with 9 additions and 1 deletions

View file

@ -6,6 +6,8 @@
#ifndef _DISPLAY_H #ifndef _DISPLAY_H
#define _DISPLAY_H #define _DISPLAY_H
#include <linux/types.h>
struct udevice; struct udevice;
struct display_timing; struct display_timing;

View file

@ -11,6 +11,8 @@
#ifndef _FUSE_H_ #ifndef _FUSE_H_
#define _FUSE_H_ #define _FUSE_H_
#include <linux/types.h>
/* /*
* Read/Sense/Program/Override interface: * Read/Sense/Program/Override interface:
* bank: Fuse bank * bank: Fuse bank

View file

@ -7,6 +7,7 @@
#define __I2C_EEPROM #define __I2C_EEPROM
#include <linux/errno.h> #include <linux/errno.h>
#include <linux/types.h>
struct udevice; struct udevice;

View file

@ -10,6 +10,7 @@
#ifndef __LIBATA_H__ #ifndef __LIBATA_H__
#define __LIBATA_H__ #define __LIBATA_H__
#include <linux/types.h>
enum { enum {
/* various global constants */ /* various global constants */

View file

@ -7,6 +7,8 @@
#ifndef __RAM_H #ifndef __RAM_H
#define __RAM_H #define __RAM_H
#include <linux/types.h>
struct udevice; struct udevice;
struct ram_info { struct ram_info {

View file

@ -19,7 +19,7 @@
* implementation of the driver you are using. * implementation of the driver you are using.
*/ */
#include <asm/types.h> #include <linux/types.h>
#include <asm/ptrace.h> #include <asm/ptrace.h>
struct udevice; struct udevice;