summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Cree <mcree@orcon.net.nz>2009-10-07 18:33:29 -0400
committerPeter Hutterer <peter.hutterer@who-t.net>2009-10-15 13:54:48 +1000
commitfff0b2013ad40c6116e92a9c5e233da4a34e6943 (patch)
tree7d829e52d5aa6060cc1522ce3fa2ce1c880302a4
parenta08186fe59f003fc9e1edceb1d95d2e316766e2a (diff)
Fix undefined symbols on alpha
Signed-off-by: Matt Turner <mattst88@gmail.com> (cherry picked from commit 34eddbbb73bb16395dba0818247909c1b4bee4c2)
-rw-r--r--hw/xfree86/os-support/linux/lnx_axp.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/hw/xfree86/os-support/linux/lnx_axp.c b/hw/xfree86/os-support/linux/lnx_axp.c
index 8571c048b..34129ccbb 100644
--- a/hw/xfree86/os-support/linux/lnx_axp.c
+++ b/hw/xfree86/os-support/linux/lnx_axp.c
@@ -125,12 +125,12 @@ extern unsigned int _dense_inb(unsigned long);
125extern unsigned int _dense_inw(unsigned long); 125extern unsigned int _dense_inw(unsigned long);
126extern unsigned int _dense_inl(unsigned long); 126extern unsigned int _dense_inl(unsigned long);
127 127
128void (*_alpha_outb)(char, unsigned long) = _outb; 128_X_EXPORT void (*_alpha_outb)(char, unsigned long) = _outb;
129void (*_alpha_outw)(short, unsigned long) = _outw; 129_X_EXPORT void (*_alpha_outw)(short, unsigned long) = _outw;
130void (*_alpha_outl)(int, unsigned long) = _outl; 130_X_EXPORT void (*_alpha_outl)(int, unsigned long) = _outl;
131unsigned int (*_alpha_inb)(unsigned long) = _inb; 131_X_EXPORT unsigned int (*_alpha_inb)(unsigned long) = _inb;
132unsigned int (*_alpha_inw)(unsigned long) = _inw; 132_X_EXPORT unsigned int (*_alpha_inw)(unsigned long) = _inw;
133unsigned int (*_alpha_inl)(unsigned long) = _inl; 133_X_EXPORT unsigned int (*_alpha_inl)(unsigned long) = _inl;
134 134
135static long _alpha_iobase_query(unsigned, int, int, int); 135static long _alpha_iobase_query(unsigned, int, int, int);
136long (*_iobase)(unsigned, int, int, int) = _alpha_iobase_query; 136long (*_iobase)(unsigned, int, int, int) = _alpha_iobase_query;