From: Benjamin Herrenschmidt <benh@kernel.crashing.org>
To: cliff white <cliffw@osdl.org>
Cc: linuxppc-dev list <linuxppc-dev@lists.linuxppc.org>
Subject: Re: Keyboard broken on iBook - linuxppc-2.5 latest
Date: Mon, 06 Oct 2003 22:27:28 +0200 [thread overview]
Message-ID: <1065472048.30835.3.camel@gaston> (raw)
In-Reply-To: <20031006132423.3bd10bc9.cliffw@osdl.org>
On Mon, 2003-10-06 at 22:24, cliff white wrote:
> Thanks, much appreciated. If you'd like some more testing before that,
> please point me to bits, would be grateful.
Patch from Brice Figureau earlier on this list:
From:
Brice
Figureau
<brice@tincell.com>
To:
cliff white
<cliffw@osdl.org>
Cc:
linuxppc-dev@lists.linuxppc.org, linux-kernel@vger.kernel.org
Subject:
[PATCH]
macintosh/adbhid.c REP_DELAY fix (was Re: 2.6.0-test5 - stuck keys on iBook)
Date:
Fri, 03 Oct
2003
09:40:22
+0200
Hi Cliff,
On Tue, 2003-09-30 at 23:31, cliff white wrote:
> Kernel version: latest from ppc.bkbits.net/linuxppc-2.5
>
> Symptom: keyboard diarrhea - single keypress == 3-7 characters.
Here is a patch that fixes the keyboard problem. The input layer
REP_DELAY (and REP_PERIOD) were changed from jiffies to ms but the adb
was not updated accordingly.
I hope this will help you.
Brice
--- drivers/macintosh/adbhid.c.orig 2003-10-02 22:39:31.112571794
+0200
+++ drivers/macintosh/adbhid.c 2003-10-02 22:40:22.888120863 +0200
@@ -611,8 +611,8 @@
/* HACK WARNING!! This should go away as soon there is
an utility
* to control that for event devices.
*/
- adbhid[id]->input.rep[REP_DELAY] = HZ/2; /* input
layer default: HZ/4 */
- adbhid[id]->input.rep[REP_PERIOD] = HZ/15; /* input
layer default: HZ/33 */
+ adbhid[id]->input.rep[REP_DELAY] = 500; /* input layer
default: 250 */
+ adbhid[id]->input.rep[REP_PERIOD] = 66; /* input layer
default: 33 */
}
}
** Sent via the linuxppc-dev mail list. See http://lists.linuxppc.org/
next prev parent reply other threads:[~2003-10-06 20:27 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-10-06 19:58 Keyboard broken on iBook - linuxppc-2.5 latest cliff white
2003-10-06 20:13 ` Benjamin Herrenschmidt
2003-10-06 20:24 ` cliff white
2003-10-06 20:27 ` Benjamin Herrenschmidt [this message]
2003-10-06 22:37 ` cliff white
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=1065472048.30835.3.camel@gaston \
--to=benh@kernel.crashing.org \
--cc=cliffw@osdl.org \
--cc=linuxppc-dev@lists.linuxppc.org \
/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.