From: Dmitry Torokhov <dtor_core@ameritech.net>
To: Andrew Morton <akpm@osdl.org>
Cc: "J.A. Magallon" <jamagallon@able.es>,
linux-kernel@vger.kernel.org, Vojtech Pavlik <vojtech@suse.cz>
Subject: Re: No PS2 with ACPI [was Re: 2.6.10-rc1-mm2]
Date: Sat, 30 Oct 2004 19:06:32 -0500 [thread overview]
Message-ID: <200410301906.35335.dtor_core@ameritech.net> (raw)
In-Reply-To: <20041030143132.5f20d048.akpm@osdl.org>
On Saturday 30 October 2004 04:31 pm, Andrew Morton wrote:
> "J.A. Magallon" <jamagallon@able.es> wrote:
> >
> >
> > On 2004.10.29, Andrew Morton wrote:
> > >
> > > ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.10-rc1/2.6.10-rc1-mm2/
> > >
> > >
> >
> > Here we go again...
>
> Perhaps Dmitry and Vojtech can help.
>
> > With normal boot, I have no kbd nor mouse (both PS2).
> > 2.6.9-mm1 detects them correctly:
> >
> > mice: PS/2 mouse device common for all mice
> > input: AT Translated Set 2 keyboard on isa0060/serio0
> > input: PS2++ Logitech <NULL> on isa0060/serio1
> >
> > 2.6.10-rc1-mm2 misses the two 'input' lines, I just get the 'mice:' one.
> >
> > Booting with i8042.noacpi makes them work again.
> >
Is that AMD64? Could you try this patch:
http://dtor.bkbits.net:8080/input/cset%404174f35cnyVl7byWwdxca2m6bK_odg
If it does not help could you send me contents of your dsdt table
(cat /proc/acpi/dsdt > dsdt.hex)
> > BTW, what is that <NULL> ?
> > I don't have the full logs, but 2.6.9-rc2-mm2 told 'Mouse',and
> > the next I have is -rc3-mm3 that says '<NULL>'.
> >
Please try the patch below, I think it will cure the "NULL" problem -
I messed up when rearranged protocols init routines.
Thanks!
--
Dmitry
===================================================================
ChangeSet@1.1959, 2004-10-30 19:02:16-05:00, dtor_core@ameritech.net
Input: psmouse - set mouse name to "Mouse" when using PS2++ and
don't have any other information about the mouse.
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
logips2pp.c | 15 +++++++++++++--
1 files changed, 13 insertions(+), 2 deletions(-)
===================================================================
diff -Nru a/drivers/input/mouse/logips2pp.c b/drivers/input/mouse/logips2pp.c
--- a/drivers/input/mouse/logips2pp.c 2004-10-30 19:03:37 -05:00
+++ b/drivers/input/mouse/logips2pp.c 2004-10-30 19:03:37 -05:00
@@ -245,7 +245,8 @@
* Set up input device's properties based on the detected mouse model.
*/
-static void ps2pp_set_model_properties(struct psmouse *psmouse, struct ps2pp_info *model_info)
+static void ps2pp_set_model_properties(struct psmouse *psmouse, struct ps2pp_info *model_info,
+ int using_ps2pp)
{
if (model_info->features & PS2PP_SIDE_BTN)
set_bit(BTN_SIDE, psmouse->dev.keybit);
@@ -279,6 +280,16 @@
case PS2PP_KIND_TP3:
psmouse->name = "TouchPad 3";
break;
+
+ default:
+ /*
+ * Set name to "Mouse" only when using PS2++,
+ * otherwise let other protocols define suitable
+ * name
+ */
+ if (using_ps2pp)
+ psmouse->name = "Mouse";
+ break;
}
}
@@ -371,7 +382,7 @@
clear_bit(BTN_RIGHT, psmouse->dev.keybit);
if (model_info)
- ps2pp_set_model_properties(psmouse, model_info);
+ ps2pp_set_model_properties(psmouse, model_info, use_ps2pp);
}
return use_ps2pp ? 0 : -1;
next prev parent reply other threads:[~2004-10-31 0:06 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-10-29 8:49 2.6.10-rc1-mm2 Andrew Morton
2004-10-29 10:24 ` 2.6.10-rc1-mm2 (compiler warnings on x86_64) Rafael J. Wysocki
2004-10-29 11:45 ` 2.6.10-rc1-mm2: `key_init' multiple definition Adrian Bunk
2004-10-29 17:35 ` Chris Wright
2004-10-29 20:20 ` Andrew Morton
2004-10-29 20:36 ` Chris Wright
2004-10-29 23:52 ` Andrew Morton
2004-10-29 23:53 ` Chris Wright
2004-10-29 16:04 ` 2.6.10-rc1-mm2 Alexander Nyberg
2004-10-29 17:44 ` 2.6.10-rc1-mm2 Randy.Dunlap
2004-10-29 17:16 ` 2.6.10-rc1-mm2 Borislav Petkov
2004-10-29 19:55 ` 2.6.10-rc1-mm2 Doug Maxey
2004-10-29 22:13 ` 2.6.10-rc1-mm2 Sam Ravnborg
2004-10-29 21:24 ` 2.6.10-rc1-mm2 Doug Maxey
2004-10-29 22:33 ` 2.6.10-rc1-mm2 (badness) Randy.Dunlap
2004-10-30 3:24 ` 2.6.10-rc1-mm2: intelfb/AGP unknown symbols Adrian Bunk
2004-10-30 8:28 ` Arjan van de Ven
2004-10-30 11:21 ` [Linux-fbdev-devel] " Antonino A. Daplas
2004-10-30 11:34 ` Arjan van de Ven
2004-10-30 13:08 ` Antonino A. Daplas
2004-10-30 15:16 ` Christoph Hellwig
2004-10-30 15:18 ` No PS2 with ACPI [was Re: 2.6.10-rc1-mm2] J.A. Magallon
2004-10-30 21:31 ` Andrew Morton
2004-10-31 0:06 ` Dmitry Torokhov [this message]
2004-11-01 22:05 ` J.A. Magallon
2004-11-02 3:31 ` Dmitry Torokhov
2004-11-01 8:46 ` Amit Shah
2004-11-03 6:08 ` ipw2100 and 2.6.10-rc1-bk12 Marcos D. Marado Torres
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=200410301906.35335.dtor_core@ameritech.net \
--to=dtor_core@ameritech.net \
--cc=akpm@osdl.org \
--cc=jamagallon@able.es \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome