Changeset 8bb9540 in mainline for uspace/drv/char/xtkbd/xtkbd.c


Ignore:
Timestamp:
2012-01-01T22:01:47Z (13 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1ff1ee1
Parents:
1dea6d7
Message:

i8042, ps2mouse, xtkbd: Drop optical separators.

Requested on ML.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/char/xtkbd/xtkbd.c

    r1dea6d7 r8bb9540  
    152152        [0x53] = KC_NPERIOD
    153153};
    154 /*----------------------------------------------------------------------------*/
     154
    155155#define SCANCODE_SET_EXTENDED 0xe0
    156156/** Scancode set 1 extended codes table */
     
    177177        [0x1c] = KC_NENTER
    178178};
    179 /*----------------------------------------------------------------------------*/
     179
    180180static int polling(void *);
    181181static void default_connection_handler(ddf_fun_t *, ipc_callid_t, ipc_call_t *);
    182 /*----------------------------------------------------------------------------*/
     182
    183183/** Keyboard function ops. */
    184184static ddf_dev_ops_t kbd_ops = {
    185185        .default_handler = default_connection_handler
    186186};
    187 /*----------------------------------------------------------------------------*/
     187
    188188/** Initialize keyboard driver structure.
    189189 * @param kbd Keyboard driver structure to initialize.
     
    238238        return EOK;
    239239}
    240 /*----------------------------------------------------------------------------*/
     240
    241241/** Get data and parse scancodes.
    242242 * @param arg Pointer to xt_kbd_t structure.
     
    290290        }
    291291}
    292 /*----------------------------------------------------------------------------*/
     292
    293293/** Default handler for IPC methods not handled by DDF.
    294294 *
Note: See TracChangeset for help on using the changeset viewer.