public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 517] M68k: Disable SERIO_I8042, except on Q40/Q60
@ 2004-10-31 10:03 Geert Uytterhoeven
  2004-10-31 10:14 ` Vojtech Pavlik
  0 siblings, 1 reply; 3+ messages in thread
From: Geert Uytterhoeven @ 2004-10-31 10:03 UTC (permalink / raw)
  To: Linus Torvalds, Andrew Morton, Vojtech Pavlik
  Cc: Linux Kernel Development, Geert Uytterhoeven

M68k: Disable SERIO_I8042, except on Q40/Q60

Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>

--- linux-2.6.10-rc1/drivers/input/serio/Kconfig	2004-09-30 12:53:37.000000000 +0200
+++ linux-m68k-2.6.10-rc1/drivers/input/serio/Kconfig	2004-10-27 23:16:43.000000000 +0200
@@ -20,7 +20,7 @@ config SERIO_I8042
 	tristate "i8042 PC Keyboard controller" if EMBEDDED || !X86
 	default y
 	select SERIO
-	depends on !PARISC && (!ARM || ARCH_SHARK || FOOTBRIDGE_HOST)
+	depends on !PARISC && (!ARM || ARCH_SHARK || FOOTBRIDGE_HOST) && (!M68K || Q40)
 	---help---
 	  i8042 is the chip over which the standard AT keyboard and PS/2
 	  mouse are connected to the computer. If you use these devices,

Gr{oetje,eeting}s,

						Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
							    -- Linus Torvalds

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

* Re: [PATCH 517] M68k: Disable SERIO_I8042, except on Q40/Q60
  2004-10-31 10:03 [PATCH 517] M68k: Disable SERIO_I8042, except on Q40/Q60 Geert Uytterhoeven
@ 2004-10-31 10:14 ` Vojtech Pavlik
  2004-10-31 11:58   ` Geert Uytterhoeven
  0 siblings, 1 reply; 3+ messages in thread
From: Vojtech Pavlik @ 2004-10-31 10:14 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Linus Torvalds, Andrew Morton, Linux Kernel Development

On Sun, Oct 31, 2004 at 11:03:41AM +0100, Geert Uytterhoeven wrote:

> M68k: Disable SERIO_I8042, except on Q40/Q60

I thought Q40 uses the q40kbd.c driver and shouldn't need i8042 either?

> 
> Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
> 
> --- linux-2.6.10-rc1/drivers/input/serio/Kconfig	2004-09-30 12:53:37.000000000 +0200
> +++ linux-m68k-2.6.10-rc1/drivers/input/serio/Kconfig	2004-10-27 23:16:43.000000000 +0200
> @@ -20,7 +20,7 @@ config SERIO_I8042
>  	tristate "i8042 PC Keyboard controller" if EMBEDDED || !X86
>  	default y
>  	select SERIO
> -	depends on !PARISC && (!ARM || ARCH_SHARK || FOOTBRIDGE_HOST)
> +	depends on !PARISC && (!ARM || ARCH_SHARK || FOOTBRIDGE_HOST) && (!M68K || Q40)
>  	---help---
>  	  i8042 is the chip over which the standard AT keyboard and PS/2
>  	  mouse are connected to the computer. If you use these devices,
> 
> Gr{oetje,eeting}s,
> 
> 						Geert
> 
> --
> Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
> 
> In personal conversations with technical people, I call myself a hacker. But
> when I'm talking to journalists I just say "programmer" or something like that.
> 							    -- Linus Torvalds
> 

-- 
Vojtech Pavlik
SuSE Labs, SuSE CR

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

* Re: [PATCH 517] M68k: Disable SERIO_I8042, except on Q40/Q60
  2004-10-31 10:14 ` Vojtech Pavlik
@ 2004-10-31 11:58   ` Geert Uytterhoeven
  0 siblings, 0 replies; 3+ messages in thread
From: Geert Uytterhoeven @ 2004-10-31 11:58 UTC (permalink / raw)
  To: Vojtech Pavlik; +Cc: Linus Torvalds, Andrew Morton, Linux Kernel Development

On Sun, 31 Oct 2004, Vojtech Pavlik wrote:
> On Sun, Oct 31, 2004 at 11:03:41AM +0100, Geert Uytterhoeven wrote:
> 
> > M68k: Disable SERIO_I8042, except on Q40/Q60
> 
> I thought Q40 uses the q40kbd.c driver and shouldn't need i8042 either?

Bummer. I got confused by Q40 having an i8042-alike controller, but
you're right that it uses a different driver (and no Q40 guy complained).

Here's an updated patch:

M68k: Disable SERIO_I8042

Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>

--- linux-2.6.10-rc1/drivers/input/serio/Kconfig	2004-09-30 12:53:37.000000000 +0200
+++ linux-m68k-2.6.10-rc1/drivers/input/serio/Kconfig	2004-10-27 23:16:43.000000000 +0200
@@ -20,7 +20,7 @@ config SERIO_I8042
 	tristate "i8042 PC Keyboard controller" if EMBEDDED || !X86
 	default y
 	select SERIO
-	depends on !PARISC && (!ARM || ARCH_SHARK || FOOTBRIDGE_HOST)
+	depends on !PARISC && (!ARM || ARCH_SHARK || FOOTBRIDGE_HOST) && !M68K
 	---help---
 	  i8042 is the chip over which the standard AT keyboard and PS/2
 	  mouse are connected to the computer. If you use these devices,

Gr{oetje,eeting}s,

						Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
							    -- Linus Torvalds

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

end of thread, other threads:[~2004-10-31 12:02 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-10-31 10:03 [PATCH 517] M68k: Disable SERIO_I8042, except on Q40/Q60 Geert Uytterhoeven
2004-10-31 10:14 ` Vojtech Pavlik
2004-10-31 11:58   ` Geert Uytterhoeven

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