Changeset 9446f39 in mainline for uspace/srv/kbd/port/gxemul.c


Ignore:
Timestamp:
2009-02-21T19:22:54Z (15 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
bffa876e
Parents:
00eace3
Message:

Unreak arm32 (as far as breakage introduced by 3947 goes) and
adapt the uspace GXemul kbd IRQ driver to use the new pseudo code.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/kbd/port/gxemul.c

    r00eace3 r9446f39  
    4343static irq_cmd_t gxemul_cmds[] = {
    4444        {
    45                 CMD_MEM_READ_1,
    46                 (void *) 0,
    47                 0,
    48                 2
     45                .cmd = CMD_PIO_READ_8,
     46                .addr = (void *) 0,     /* will be patched in run-time */
     47                .dstarg = 2,
     48        },
     49        {
     50                .cmd = CMD_ACCEPT
    4951        }
    5052};
    5153
    5254static irq_code_t gxemul_kbd = {
    53         1,
     55        sizeof(gxemul_cmds) / sizeof(irq_cmd_t),
    5456        gxemul_cmds
    5557};
Note: See TracChangeset for help on using the changeset viewer.