Subversion Repositories HelenOS

Rev

Rev 2128 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2128 Rev 2465
Line 1... Line 1...
1
/*
1
/*
2
 * Copyright (c) 2006 Martin Decky
2
 * Copyright (c) 2007 Michal Kebrt
3
 * All rights reserved.
3
 * All rights reserved.
4
 *
4
 *
5
 * Redistribution and use in source and binary forms, with or without
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions
6
 * modification, are permitted provided that the following conditions
7
 * are met:
7
 * are met:
Line 30... Line 30...
30
 * @brief   HelenOS arm32 arch dependent parts of uspace keyboard handler.
30
 * @brief   HelenOS arm32 arch dependent parts of uspace keyboard handler.
31
 * @ingroup  kbd
31
 * @ingroup  kbd
32
 * @{
32
 * @{
33
 */
33
 */
34
/** @file
34
/** @file
-
 
35
 *  @brief Empty, required by generic Makefile.
35
 */
36
 */
36
 
37
 
37
#include <arch/kbd.h>
-
 
38
#include <ipc/ipc.h>
-
 
39
#include <sysinfo.h>
-
 
40
#include <kbd.h>
-
 
41
#include <keys.h>
-
 
42
 
-
 
43
int kbd_arch_init(void)
-
 
44
{
-
 
45
    return 0;
-
 
46
}
-
 
47
 
-
 
48
 
-
 
49
int kbd_arch_process(keybuffer_t *keybuffer, ipc_call_t *call)
-
 
50
{
-
 
51
    return 1;
-
 
52
}
-
 
53
 
38
 
54
/** @}
39
/** @}
55
 */
40
 */