All of lore.kernel.org
 help / color / mirror / Atom feed
From: Dmitry Torokhov <dtor_core@ameritech.net>
To: Vojtech Pavlik <vojtech@suse.cz>
Cc: LKML <linux-kernel@vger.kernel.org>
Subject: [PATCH 1/11] Atkbd keycodesize fix
Date: Wed, 24 Nov 2004 02:06:03 -0500	[thread overview]
Message-ID: <200411240206.05955.dtor_core@ameritech.net> (raw)
In-Reply-To: <200411240205.10502.dtor_core@ameritech.net>


===================================================================


ChangeSet@1.1957, 2004-11-20 02:05:34-05:00, dtor_core@ameritech.net
  Input: atkbd - fix keycode table size initialization that got broken
         by my changes that exported 'set' and other settings via sysfs.
         setkeycodes should work again now.
  
  Signed-off-by: Dmitry Torokhov <dtor@mail.ru>


 atkbd.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)


===================================================================



diff -Nru a/drivers/input/keyboard/atkbd.c b/drivers/input/keyboard/atkbd.c
--- a/drivers/input/keyboard/atkbd.c	2004-11-24 01:40:49 -05:00
+++ b/drivers/input/keyboard/atkbd.c	2004-11-24 01:40:49 -05:00
@@ -757,6 +757,10 @@
 		set_bit(BTN_MIDDLE, atkbd->dev.keybit);
 	}
 
+	atkbd->dev.keycode = atkbd->keycode;
+	atkbd->dev.keycodesize = sizeof(unsigned char);
+	atkbd->dev.keycodemax = ARRAY_SIZE(atkbd_set2_keycode);
+
 	for (i = 0; i < 512; i++)
 		if (atkbd->keycode[i] && atkbd->keycode[i] < ATKBD_SPECIAL)
 			set_bit(atkbd->keycode[i], atkbd->dev.keybit);
@@ -798,10 +802,6 @@
 
 	if (atkbd->softrepeat)
 		atkbd->softraw = 1;
-
-	atkbd->dev.keycode = atkbd->keycode;
-	atkbd->dev.keycodesize = sizeof(unsigned char);
-	atkbd->dev.keycodemax = ARRAY_SIZE(atkbd_set2_keycode);
 
 	serio_set_drvdata(serio, atkbd);
 

  reply	other threads:[~2004-11-24  7:17 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-11-24  7:05 [PATCH 0/11] New input patches Dmitry Torokhov
2004-11-24  7:06 ` Dmitry Torokhov [this message]
2004-11-24  7:06   ` [PATCH 2/11] Psmouse polling for KVMs Dmitry Torokhov
2004-11-24  7:07     ` [PATCH 3/11] Addd serio_get/put_drvdata functions Dmitry Torokhov
2004-11-24  7:08       ` [PATCH 4/11] Twidjoy build fix Dmitry Torokhov
2004-11-24  7:09         ` [PATCH 5/11] serio - use id matching Dmitry Torokhov
2004-11-24  7:09           ` [PATCH 6/11] serio bus code cleanup Dmitry Torokhov
2004-11-24  7:10             ` [PATCH 7/11] input: use msecs_to_jiffies Dmitry Torokhov
2004-11-24  7:10               ` [PATCH 8/11] atkbd: " Dmitry Torokhov
2004-11-24  7:11                 ` [PATCH 9/11] gameport renames part 1 Dmitry Torokhov
2004-11-24  7:11                   ` [PATCH 10/11] gameport renames part 2 Dmitry Torokhov
2004-11-24  7:13                     ` [PATCH 11/11] gameport: connect/disconnect mandatory Dmitry Torokhov

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=200411240206.05955.dtor_core@ameritech.net \
    --to=dtor_core@ameritech.net \
    --cc=linux-kernel@vger.kernel.org \
    --cc=vojtech@suse.cz \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.