Changeset c0699467 in mainline for uspace/srv/hid


Ignore:
Timestamp:
2011-08-09T18:08:23Z (14 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b538ca5c
Parents:
3666d386
Message:

do not provide general access to kernel headers from uspace, only allow specific headers to be accessed or shared
externalize headers which serve as kernel/uspace API/ABI into a special tree

Location:
uspace/srv/hid
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hid/fb/ega.c

    r3666d386 rc0699467  
    5656
    5757// FIXME: remove this header
    58 #include <kernel/ipc/ipc_methods.h>
     58#include <abi/ipc/methods.h>
    5959
    6060#define MAX_SAVED_SCREENS  256
  • uspace/srv/hid/fb/fb.c

    r3666d386 rc0699467  
    4949#include <ipc/ns.h>
    5050#include <ipc/services.h>
    51 #include <kernel/errno.h>
    52 #include <kernel/genarch/fb/visuals.h>
     51#include <errno.h>
     52#include <abi/fb/visuals.h>
    5353#include <io/color.h>
    5454#include <io/style.h>
     
    6767
    6868// FIXME: remove this header
    69 #include <kernel/ipc/ipc_methods.h>
     69#include <abi/ipc/methods.h>
    7070
    7171#define DEFAULT_BGCOLOR  0xf0f0f0
  • uspace/srv/hid/fb/serial_console.c

    r3666d386 rc0699467  
    5353
    5454// FIXME: remove this header
    55 #include <kernel/ipc/ipc_methods.h>
     55#include <abi/ipc/methods.h>
    5656
    5757#define MAX_CONTROL 20
  • uspace/srv/hid/input/generic/input.c

    r3666d386 rc0699467  
    6363
    6464// FIXME: remove this header
    65 #include <kernel/ipc/ipc_methods.h>
     65#include <abi/ipc/methods.h>
    6666
    6767/* In microseconds */
  • uspace/srv/hid/s3c24xx_ts/s3c24xx_ts.c

    r3666d386 rc0699467  
    5454
    5555// FIXME: remove this header
    56 #include <kernel/ipc/ipc_methods.h>
     56#include <abi/ipc/methods.h>
    5757
    5858#define NAME "s3c24ser"
Note: See TracChangeset for help on using the changeset viewer.