linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] MIPS: Fix build failure on mips_sc_is_activated()
@ 2010-12-01 16:34 Namhyung Kim
  2010-12-01 16:55 ` Ralf Baechle
  0 siblings, 1 reply; 4+ messages in thread
From: Namhyung Kim @ 2010-12-01 16:34 UTC (permalink / raw)
  To: Ralf Baechle; +Cc: linux-mips, linux-kernel

The commit ea31a6b20371 ("MIPS: Honor L2 bypass bit") breaks
malta build as follows. Looks like not compile-tested :(

  CC      arch/mips/mm/sc-mips.o
arch/mips/mm/sc-mips.c: In function 'mips_sc_is_activated':
arch/mips/mm/sc-mips.c:77:7 error: 'config2' undeclared (first use in this function)
arch/mips/mm/sc-mips.c:77:7 note: each undeclared identifier is reported only once
arch/mips/mm/sc-mips.c:77:7       for each function it appears in
arch/mips/mm/sc-mips.c:81:2 error: 'tmp' undeclared (first use in this function)
arch/mips/mm/sc-mips.c:86:1 warning: control reaches end of non-void function
make[3]: *** [arch/mips/mm/sc-mips.o] Error 1
make[2]: *** [arch/mips/mm/sc-mips.o] Error 2
make[1]: *** [sub-make] Error 2
make: *** [all] Error 2

Signed-off-by: Namhyung Kim <namhyung@gmail.com>
---
 arch/mips/mm/sc-mips.c |    9 +++++++--
 1 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/arch/mips/mm/sc-mips.c b/arch/mips/mm/sc-mips.c
index 505feca..a168f52 100644
--- a/arch/mips/mm/sc-mips.c
+++ b/arch/mips/mm/sc-mips.c
@@ -66,8 +66,11 @@ static struct bcache_ops mips_sc_ops = {
  * 12..15 as implementation defined so below function will eventually have
  * to be replaced by a platform specific probe.
  */
-static inline int mips_sc_is_activated(struct cpuinfo_mips *c)
+static inline int mips_sc_is_activated(struct cpuinfo_mips *c,
+				       unsigned int config2)
 {
+	unsigned int tmp;
+
 	/* Check the bypass bit (L2B) */
 	switch (c->cputype) {
 	case CPU_34K:
@@ -83,6 +86,8 @@ static inline int mips_sc_is_activated(struct cpuinfo_mips *c)
 		c->scache.linesz = 2 << tmp;
 	else
 		return 0;
+
+	return 1;
 }
 
 static inline int __init mips_sc_probe(void)
@@ -108,7 +113,7 @@ static inline int __init mips_sc_probe(void)
 
 	config2 = read_c0_config2();
 
-	if (!mips_sc_is_activated(c))
+	if (!mips_sc_is_activated(c, config2))
 		return 0;
 
 	tmp = (config2 >> 8) & 0x0f;
-- 
1.7.0.4


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

* Re: [PATCH] MIPS: Fix build failure on mips_sc_is_activated()
  2010-12-01 16:34 [PATCH] MIPS: Fix build failure on mips_sc_is_activated() Namhyung Kim
@ 2010-12-01 16:55 ` Ralf Baechle
  2010-12-01 17:03   ` Namhyung Kim
  2010-12-11 20:34   ` Ben Hutchings
  0 siblings, 2 replies; 4+ messages in thread
From: Ralf Baechle @ 2010-12-01 16:55 UTC (permalink / raw)
  To: Namhyung Kim; +Cc: linux-mips, linux-kernel

On Thu, Dec 02, 2010 at 01:34:42AM +0900, Namhyung Kim wrote:

> The commit ea31a6b20371 ("MIPS: Honor L2 bypass bit") breaks
> malta build as follows. Looks like not compile-tested :(

Already fixed in the linux-mips git tree by an identical patch in
commit 9a3475880131752d3d78ac25516fd3eab3fca871.

Thanks anyway!

  Ralf

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

* Re: [PATCH] MIPS: Fix build failure on mips_sc_is_activated()
  2010-12-01 16:55 ` Ralf Baechle
@ 2010-12-01 17:03   ` Namhyung Kim
  2010-12-11 20:34   ` Ben Hutchings
  1 sibling, 0 replies; 4+ messages in thread
From: Namhyung Kim @ 2010-12-01 17:03 UTC (permalink / raw)
  To: Ralf Baechle; +Cc: linux-mips, linux-kernel

2010-12-01 (수), 16:55 +0000, Ralf Baechle:
> On Thu, Dec 02, 2010 at 01:34:42AM +0900, Namhyung Kim wrote:
> 
> > The commit ea31a6b20371 ("MIPS: Honor L2 bypass bit") breaks
> > malta build as follows. Looks like not compile-tested :(
> 
> Already fixed in the linux-mips git tree by an identical patch in
> commit 9a3475880131752d3d78ac25516fd3eab3fca871.
> 
> Thanks anyway!
> 
>   Ralf

Oh, didn't know that.
Thanks.

-- 
Regards,
Namhyung Kim



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

* Re: [PATCH] MIPS: Fix build failure on mips_sc_is_activated()
  2010-12-01 16:55 ` Ralf Baechle
  2010-12-01 17:03   ` Namhyung Kim
@ 2010-12-11 20:34   ` Ben Hutchings
  1 sibling, 0 replies; 4+ messages in thread
From: Ben Hutchings @ 2010-12-11 20:34 UTC (permalink / raw)
  To: Ralf Baechle; +Cc: Namhyung Kim, linux-mips, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 582 bytes --]

On Wed, 2010-12-01 at 16:55 +0000, Ralf Baechle wrote:
> On Thu, Dec 02, 2010 at 01:34:42AM +0900, Namhyung Kim wrote:
> 
> > The commit ea31a6b20371 ("MIPS: Honor L2 bypass bit") breaks
> > malta build as follows. Looks like not compile-tested :(
> 
> Already fixed in the linux-mips git tree by an identical patch in
> commit 9a3475880131752d3d78ac25516fd3eab3fca871.
> 
> Thanks anyway!

This isn't in Linus's tree yet; please ask him to pull it in time for
2.6.37.

Ben.

-- 
Ben Hutchings
Once a job is fouled up, anything done to improve it makes it worse.

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 828 bytes --]

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

end of thread, other threads:[~2010-12-11 20:35 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-12-01 16:34 [PATCH] MIPS: Fix build failure on mips_sc_is_activated() Namhyung Kim
2010-12-01 16:55 ` Ralf Baechle
2010-12-01 17:03   ` Namhyung Kim
2010-12-11 20:34   ` Ben Hutchings

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).