File: sunkbdmap.c

package info (click to toggle)
kernel-image-2.4.18-hppa 62.3
  • links: PTS
  • area: main
  • in suites: woody
  • size: 156,012 kB
  • ctags: 448,723
  • sloc: ansic: 2,586,445; asm: 145,047; makefile: 8,574; sh: 3,097; perl: 2,578; yacc: 1,177; tcl: 577; lex: 352; awk: 251; lisp: 218; sed: 72
file content (33 lines) | stat: -rw-r--r-- 872 bytes parent folder | download | duplicates (18)
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

/* $Id: sunkbdmap.c,v 1.1 1997/09/07 15:40:27 ecd Exp $
 * sunkbdmap.c: Wrapper around sunkeymap.c to change table names.
 *
 * Copyright (C) 1997  Eddie C. Dost  (ecd@skynet.be)
 */

#include <linux/config.h>

#ifdef CONFIG_PCI

#define func_buf			sun_func_buf
#define func_table			sun_func_table
#define funcbufsize			sun_funcbufsize
#define funcbufleft			sun_funcbufleft
#define funcbufptr			sun_funcbufptr
#define accent_table			sun_accent_table
#define accent_table_size		sun_accent_table_size

#define key_maps			sun_key_maps
#define keymap_count			sun_keymap_count

#define plain_map			sun_plain_map
#define shift_map			sun_shift_map
#define ctrl_map			sun_ctrl_map
#define alt_map				sun_alt_map
#define altgr_map			sun_altgr_map
#define shift_ctrl_map			sun_shift_ctrl_map
#define ctrl_alt_map			sun_ctrl_alt_map

#endif /* CONFIG_PCI */

#include "sunkeymap.c"