diff options
Diffstat (limited to 'hw/xfree86/os-support/shared/ia64Pci.c')
-rw-r--r-- | hw/xfree86/os-support/shared/ia64Pci.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/hw/xfree86/os-support/shared/ia64Pci.c b/hw/xfree86/os-support/shared/ia64Pci.c index ff4312bf5..1fe119dcd 100644 --- a/hw/xfree86/os-support/shared/ia64Pci.c +++ b/hw/xfree86/os-support/shared/ia64Pci.c @@ -66,7 +66,7 @@ static int ia64_port_to_fd(unsigned long port) return (port >> 24) & 0xffffffff; } -void outb(unsigned long port, unsigned char val) +_X_EXPORT void outb(unsigned long port, unsigned char val) { int fd = ia64_port_to_fd(port); @@ -86,7 +86,7 @@ void outb(unsigned long port, unsigned char val) return; } -void outw(unsigned long port, unsigned short val) +_X_EXPORT void outw(unsigned long port, unsigned short val) { int fd = ia64_port_to_fd(port); @@ -106,7 +106,7 @@ void outw(unsigned long port, unsigned short val) return; } -void outl(unsigned long port, unsigned int val) +_X_EXPORT void outl(unsigned long port, unsigned int val) { int fd = ia64_port_to_fd(port); @@ -126,7 +126,7 @@ void outl(unsigned long port, unsigned int val) return; } -unsigned int inb(unsigned long port) +_X_EXPORT unsigned int inb(unsigned long port) { int fd = ia64_port_to_fd(port); unsigned char val; @@ -148,7 +148,7 @@ unsigned int inb(unsigned long port) return val; } -unsigned int inw(unsigned long port) +_X_EXPORT unsigned int inw(unsigned long port) { int fd = ia64_port_to_fd(port); unsigned short val; @@ -170,7 +170,7 @@ unsigned int inw(unsigned long port) return val; } -unsigned int inl(unsigned long port) +_X_EXPORT unsigned int inl(unsigned long port) { int fd = ia64_port_to_fd(port); unsigned int val; |