aboutsummaryrefslogtreecommitdiff
path: root/src/superio/winbond/w83627thg/early_serial.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/superio/winbond/w83627thg/early_serial.c')
-rw-r--r--src/superio/winbond/w83627thg/early_serial.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/superio/winbond/w83627thg/early_serial.c b/src/superio/winbond/w83627thg/early_serial.c
index 8ba1a308ae..cc84738e49 100644
--- a/src/superio/winbond/w83627thg/early_serial.c
+++ b/src/superio/winbond/w83627thg/early_serial.c
@@ -21,22 +21,23 @@
*/
#include <arch/io.h>
+#include <device/pnp.h>
#include "w83627thg.h"
-static void pnp_enter_ext_func_mode(device_t dev)
+void pnp_enter_ext_func_mode(device_t dev)
{
u16 port = dev >> 8;
outb(0x87, port);
outb(0x87, port);
}
-static void pnp_exit_ext_func_mode(device_t dev)
+void pnp_exit_ext_func_mode(device_t dev)
{
u16 port = dev >> 8;
outb(0xaa, port);
}
-static void inline w83627thg_enable_serial(device_t dev, u16 iobase)
+void w83627thg_enable_serial(device_t dev, u16 iobase)
{
pnp_enter_ext_func_mode(dev);
pnp_set_logical_device(dev);