diff options
author | Guillermo Ramos | 2011-09-24 18:13:15 +0200 |
---|---|---|
committer | Guillermo Ramos | 2011-09-24 18:13:15 +0200 |
commit | 55a2212feb5042e65fbf0ed8891c0cab55479621 (patch) | |
tree | 66bb8c7c10305b11d445a4672779f9c7824fbf07 /evspy-core.h | |
parent | 7a3fcd9d332f1f2e3e6f021b2930e148ca093c91 (diff) | |
download | evspy-55a2212feb5042e65fbf0ed8891c0cab55479621.tar.gz |
Renamed map ADT to kmap
Diffstat (limited to 'evspy-core.h')
-rw-r--r-- | evspy-core.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/evspy-core.h b/evspy-core.h index eec489c..dfc0b2e 100644 --- a/evspy-core.h +++ b/evspy-core.h @@ -30,7 +30,7 @@ #include <linux/stat.h> #include <linux/string.h> #include <asm/page.h> -#include "khm/khm.h" +#include "kmap/kmap.h" // Keyboard layouts #define EVS_KLAY_EN 0 @@ -130,7 +130,7 @@ } else if (is_ascii(c) || !shift_on) { \ __c = map[c]; \ } else { \ - if ((__vp = khm_get(shm, (c)))) \ + if ((__vp = kmap_get(skm, (c)))) \ __c = *(char *)__vp; \ else \ __c = map[c]; \ @@ -146,7 +146,7 @@ ({ \ void *__vp; \ char __c; \ - __vp = khm_get(ahm, (c)); \ + __vp = kmap_get(akm, (c)); \ if (__vp) __c = *(char *)__vp; \ else __c = map[c]; \ __c; \ |