mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-16 01:44:34 +00:00
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:
parent
0576234460
commit
a37323a2cb
6 changed files with 9 additions and 1 deletions
|
@ -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;
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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;
|
||||||
|
|
||||||
|
|
|
@ -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 */
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Add table
Reference in a new issue