Changeset 5f88293 in mainline for uspace/srv/hid/console/console.c


Ignore:
Timestamp:
2011-06-12T15:44:38Z (14 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
60e5a856
Parents:
af897ff0
Message:

Rename 'kbd' server to 'input' server.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hid/console/console.c

    raf897ff0 r5f88293  
    3434
    3535#include <libc.h>
    36 #include <ipc/kbd.h>
     36#include <ipc/input.h>
    3737#include <io/keycode.h>
    3838#include <ipc/mouse.h>
     
    157157static void kbd_yield(void)
    158158{
    159         async_obsolete_req_0_0(kbd_phone, KBD_YIELD);
     159        async_obsolete_req_0_0(kbd_phone, INPUT_YIELD);
    160160}
    161161
    162162static void kbd_reclaim(void)
    163163{
    164         async_obsolete_req_0_0(kbd_phone, KBD_RECLAIM);
     164        async_obsolete_req_0_0(kbd_phone, INPUT_RECLAIM);
    165165}
    166166
     
    444444               
    445445                switch (IPC_GET_IMETHOD(call)) {
    446                 case KBD_EVENT:
     446                case INPUT_EVENT:
    447447                        /* Got event from keyboard driver. */
    448448                        retval = 0;
Note: See TracChangeset for help on using the changeset viewer.