public inbox for kbd@lists.linux.dev
 help / color / mirror / Atom feed
* [kbd] [PATCH] libkeymap: fix kmap on big-endian machines
@ 2014-03-14 23:32 Aaro Koskinen
  2014-03-15 11:08 ` Alexey Gladkov
  0 siblings, 1 reply; 2+ messages in thread
From: Aaro Koskinen @ 2014-03-14 23:32 UTC (permalink / raw)
  To: Alexey Gladkov, kbd; +Cc: Aaro Koskinen

Currently "loadkeys" does not work properly (no keys are ever changed)
on big-endian machines (e.g. SPARC and other classic hardware)
due to incorrect typing. The patch fixes this.

Signed-off-by: Aaro Koskinen <aaro.koskinen@iki.fi>
---
 src/libkeymap/kmap.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/libkeymap/kmap.c b/src/libkeymap/kmap.c
index e529136..85a3bb3 100644
--- a/src/libkeymap/kmap.c
+++ b/src/libkeymap/kmap.c
@@ -37,7 +37,7 @@ int
 lk_key_exists(struct lk_ctx *ctx, unsigned int k_table, unsigned int k_index)
 {
 	struct lk_array *map;
-	u_short *key;
+	unsigned int *key;
 
 	map = lk_array_get_ptr(ctx->keymap, k_table);
 	if (!map) {
-- 
1.9.0



^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2014-03-15 11:08 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-14 23:32 [kbd] [PATCH] libkeymap: fix kmap on big-endian machines Aaro Koskinen
2014-03-15 11:08 ` Alexey Gladkov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox