lkml.org 
[lkml]   [2012]   [Aug]   [21]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH] apple-gmux: Fix port address calculation in gmux_pio_write32()
    Date
    This function fails to add the start address of the gmux I/O range to
    the requested port address and thus writes to the wrong location.

    Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
    ---
    drivers/platform/x86/apple-gmux.c | 2 +-
    1 file changed, 1 insertion(+), 1 deletion(-)

    diff --git a/drivers/platform/x86/apple-gmux.c b/drivers/platform/x86/apple-gmux.c
    index dfb1a92..ee21056 100644
    --- a/drivers/platform/x86/apple-gmux.c
    +++ b/drivers/platform/x86/apple-gmux.c
    @@ -101,7 +101,7 @@ static void gmux_pio_write32(struct apple_gmux_data *gmux_data, int port,

    for (i = 0; i < 4; i++) {
    tmpval = (val >> (i * 8)) & 0xff;
    - outb(tmpval, port + i);
    + outb(tmpval, gmux_data->iostart + port + i);
    }
    }

    --
    1.7.9.5


    \
     
     \ /
      Last update: 2012-08-22 05:21    [W:2.784 / U:0.016 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site