From patchwork Tue Feb 5 04:30:59 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alex Hung X-Patchwork-Id: 218155 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from chlorine.canonical.com (chlorine.canonical.com [91.189.94.204]) by ozlabs.org (Postfix) with ESMTP id 035892C02A1 for ; Tue, 5 Feb 2013 15:31:08 +1100 (EST) Received: from localhost ([127.0.0.1] helo=chlorine.canonical.com) by chlorine.canonical.com with esmtp (Exim 4.71) (envelope-from ) id 1U2aBW-0006Px-0d; Tue, 05 Feb 2013 04:31:06 +0000 Received: from youngberry.canonical.com ([91.189.89.112]) by chlorine.canonical.com with esmtp (Exim 4.71) (envelope-from ) id 1U2aBU-0006Ps-8G for fwts-devel@lists.ubuntu.com; Tue, 05 Feb 2013 04:31:04 +0000 Received: from cpe-75-83-241-188.socal.res.rr.com ([75.83.241.188] helo=canonical.com) by youngberry.canonical.com with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1U2aBT-0002ET-SF; Tue, 05 Feb 2013 04:31:04 +0000 From: Alex Hung To: fwts-devel@lists.ubuntu.com Subject: [PATCH] ib: fwts_ioport: fix calling unmatched I/O function in a help function. Date: Mon, 4 Feb 2013 20:30:59 -0800 Message-Id: <1360038659-3426-1-git-send-email-alex.hung@canonical.com> X-Mailer: git-send-email 1.7.9.5 X-BeenThere: fwts-devel@lists.ubuntu.com X-Mailman-Version: 2.1.13 Precedence: list List-Id: Firmware Test Suite Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: fwts-devel-bounces@lists.ubuntu.com Errors-To: fwts-devel-bounces@lists.ubuntu.com Signed-off-by: Alex Hung Acked-by: Keng-Yu Lin Acked-by: Ivan Hu --- 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;