* [PATCH] Make UIO available for arm architecture
@ 2007-08-08 16:08 Hans-Jürgen Koch
2007-08-08 16:15 ` [rfc] " Jan Engelhardt
0 siblings, 1 reply; 4+ messages in thread
From: Hans-Jürgen Koch @ 2007-08-08 16:08 UTC (permalink / raw)
To: Linux Kernel Mailing List
Cc: Greg Kroah-Hartman, Thomas Gleixner, linux-arm-kernel
The config system doesn't show the UIO menu if arch=arm, this patch fixes it.
Signed-off-by: Hans J. Koch <hjk@linutronix.de>
---
Index: linux-2.6.23-rc/arch/arm/Kconfig
===================================================================
--- linux-2.6.23-rc.orig/arch/arm/Kconfig 2007-08-08 17:52:02.000000000 +0200
+++ linux-2.6.23-rc/arch/arm/Kconfig 2007-08-08 17:53:29.000000000 +0200
@@ -1052,6 +1052,8 @@
source "drivers/dma/Kconfig"
+source "drivers/uio/Kconfig"
+
endmenu
source "fs/Kconfig"
^ permalink raw reply [flat|nested] 4+ messages in thread
* [rfc] Re: [PATCH] Make UIO available for arm architecture
2007-08-08 16:08 [PATCH] Make UIO available for arm architecture Hans-Jürgen Koch
@ 2007-08-08 16:15 ` Jan Engelhardt
2007-08-08 16:10 ` Greg KH
0 siblings, 1 reply; 4+ messages in thread
From: Jan Engelhardt @ 2007-08-08 16:15 UTC (permalink / raw)
To: Hans-Jürgen Koch
Cc: Linux Kernel Mailing List, Greg Kroah-Hartman, Thomas Gleixner,
linux-arm-kernel
[-- Attachment #1: Type: TEXT/PLAIN, Size: 865 bytes --]
On Aug 8 2007 18:08, Hans-Jürgen Koch wrote:
>---
>Index: linux-2.6.23-rc/arch/arm/Kconfig
>===================================================================
>--- linux-2.6.23-rc.orig/arch/arm/Kconfig 2007-08-08 17:52:02.000000000 +0200
>+++ linux-2.6.23-rc/arch/arm/Kconfig 2007-08-08 17:53:29.000000000 +0200
>@@ -1052,6 +1052,8 @@
>
> source "drivers/dma/Kconfig"
>
>+source "drivers/uio/Kconfig"
>+
> endmenu
>
> source "fs/Kconfig"
I am raising a general question here.
Should not such cross-platform things be made available in a general
Kconfig rather than having to patch each arch's Kconfig?
I am thinking of drivers/Kconfig for this one (of course I am aware that this
requires an extra "depends on X86 || SPARC || others" in drivers/pci/Kconfig),
and perhaps even a top-level Kconfig for things like truly arch-independent
fs/Kconfig.
Jan
--
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [rfc] Re: [PATCH] Make UIO available for arm architecture
2007-08-08 16:15 ` [rfc] " Jan Engelhardt
@ 2007-08-08 16:10 ` Greg KH
2007-08-08 16:33 ` Hans-Jürgen Koch
0 siblings, 1 reply; 4+ messages in thread
From: Greg KH @ 2007-08-08 16:10 UTC (permalink / raw)
To: Jan Engelhardt
Cc: Hans-J?rgen Koch, Linux Kernel Mailing List, Thomas Gleixner,
linux-arm-kernel
On Wed, Aug 08, 2007 at 06:15:21PM +0200, Jan Engelhardt wrote:
>
> On Aug 8 2007 18:08, Hans-J??rgen Koch wrote:
> >---
> >Index: linux-2.6.23-rc/arch/arm/Kconfig
> >===================================================================
> >--- linux-2.6.23-rc.orig/arch/arm/Kconfig 2007-08-08 17:52:02.000000000 +0200
> >+++ linux-2.6.23-rc/arch/arm/Kconfig 2007-08-08 17:53:29.000000000 +0200
> >@@ -1052,6 +1052,8 @@
> >
> > source "drivers/dma/Kconfig"
> >
> >+source "drivers/uio/Kconfig"
> >+
> > endmenu
> >
> > source "fs/Kconfig"
>
> I am raising a general question here.
> Should not such cross-platform things be made available in a general
> Kconfig rather than having to patch each arch's Kconfig?
>
> I am thinking of drivers/Kconfig for this one (of course I am aware that this
> requires an extra "depends on X86 || SPARC || others" in drivers/pci/Kconfig),
> and perhaps even a top-level Kconfig for things like truly arch-independent
> fs/Kconfig.
Um, uio _is_ in drivers/Kconfig already :)
But I'm guessing that ARM doesn't use that file yet? If so, I have no
objection to the above patch, but it should go through the ARM
developers, not me.
thanks,
greg k-h
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [rfc] Re: [PATCH] Make UIO available for arm architecture
2007-08-08 16:10 ` Greg KH
@ 2007-08-08 16:33 ` Hans-Jürgen Koch
0 siblings, 0 replies; 4+ messages in thread
From: Hans-Jürgen Koch @ 2007-08-08 16:33 UTC (permalink / raw)
To: Greg KH
Cc: Jan Engelhardt, Linux Kernel Mailing List, Thomas Gleixner,
linux-arm-kernel
Am Mittwoch 08 August 2007 18:10 schrieb Greg KH:
> On Wed, Aug 08, 2007 at 06:15:21PM +0200, Jan Engelhardt wrote:
> >
> > On Aug 8 2007 18:08, Hans-J??rgen Koch wrote:
> > >---
> > >Index: linux-2.6.23-rc/arch/arm/Kconfig
> > >===================================================================
> > >--- linux-2.6.23-rc.orig/arch/arm/Kconfig 2007-08-08 17:52:02.000000000 +0200
> > >+++ linux-2.6.23-rc/arch/arm/Kconfig 2007-08-08 17:53:29.000000000 +0200
> > >@@ -1052,6 +1052,8 @@
> > >
> > > source "drivers/dma/Kconfig"
> > >
> > >+source "drivers/uio/Kconfig"
> > >+
> > > endmenu
> > >
> > > source "fs/Kconfig"
> >
> > I am raising a general question here.
> > Should not such cross-platform things be made available in a general
> > Kconfig rather than having to patch each arch's Kconfig?
> >
> > I am thinking of drivers/Kconfig for this one (of course I am aware that this
> > requires an extra "depends on X86 || SPARC || others" in drivers/pci/Kconfig),
> > and perhaps even a top-level Kconfig for things like truly arch-independent
> > fs/Kconfig.
>
> Um, uio _is_ in drivers/Kconfig already :)
Of course :-)
>
> But I'm guessing that ARM doesn't use that file yet?
No, they don't. They source Kconfigs from each drivers subdirectory.
> If so, I have no
> objection to the above patch, but it should go through the ARM
> developers, not me.
OK, as I've CCed linux-arm-kernel, I hope Russell will do that.
Thanks,
Hans
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2007-08-08 16:33 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-08-08 16:08 [PATCH] Make UIO available for arm architecture Hans-Jürgen Koch
2007-08-08 16:15 ` [rfc] " Jan Engelhardt
2007-08-08 16:10 ` Greg KH
2007-08-08 16:33 ` Hans-Jürgen Koch
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.