mirror of
https://xff.cz/git/u-boot/
synced 2025-09-04 02:02:08 +02:00
16 lines
285 B
C
Executable File
16 lines
285 B
C
Executable File
|
|
#ifndef _FIP_TYPE_H_H_
|
|
#define _FIP_TYPE_H_H_
|
|
|
|
#include<asm/types.h>
|
|
|
|
//for aa64 BL3-1
|
|
typedef u8 uint8_t;
|
|
typedef u16 uint16_t;
|
|
typedef u32 uint32_t;
|
|
typedef u64 uint64_t;
|
|
typedef u64 uintptr_t;
|
|
typedef u64 size_t;
|
|
|
|
#endif
|