[PATCH] ib: fwts_ioport: fix calling unmatched I/O function in a help function.
Colin Ian King
colin.king at canonical.com
Wed Feb 13 09:37:44 UTC 2013
On 05/02/13 04:30, Alex Hung wrote:
> 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;
>
Keng-Yu, can you wiggle the patch before applying it so the title is:
lib: fwts_ioport: fix calling unmatched I/O function in a help function.
Colin
More information about the fwts-devel
mailing list