* [PATCH] minor fix in asm-mips/module.h
@ 2005-09-26 7:06 Franck
2005-09-26 11:55 ` Ralf Baechle
0 siblings, 1 reply; 8+ messages in thread
From: Franck @ 2005-09-26 7:06 UTC (permalink / raw)
To: linux-mips
This patch replaces an empty preprocessor condition #elif by #else. It
adds 4ksc and 4ksd as well.
Thanks.
--
Franck
^ permalink raw reply [flat|nested] 8+ messages in thread* Re: [PATCH] minor fix in asm-mips/module.h
2005-09-26 7:06 [PATCH] minor fix in asm-mips/module.h Franck
@ 2005-09-26 11:55 ` Ralf Baechle
2005-09-26 12:05 ` Franck
0 siblings, 1 reply; 8+ messages in thread
From: Ralf Baechle @ 2005-09-26 11:55 UTC (permalink / raw)
To: Franck; +Cc: linux-mips
On Mon, Sep 26, 2005 at 09:06:50AM +0200, Franck wrote:
> This patch replaces an empty preprocessor condition #elif by #else. It
> adds 4ksc and 4ksd as well.
You forgot to include the patch ...
Ralf
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] minor fix in asm-mips/module.h
2005-09-26 11:55 ` Ralf Baechle
@ 2005-09-26 12:05 ` Franck
2005-09-29 23:45 ` Ralf Baechle
0 siblings, 1 reply; 8+ messages in thread
From: Franck @ 2005-09-26 12:05 UTC (permalink / raw)
To: Ralf Baechle; +Cc: linux-mips
[-- Attachment #1: Type: text/plain, Size: 331 bytes --]
2005/9/26, Ralf Baechle <ralf@linux-mips.org>:
> On Mon, Sep 26, 2005 at 09:06:50AM +0200, Franck wrote:
>
> > This patch replaces an empty preprocessor condition #elif by #else. It
> > adds 4ksc and 4ksd as well.
>
> You forgot to include the patch ...
sorry for that, here it is...
Thanks
--
Franck
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: module.patch --]
[-- Type: text/x-patch; name="module.patch", Size: 491 bytes --]
--- module.h~old 2005-09-26 14:02:32.000000000 +0200
+++ module.h 2005-09-26 09:54:08.000000000 +0200
@@ -113,7 +113,11 @@ search_module_dbetables(unsigned long ad
#define MODULE_PROC_FAMILY "RM9000"
#elif defined CONFIG_CPU_SB1
#define MODULE_PROC_FAMILY "SB1"
-#elif
+#elif defined CONFIG_CPU_4KSC
+#define MODULE_PROC_FAMILY "4KSC"
+#elif defined CONFIG_CPU_4KSD
+#define MODULE_PROC_FAMILY "4KSD"
+#else
#error MODULE_PROC_FAMILY undefined for your processor configuration
#endif
^ permalink raw reply [flat|nested] 8+ messages in thread* Re: [PATCH] minor fix in asm-mips/module.h
2005-09-26 12:05 ` Franck
@ 2005-09-29 23:45 ` Ralf Baechle
2005-09-30 12:36 ` Franck
0 siblings, 1 reply; 8+ messages in thread
From: Ralf Baechle @ 2005-09-29 23:45 UTC (permalink / raw)
To: Franck; +Cc: linux-mips
On Mon, Sep 26, 2005 at 02:05:36PM +0200, Franck wrote:
> 2005/9/26, Ralf Baechle <ralf@linux-mips.org>:
> > On Mon, Sep 26, 2005 at 09:06:50AM +0200, Franck wrote:
> >
> > > This patch replaces an empty preprocessor condition #elif by #else.
Thanks for noticing.
> > > It adds 4ksc and 4ksd as well.
--- module.h~old 2005-09-26 14:02:32.000000000 +0200
+++ module.h 2005-09-26 09:54:08.000000000 +0200
@@ -113,7 +113,11 @@ search_module_dbetables(unsigned long ad
#define MODULE_PROC_FAMILY "RM9000"
#elif defined CONFIG_CPU_SB1
#define MODULE_PROC_FAMILY "SB1"
-#elif
+#elif defined CONFIG_CPU_4KSC
+#define MODULE_PROC_FAMILY "4KSC"
+#elif defined CONFIG_CPU_4KSD
+#define MODULE_PROC_FAMILY "4KSD"
There are no CONFIG_CPU_4KSC and CONFIG_CPU_4KSD configuration options.
Did you really create this patch against the linux module of the CVS
repository or was it a different tree?
Thanks,
Ralf
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] minor fix in asm-mips/module.h
2005-09-29 23:45 ` Ralf Baechle
@ 2005-09-30 12:36 ` Franck
2005-09-30 13:09 ` Ralf Baechle
0 siblings, 1 reply; 8+ messages in thread
From: Franck @ 2005-09-30 12:36 UTC (permalink / raw)
To: Ralf Baechle; +Cc: linux-mips
Hi Ralf,
2005/9/30, Ralf Baechle <ralf@linux-mips.org>:
> There are no CONFIG_CPU_4KSC and CONFIG_CPU_4KSD configuration options.
> Did you really create this patch against the linux module of the CVS
> repository or was it a different tree?
>
The patch was created against linux-mips CVS repository. I added 4KSC
and 4KSD support in this tree. I thougth seeing reference of 4KSC
somewhere. Anyway, if you don't want to include them in your tree
that's ok.
Thanks
--
Franck
^ permalink raw reply [flat|nested] 8+ messages in thread* Re: [PATCH] minor fix in asm-mips/module.h
2005-09-30 12:36 ` Franck
@ 2005-09-30 13:09 ` Ralf Baechle
2005-09-30 15:44 ` Franck
0 siblings, 1 reply; 8+ messages in thread
From: Ralf Baechle @ 2005-09-30 13:09 UTC (permalink / raw)
To: Franck; +Cc: linux-mips
On Fri, Sep 30, 2005 at 02:36:01PM +0200, Franck wrote:
> 2005/9/30, Ralf Baechle <ralf@linux-mips.org>:
> > There are no CONFIG_CPU_4KSC and CONFIG_CPU_4KSD configuration options.
> > Did you really create this patch against the linux module of the CVS
> > repository or was it a different tree?
> >
>
> The patch was created against linux-mips CVS repository. I added 4KSC
> and 4KSD support in this tree. I thougth seeing reference of 4KSC
> somewhere. Anyway, if you don't want to include them in your tree
> that's ok.
It's just that references to CONFIG_* symbols that are being defined
nowhere don't make sense. If however you want to contribute improved
support for these processors, by all means I'm certainly going to appreciate
a patch!
Ralf
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] minor fix in asm-mips/module.h
2005-09-30 13:09 ` Ralf Baechle
@ 2005-09-30 15:44 ` Franck
2005-09-30 16:09 ` Ralf Baechle
0 siblings, 1 reply; 8+ messages in thread
From: Franck @ 2005-09-30 15:44 UTC (permalink / raw)
To: Ralf Baechle; +Cc: linux-mips
2005/9/30, Ralf Baechle <ralf@linux-mips.org>:
> On Fri, Sep 30, 2005 at 02:36:01PM +0200, Franck wrote:
>
> > 2005/9/30, Ralf Baechle <ralf@linux-mips.org>:
> > > There are no CONFIG_CPU_4KSC and CONFIG_CPU_4KSD configuration options.
> > > Did you really create this patch against the linux module of the CVS
> > > repository or was it a different tree?
> > >
> >
> > The patch was created against linux-mips CVS repository. I added 4KSC
> > and 4KSD support in this tree. I thougth seeing reference of 4KSC
> > somewhere. Anyway, if you don't want to include them in your tree
> > that's ok.
>
> It's just that references to CONFIG_* symbols that are being defined
> nowhere don't make sense. If however you want to contribute improved
> support for these processors, by all means I'm certainly going to appreciate
> a patch!
>
I'm surprised you're interested in added support for 4KSC and 4KSD
cpu...Anyway I could send a trivial patch to you if so.
Thanks
--
Franck
^ permalink raw reply [flat|nested] 8+ messages in thread* Re: [PATCH] minor fix in asm-mips/module.h
2005-09-30 15:44 ` Franck
@ 2005-09-30 16:09 ` Ralf Baechle
0 siblings, 0 replies; 8+ messages in thread
From: Ralf Baechle @ 2005-09-30 16:09 UTC (permalink / raw)
To: Franck; +Cc: linux-mips
On Fri, Sep 30, 2005 at 05:44:01PM +0200, Franck wrote:
> > > 2005/9/30, Ralf Baechle <ralf@linux-mips.org>:
> > > > There are no CONFIG_CPU_4KSC and CONFIG_CPU_4KSD configuration options.
> > > > Did you really create this patch against the linux module of the CVS
> > > > repository or was it a different tree?
> > > >
> > >
> > > The patch was created against linux-mips CVS repository. I added 4KSC
> > > and 4KSD support in this tree. I thougth seeing reference of 4KSC
> > > somewhere. Anyway, if you don't want to include them in your tree
> > > that's ok.
> >
> > It's just that references to CONFIG_* symbols that are being defined
> > nowhere don't make sense. If however you want to contribute improved
> > support for these processors, by all means I'm certainly going to appreciate
> > a patch!
> >
>
> I'm surprised you're interested in added support for 4KSC and 4KSD
> cpu...Anyway I could send a trivial patch to you if so.
Yes, some people do strange things with Linux :-)
Ralf
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2005-09-30 16:10 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-09-26 7:06 [PATCH] minor fix in asm-mips/module.h Franck
2005-09-26 11:55 ` Ralf Baechle
2005-09-26 12:05 ` Franck
2005-09-29 23:45 ` Ralf Baechle
2005-09-30 12:36 ` Franck
2005-09-30 13:09 ` Ralf Baechle
2005-09-30 15:44 ` Franck
2005-09-30 16:09 ` Ralf Baechle
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox