mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
xtensa: io.h: Add defines for ins/outs functions
Add defines for {in,out}s{b,w,l}() functions to make asm-generic/io.h aware of them. Signed-off-by: Igor Prusov <ivprusov@salutedevices.com>
This commit is contained in:
parent
0c39bbd8c9
commit
02585ad9e5
1 changed files with 6 additions and 0 deletions
|
@ -76,6 +76,12 @@ void insl(unsigned long port, void *dst, unsigned long count);
|
|||
void outsb(unsigned long port, const void *src, unsigned long count);
|
||||
void outsw(unsigned long port, const void *src, unsigned long count);
|
||||
void outsl(unsigned long port, const void *src, unsigned long count);
|
||||
#define insb insb
|
||||
#define insw insw
|
||||
#define insl insl
|
||||
#define outsb outsb
|
||||
#define outsw outsw
|
||||
#define outsl outsl
|
||||
|
||||
#define IO_SPACE_LIMIT ~0
|
||||
|
||||
|
|
Loading…
Reference in a new issue