mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] CONFIG_TELCLOCK depends on X86
@ 2006-10-16 17:59 Geert Uytterhoeven
  2006-10-16 23:54 ` Andrew Morton
  0 siblings, 1 reply; 4+ messages in thread
From: Geert Uytterhoeven @ 2006-10-16 17:59 UTC (permalink / raw)
  To: Linus Torvalds, Andrew Morton; +Cc: Linux Kernel Development, Mark Gross


The telecom clock driver for MPBL0010 ATCA SBC depends on X86

Signed-Off-By: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: Mark Gross <mark.gross@intel.com>

--- linux-2.6.19-rc2/drivers/char/Kconfig.orig	2006-10-05 11:16:43.000000000 +0200
+++ linux-2.6.19-rc2/drivers/char/Kconfig	2006-10-16 09:26:10.000000000 +0200
@@ -1046,7 +1046,7 @@ source "drivers/char/tpm/Kconfig"
 
 config TELCLOCK
 	tristate "Telecom clock driver for MPBL0010 ATCA SBC"
-	depends on EXPERIMENTAL
+	depends on EXPERIMENTAL && X86
 	default n
 	help
 	  The telecom clock device is specific to the MPBL0010 ATCA computer and

--
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] 4+ messages in thread

* Re: [PATCH] CONFIG_TELCLOCK depends on X86
  2006-10-16 17:59 [PATCH] CONFIG_TELCLOCK depends on X86 Geert Uytterhoeven
@ 2006-10-16 23:54 ` Andrew Morton
  2006-10-17  8:11   ` Geert Uytterhoeven
  0 siblings, 1 reply; 4+ messages in thread
From: Andrew Morton @ 2006-10-16 23:54 UTC (permalink / raw)
  To: Geert Uytterhoeven; +Cc: Linus Torvalds, Linux Kernel Development, Mark Gross

On Mon, 16 Oct 2006 19:59:43 +0200 (CEST)
Geert Uytterhoeven <geert@linux-m68k.org> wrote:

> The telecom clock driver for MPBL0010 ATCA SBC depends on X86
> 

But it compiles on other architectures (doesn't it?)

And perhaps sometime the hardware will be available on other architectures.

And there's benefit in being able to compile drivers on other architectures
- sometimes it will catch bugs.

IOW: what is the reason for making this change?

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

* Re: [PATCH] CONFIG_TELCLOCK depends on X86
  2006-10-16 23:54 ` Andrew Morton
@ 2006-10-17  8:11   ` Geert Uytterhoeven
  0 siblings, 0 replies; 4+ messages in thread
From: Geert Uytterhoeven @ 2006-10-17  8:11 UTC (permalink / raw)
  To: Andrew Morton; +Cc: Linus Torvalds, Linux Kernel Development, Mark Gross

On Mon, 16 Oct 2006, Andrew Morton wrote:
> On Mon, 16 Oct 2006 19:59:43 +0200 (CEST)
> Geert Uytterhoeven <geert@linux-m68k.org> wrote:
> 
> > The telecom clock driver for MPBL0010 ATCA SBC depends on X86
> > 
> 
> But it compiles on other architectures (doesn't it?)
> 
> And perhaps sometime the hardware will be available on other architectures.
> 
> And there's benefit in being able to compile drivers on other architectures
> - sometimes it will catch bugs.
> 
> IOW: what is the reason for making this change?

It does ISA I/O accesses and failed to build for most m68k platforms.

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] 4+ messages in thread

* RE: [PATCH] CONFIG_TELCLOCK depends on X86
@ 2006-10-16 19:09 Gross, Mark
  0 siblings, 0 replies; 4+ messages in thread
From: Gross, Mark @ 2006-10-16 19:09 UTC (permalink / raw)
  To: geert, Linus Torvalds, Andrew Morton; +Cc: Linux Kernel Development

This is good.  

Thank you for doing this.

Acked-by: Mark Gross <mark.gross@intel.com>

--mgross

>-----Original Message-----
>From: geert@linux-m68k.org [mailto:geert@linux-m68k.org]
>Sent: Monday, October 16, 2006 11:00 AM
>To: Linus Torvalds; Andrew Morton
>Cc: Linux Kernel Development; Gross, Mark
>Subject: [PATCH] CONFIG_TELCLOCK depends on X86
>
>
>The telecom clock driver for MPBL0010 ATCA SBC depends on X86
>
>Signed-Off-By: Geert Uytterhoeven <geert@linux-m68k.org>
>Cc: Mark Gross <mark.gross@intel.com>
>
>--- linux-2.6.19-rc2/drivers/char/Kconfig.orig	2006-10-05
11:16:43.000000000 +0200
>+++ linux-2.6.19-rc2/drivers/char/Kconfig	2006-10-16
09:26:10.000000000 +0200
>@@ -1046,7 +1046,7 @@ source "drivers/char/tpm/Kconfig"
>
> config TELCLOCK
> 	tristate "Telecom clock driver for MPBL0010 ATCA SBC"
>-	depends on EXPERIMENTAL
>+	depends on EXPERIMENTAL && X86
> 	default n
> 	help
> 	  The telecom clock device is specific to the MPBL0010 ATCA
computer and
>
>--
>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] 4+ messages in thread

end of thread, other threads:[~2006-10-17  8:11 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-10-16 17:59 [PATCH] CONFIG_TELCLOCK depends on X86 Geert Uytterhoeven
2006-10-16 23:54 ` Andrew Morton
2006-10-17  8:11   ` Geert Uytterhoeven
2006-10-16 19:09 Gross, Mark

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

all inboxes | Powered by JetHome®