]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
x86: Add defines for ins/outs functions
authorIgor Prusov <ivprusov@salutedevices.com>
Tue, 14 Nov 2023 11:02:46 +0000 (14:02 +0300)
committerTom Rini <trini@konsulko.com>
Tue, 28 Nov 2023 21:19:06 +0000 (16:19 -0500)
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>
arch/x86/include/asm/io.h

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