[PATCH] ib: fwts_ioport: fix calling unmatched I/O function in a help function.

Alex Hung alex.hung at canonical.com
Tue Feb 5 04:30:59 UTC 2013


Signed-off-by: Alex Hung <alex.hung at canonical.com>
---
 src/lib/src/fwts_ioport.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/src/fwts_ioport.c b/src/lib/src/fwts_ioport.c
index 5aedc5e..4da6a7a 100644
--- a/src/lib/src/fwts_ioport.c
+++ b/src/lib/src/fwts_ioport.c
@@ -129,7 +129,7 @@ int fwts_outl(uint32_t port, uint32_t value)
 		return FWTS_ERROR;
 
 	signal(SIGSEGV, segv_handler);
-	outw(port, value);
+	outl(port, value);
 	signal(SIGSEGV, SIG_DFL);
 
 	return FWTS_OK;
-- 
1.7.9.5




More information about the fwts-devel mailing list