Re: [PATCH] arm: omap2: fix build failure

2011-11-17 Thread Kevin Hilman
Ming Lei tom.leim...@gmail.com writes:

 On Wed, Nov 9, 2011 at 3:24 AM, Kevin Hilman khil...@ti.com wrote:
 tom.leim...@gmail.com writes:

 From: Ming Lei tom.leim...@gmail.com

 The patch fixes the compile failure:

   CC      arch/arm/mach-omap2/cpuidle34xx.o
 arch/arm/mach-omap2/cpuidle34xx.c:317:12: error: 'THIS_MODULE'
 undeclared here (not in a function)
 make[1]: *** [arch/arm/mach-omap2/cpuidle34xx.o] Error 1
 make: *** [arch/arm/mach-omap2] Error 2
 make: *** Waiting for unfinished jobs

 Signed-off-by: Ming Lei tom.leim...@gmail.com

 FYI...

 Tony has already queued fix for this in his fixes branch.

     http://marc.info/?l=linux-arm-kernelm=132071036621713w=2

 The fix is not merged into 3.2.0-rc2-next-2016+ yet...

OK, but that doesn't mean you have to keep sending it.  It just means
Tony's fixes branch isn't in -next (yet.)

Kevin
--
To unsubscribe from this list: send the line unsubscribe linux-omap in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH] arm: omap2: fix build failure

2011-11-17 Thread Ming Lei
Hi,

On Fri, Nov 18, 2011 at 3:36 AM, Kevin Hilman khil...@ti.com wrote:

 OK, but that doesn't mean you have to keep sending it.  It just means
 Tony's fixes branch isn't in -next (yet.)

I do not care about which one is merged, but don't want to apply
the fix patch manually for each test, :-)

In fact, there are several other non-merged build failures for omap build,
looks like the process is a bit slow, :-)

thanks,
-- 
Ming Lei
--
To unsubscribe from this list: send the line unsubscribe linux-omap in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH] arm: omap2: fix build failure

2011-11-16 Thread Ming Lei
Hi,

On Wed, Nov 9, 2011 at 3:24 AM, Kevin Hilman khil...@ti.com wrote:
 tom.leim...@gmail.com writes:

 From: Ming Lei tom.leim...@gmail.com

 The patch fixes the compile failure:

   CC      arch/arm/mach-omap2/cpuidle34xx.o
 arch/arm/mach-omap2/cpuidle34xx.c:317:12: error: 'THIS_MODULE'
 undeclared here (not in a function)
 make[1]: *** [arch/arm/mach-omap2/cpuidle34xx.o] Error 1
 make: *** [arch/arm/mach-omap2] Error 2
 make: *** Waiting for unfinished jobs

 Signed-off-by: Ming Lei tom.leim...@gmail.com

 FYI...

 Tony has already queued fix for this in his fixes branch.

     http://marc.info/?l=linux-arm-kernelm=132071036621713w=2

The fix is not merged into 3.2.0-rc2-next-2016+ yet...

thanks,
-- 
Ming Lei
--
To unsubscribe from this list: send the line unsubscribe linux-omap in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH] arm: omap2: fix build failure

2011-11-08 Thread Kevin Hilman
tom.leim...@gmail.com writes:

 From: Ming Lei tom.leim...@gmail.com

 The patch fixes the compile failure:

   CC  arch/arm/mach-omap2/cpuidle34xx.o
 arch/arm/mach-omap2/cpuidle34xx.c:317:12: error: 'THIS_MODULE'
 undeclared here (not in a function)
 make[1]: *** [arch/arm/mach-omap2/cpuidle34xx.o] Error 1
 make: *** [arch/arm/mach-omap2] Error 2
 make: *** Waiting for unfinished jobs

 Signed-off-by: Ming Lei tom.leim...@gmail.com

FYI...

Tony has already queued fix for this in his fixes branch.

 http://marc.info/?l=linux-arm-kernelm=132071036621713w=2

Kevin
--
To unsubscribe from this list: send the line unsubscribe linux-omap in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH] arm: omap2: fix build failure

2011-11-07 Thread tom . leiming
From: Ming Lei tom.leim...@gmail.com

The patch fixes the compile failure:

  CC  arch/arm/mach-omap2/cpuidle34xx.o
arch/arm/mach-omap2/cpuidle34xx.c:317:12: error: 'THIS_MODULE'
undeclared here (not in a function)
make[1]: *** [arch/arm/mach-omap2/cpuidle34xx.o] Error 1
make: *** [arch/arm/mach-omap2] Error 2
make: *** Waiting for unfinished jobs

Signed-off-by: Ming Lei tom.leim...@gmail.com
---
 arch/arm/mach-omap2/cpuidle34xx.c |1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/arch/arm/mach-omap2/cpuidle34xx.c 
b/arch/arm/mach-omap2/cpuidle34xx.c
index 1fe35c2..158c17e 100644
--- a/arch/arm/mach-omap2/cpuidle34xx.c
+++ b/arch/arm/mach-omap2/cpuidle34xx.c
@@ -24,6 +24,7 @@
 
 #include linux/sched.h
 #include linux/cpuidle.h
+#include linux/module.h
 
 #include plat/prcm.h
 #include plat/irqs.h
-- 
1.7.5.4

--
To unsubscribe from this list: send the line unsubscribe linux-omap in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html