lkml.org 
[lkml]   [2019]   [Dec]   [8]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 12/12] PCMCIA: remove ifdef 0 block
    Date
    indirect_read16 is similar to indirect_read with the exception that 
    it reads 16 instead of 8 bit.

    Co-developed-by: Lukas Panzer <lukas.panzer@fau.de>
    Signed-off-by: Lukas Panzer <lukas.panzer@fau.de>
    Signed-off-by: Simon Geis <simon.geis@fau.de>

    ---
    drivers/pcmcia/i82092.c | 20 --------------------
    1 file changed, 20 deletions(-)

    diff --git a/drivers/pcmcia/i82092.c b/drivers/pcmcia/i82092.c
    index a2d1e457d931..9024d1d9478e 100644
    --- a/drivers/pcmcia/i82092.c
    +++ b/drivers/pcmcia/i82092.c
    @@ -213,26 +213,6 @@ static unsigned char indirect_read(int socket, unsigned short reg)
    return val;
    }

    -#if 0
    -static unsigned short indirect_read16(int socket, unsigned short reg)
    -{
    - unsigned short int port;
    - unsigned short tmp;
    - unsigned long flags;
    -
    - spin_lock_irqsave(&port_lock, flags);
    - reg = reg + socket * 0x40;
    - port = sockets[socket].io_base;
    - outb(reg, port);
    - tmp = inb(port+1);
    - reg++;
    - outb(reg, port);
    - tmp = tmp | (inb(port+1)<<8);
    - spin_unlock_irqrestore(&port_lock, flags);
    - return tmp;
    -}
    -#endif
    -
    static void indirect_write(int socket, unsigned short reg, unsigned char value)
    {
    unsigned short int port;
    --
    2.20.1
    \
     
     \ /
      Last update: 2019-12-08 17:15    [W:4.419 / U:0.020 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site