summaryrefslogtreecommitdiffstats
path: root/include/asm-sh/keyboard.h
blob: 9a64c5113c449dde76fd6b1eb9be9e24ba13f1ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#ifndef	__ASM_SH_KEYBOARD_H
#define	__ASM_SH_KEYBOARD_H
/*
 *	$Id: keyboard.h,v 1.1 2000/06/10 21:45:48 yaegashi Exp $
 */
#include <linux/config.h>

static __inline__ int kbd_setkeycode(unsigned int scancode,
				     unsigned int keycode)
{
    return -EOPNOTSUPP;
}

static __inline__ int kbd_getkeycode(unsigned int scancode)
{
    return scancode > 127 ? -EINVAL : scancode;
}

static __inline__ int kbd_translate(unsigned char scancode,
				    unsigned char *keycode, char raw_mode)
{
    *keycode = scancode;
    return 1;
}

static __inline__ char kbd_unexpected_up(unsigned char keycode)
{
    return 0200;
}

static __inline__ void kbd_leds(unsigned char leds)
{
}

#ifdef CONFIG_SH_HP600
void __init hp600_kbd_init_hw(void);
#define kbd_init_hw hp600_kbd_init_hw
#else
static __inline__ void kbd_init_hw(void)
{
}
#endif

#endif