Changeset 0c33687a in mainline for uspace/srv/kbd/port/msim.c


Ignore:
Timestamp:
2009-02-21T20:51:30Z (16 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
e78136a
Parents:
21df2e5
Message:

Unbreak mips32 candidate.

File:
1 edited

Legend:

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

    r21df2e5 r0c33687a  
    4141#include <kbd.h>
    4242
    43 irq_cmd_t msim_cmds[1] = {
    44         { CMD_MEM_READ_1, (void *) 0, 0, 2 }
     43irq_cmd_t msim_cmds[] = {
     44        {
     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
     51        }
     52       
    4553};
    4654
    4755irq_code_t msim_kbd = {
    48         1,
     56        sizeof(msim_cmds) / sizeof(irq_cmd_t),
    4957        msim_cmds
    5058};
Note: See TracChangeset for help on using the changeset viewer.