wok view memtest/stuff/memtest86+-5.01-io.patch @ rev 24347

Up expat (2.4.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Feb 02 09:41:22 2022 +0000 (2022-02-02)
parents d0ddd1e74d41
children
line source
1 --- memtest86+-5.01/io.h 2013-08-10 02:01:58.000000000 +0000
2 +++ memtest86+-5.01/io.h 2014-01-08 01:29:12.404465515 +0000
3 @@ -31,7 +31,7 @@
4 */
6 #define __OUT1(s,x) \
7 -extern inline void __out##s(unsigned x value, unsigned short port) {
8 +static inline void __out##s(unsigned x value, unsigned short port) {
10 #define __OUT2(s,s1,s2) \
11 __asm__ __volatile__ ("out" #s " %" s1 "0,%" s2 "1"
12 @@ -43,7 +43,7 @@
13 __OUT1(s##c_p,x) __OUT2(s,s1,"") : : "a" (value), "id" (port)); SLOW_DOWN_IO; }
15 #define __IN1(s) \
16 -extern inline RETURN_TYPE __in##s(unsigned short port) { RETURN_TYPE _v;
17 +static inline RETURN_TYPE __in##s(unsigned short port) { RETURN_TYPE _v;
19 #define __IN2(s,s1,s2) \
20 __asm__ __volatile__ ("in" #s " %" s2 "1,%" s1 "0"