x86: Add defines for ins/outs functions

Add defines for {in,out}s{b,w,l}() functions to make sure that
they will be used by asm-generic/io.h

Signed-off-by: Igor Prusov <ivprusov@salutedevices.com>
This commit is contained in:
Igor Prusov 2023-11-14 14:02:46 +03:00 committed by Tom Rini
parent 4f7a3463c4
commit 93e1552cb1

View file

@ -202,10 +202,16 @@ __OUT(l,,int)
__INS(b) __INS(b)
__INS(w) __INS(w)
__INS(l) __INS(l)
#define insb insb
#define insw insw
#define insl insl
__OUTS(b) __OUTS(b)
__OUTS(w) __OUTS(w)
__OUTS(l) __OUTS(l)
#define outsb outsb
#define outsw outsw
#define outsl outsl
/* IO space accessors */ /* IO space accessors */
#define clrio(type, addr, clear) \ #define clrio(type, addr, clear) \