* [PATCH] input-ps2: sprintf() params missing
@ 2001-10-18 3:23 Chip Salzenberg
2001-10-18 18:32 ` James Simmons
2001-10-20 21:52 ` Vojtech Pavlik
0 siblings, 2 replies; 3+ messages in thread
From: Chip Salzenberg @ 2001-10-18 3:23 UTC (permalink / raw)
To: jsimmons; +Cc: Linux Kernel, linuxconsole-dev
[-- Attachment #1: Type: text/plain, Size: 367 bytes --]
The recently advertised input-ps2 patch has a minor repeated bug, in
that sprintf() calls are made without enough parameters. I'm not sure
what the right fix is, but the attached patch at least calls sprintf()
correctly.
--
Chip Salzenberg - a.k.a. - <chip@pobox.com>
"We have no fuel on board, plus or minus 8 kilograms." -- NEAR tech
[-- Attachment #2: input-ps2-fixes-2 --]
[-- Type: text/plain, Size: 1060 bytes --]
Index: drivers/char/atkbd.c
--- drivers/char/atkbd.c.old Wed Oct 17 13:36:43 2001
+++ drivers/char/atkbd.c Wed Oct 17 19:13:57 2001
@@ -493,5 +493,5 @@
sprintf(atkbd->name, "AT Set %d keyboard", atkbd->set);
- sprintf(atkbd->phys, "%s/input0\n");
+ sprintf(atkbd->phys, "/dev/serio%d", serio->number);
if (atkbd->set == 3)
Index: drivers/char/psmouse.c
--- drivers/char/psmouse.c.old Wed Oct 17 13:36:43 2001
+++ drivers/char/psmouse.c Wed Oct 17 19:14:11 2001
@@ -609,5 +609,5 @@
sprintf(psmouse->devname, "%s %s %s",
psmouse_protocols[psmouse->type], psmouse->vendor, psmouse->name);
- sprintf(psmouse->phys, "%s/input0\n");
+ sprintf(psmouse->phys, "/dev/serio%d", serio->number);
psmouse->dev.name = psmouse->devname;
Index: drivers/char/xtkbd.c
--- drivers/char/xtkbd.c.old Wed Oct 17 13:36:43 2001
+++ drivers/char/xtkbd.c Wed Oct 17 19:14:07 2001
@@ -115,5 +115,5 @@
clear_bit(0, xtkbd->dev.keybit);
- sprintf(xtkbd->phys, "%s/input0\n");
+ sprintf(xtkbd->phys, "/dev/serio%d", serio->number);
xtkbd->dev.name = xtkbd_name;
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] input-ps2: sprintf() params missing
2001-10-18 3:23 [PATCH] input-ps2: sprintf() params missing Chip Salzenberg
@ 2001-10-18 18:32 ` James Simmons
2001-10-20 21:52 ` Vojtech Pavlik
1 sibling, 0 replies; 3+ messages in thread
From: James Simmons @ 2001-10-18 18:32 UTC (permalink / raw)
To: Chip Salzenberg; +Cc: Linux Kernel, linuxconsole-dev
> The recently advertised input-ps2 patch has a minor repeated bug, in
> that sprintf() calls are made without enough parameters. I'm not sure
> what the right fix is, but the attached patch at least calls sprintf()
> correctly.
Oops. It was a quick fix to deal with the extra field we have in struct
serio whcih is not in the standard kernel. Thank you for the fix.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] input-ps2: sprintf() params missing
2001-10-18 3:23 [PATCH] input-ps2: sprintf() params missing Chip Salzenberg
2001-10-18 18:32 ` James Simmons
@ 2001-10-20 21:52 ` Vojtech Pavlik
1 sibling, 0 replies; 3+ messages in thread
From: Vojtech Pavlik @ 2001-10-20 21:52 UTC (permalink / raw)
To: Chip Salzenberg; +Cc: jsimmons, Linux Kernel, linuxconsole-dev
On Wed, Oct 17, 2001 at 08:23:43PM -0700, Chip Salzenberg wrote:
> The recently advertised input-ps2 patch has a minor repeated bug, in
> that sprintf() calls are made without enough parameters. I'm not sure
> what the right fix is, but the attached patch at least calls sprintf()
> correctly.
> --
> Chip Salzenberg - a.k.a. - <chip@pobox.com>
> "We have no fuel on board, plus or minus 8 kilograms." -- NEAR tech
The correct lines should look like this:
sprintf(atkbd->phys, "%s/input0", serio->phys);
It's in the CVS, anyway.
>
> Index: drivers/char/atkbd.c
> --- drivers/char/atkbd.c.old Wed Oct 17 13:36:43 2001
> +++ drivers/char/atkbd.c Wed Oct 17 19:13:57 2001
> @@ -493,5 +493,5 @@
> sprintf(atkbd->name, "AT Set %d keyboard", atkbd->set);
>
> - sprintf(atkbd->phys, "%s/input0\n");
> + sprintf(atkbd->phys, "/dev/serio%d", serio->number);
>
> if (atkbd->set == 3)
>
> Index: drivers/char/psmouse.c
> --- drivers/char/psmouse.c.old Wed Oct 17 13:36:43 2001
> +++ drivers/char/psmouse.c Wed Oct 17 19:14:11 2001
> @@ -609,5 +609,5 @@
> sprintf(psmouse->devname, "%s %s %s",
> psmouse_protocols[psmouse->type], psmouse->vendor, psmouse->name);
> - sprintf(psmouse->phys, "%s/input0\n");
> + sprintf(psmouse->phys, "/dev/serio%d", serio->number);
>
> psmouse->dev.name = psmouse->devname;
>
> Index: drivers/char/xtkbd.c
> --- drivers/char/xtkbd.c.old Wed Oct 17 13:36:43 2001
> +++ drivers/char/xtkbd.c Wed Oct 17 19:14:07 2001
> @@ -115,5 +115,5 @@
> clear_bit(0, xtkbd->dev.keybit);
>
> - sprintf(xtkbd->phys, "%s/input0\n");
> + sprintf(xtkbd->phys, "/dev/serio%d", serio->number);
>
> xtkbd->dev.name = xtkbd_name;
--
Vojtech Pavlik
SuSE Labs
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2001-10-20 21:51 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-10-18 3:23 [PATCH] input-ps2: sprintf() params missing Chip Salzenberg
2001-10-18 18:32 ` James Simmons
2001-10-20 21:52 ` Vojtech Pavlik
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.