Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 548312 | Differences between
and this patch

Collapse All | Expand All

(-)io.h.ORIG (-1 / +1 lines)
Lines 55-61 Link Here
55
__IN1(s##c_p) __IN2(s,s1,"") : "=a" (_v) : "id" (port) ,##i ); SLOW_DOWN_IO; return _v; }
55
__IN1(s##c_p) __IN2(s,s1,"") : "=a" (_v) : "id" (port) ,##i ); SLOW_DOWN_IO; return _v; }
56
56
57
#define __OUTS(s) \
57
#define __OUTS(s) \
58
extern inline void outs##s(unsigned short port, const void * addr, unsigned long count) \
58
static inline void outs##s(unsigned short port, const void * addr, unsigned long count) \
59
{ __asm__ __volatile__ ("cld ; rep ; outs" #s \
59
{ __asm__ __volatile__ ("cld ; rep ; outs" #s \
60
: "=S" (addr), "=c" (count) : "d" (port),"0" (addr),"1" (count)); }
60
: "=S" (addr), "=c" (count) : "d" (port),"0" (addr),"1" (count)); }
61
61
(-)lib.c.ORIG (-2 / +2 lines)
Lines 33-39 Link Here
33
        int keycode;
33
        int keycode;
34
};
34
};
35
35
36
inline void reboot(void)
36
void reboot(void)
37
{
37
{
38
	
38
	
39
	/* tell the BIOS to do a cold start */
39
	/* tell the BIOS to do a cold start */
Lines 1196-1199 Link Here
1196
		   return;
1196
		   return;
1197
		}
1197
		}
1198
	}
1198
	}
1199
}
1199
}

Return to bug 548312