RE: Compilation: omap-for-linus omap2plus error

2010-09-30 Thread Shilimkar, Santosh
 -Original Message-
 From: linux-omap-ow...@vger.kernel.org [mailto:linux-omap-
 ow...@vger.kernel.org] On Behalf Of Abraham Arce
 Sent: Thursday, September 30, 2010 9:47 AM
 To: Arce, Abraham
 Cc: linux-omap@vger.kernel.org
 Subject: Re: Compilation: omap-for-linus omap2plus error
 
 Adding more info to previous email, email account changed
 
 On Wed, Sep 29, 2010 at 10:54 PM, Abraham Arce x0066...@ti.com wrote:
  Hi,
 
  Is there any patch missing in omap-for-linus branch?
 
   CC      arch/arm/mach-omap2/pm_bus.o
  arch/arm/mach-omap2/pm_bus.c: In function 'omap_pm_runtime_init':
  arch/arm/mach-omap2/pm_bus.c:64: error: implicit declaration of function
  'platform_bus_get_pm_ops'
  arch/arm/mach-omap2/pm_bus.c:64: warning: assignment makes pointer from
  integer without a cast
  arch/arm/mach-omap2/pm_bus.c:81: error: implicit declaration of function
  'platform_bus_set_pm_ops'
  make[1]: *** [arch/arm/mach-omap2/pm_bus.o] Error 1
  make: *** [arch/arm/mach-omap2] Error 2
 
 
 I am trying using following commit as latest
 
 Kevin Hilman
 7ad0e386d46e9edff64705ab25337ad9130baf63
 OMAP2+: defconfig: disable CPUfreq
 
Looks like Kevin's platform.c patch is missing
in omap-for-linus branch. Patch attached.


0001-driver-core-platform_bus-allow-runtime-override-of.patch
Description: 0001-driver-core-platform_bus-allow-runtime-override-of.patch


Re: Compilation: omap-for-linus omap2plus error

2010-09-30 Thread Abraham Arce
Thanks Santosh,

On Thu, Sep 30, 2010 at 2:55 AM, Shilimkar, Santosh
santosh.shilim...@ti.com wrote:
   CC      arch/arm/mach-omap2/pm_bus.o
  arch/arm/mach-omap2/pm_bus.c: In function 'omap_pm_runtime_init':
  arch/arm/mach-omap2/pm_bus.c:64: error: implicit declaration of function
  'platform_bus_get_pm_ops'
  arch/arm/mach-omap2/pm_bus.c:64: warning: assignment makes pointer from
  integer without a cast
  arch/arm/mach-omap2/pm_bus.c:81: error: implicit declaration of function
  'platform_bus_set_pm_ops'

 I am trying using following commit as latest

 Kevin Hilman
 7ad0e386d46e9edff64705ab25337ad9130baf63
 OMAP2+: defconfig: disable CPUfreq

 Looks like Kevin's platform.c patch is missing
 in omap-for-linus branch. Patch attached.


Compilation error fixed... no more issues

Best Regards
Abraham
--
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: Compilation: omap-for-linus omap2plus error

2010-09-30 Thread Ming Lei
2010/9/30 Abraham Arce x0066...@ti.com:
 Hi,

 Is there any patch missing in omap-for-linus branch?

  CC      arch/arm/mach-omap2/pm_bus.o
 arch/arm/mach-omap2/pm_bus.c: In function 'omap_pm_runtime_init':
 arch/arm/mach-omap2/pm_bus.c:64: error: implicit declaration of function
 'platform_bus_get_pm_ops'
 arch/arm/mach-omap2/pm_bus.c:64: warning: assignment makes pointer from
 integer without a cast
 arch/arm/mach-omap2/pm_bus.c:81: error: implicit declaration of function
 'platform_bus_set_pm_ops'
 make[1]: *** [arch/arm/mach-omap2/pm_bus.o] Error 1
 make: *** [arch/arm/mach-omap2] Error 2

This issue also exists in pm-hwmods branch.


-- 
Lei Ming
--
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: Compilation: omap-for-linus omap2plus error

2010-09-30 Thread Kevin Hilman
Shilimkar, Santosh santosh.shilim...@ti.com writes:

  Is there any patch missing in omap-for-linus branch?

Short version:

Yes, there are several and the dependencies are taken care of in the
master branch.

Long version: 

There are several changes that are going upstream for 2.6.37 that are
going through other trees (driver core, runtime PM core, i2c core, etc.)
In my tree, I keep these in my pm-backports branch, and for Tony's tree,
he has cherry-picked them into the omap-testing branch so they are
included in l-o master until the merge window opens.

So, even if you cherry pick the one patch, you may not have compile time
problems but you will have other runtime problems due to other
dependencies.  So I strongly recommend just using l-o master.

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: Compilation: omap-for-linus omap2plus error

2010-09-29 Thread Abraham Arce
Adding more info to previous email, email account changed

On Wed, Sep 29, 2010 at 10:54 PM, Abraham Arce x0066...@ti.com wrote:
 Hi,

 Is there any patch missing in omap-for-linus branch?

  CC      arch/arm/mach-omap2/pm_bus.o
 arch/arm/mach-omap2/pm_bus.c: In function 'omap_pm_runtime_init':
 arch/arm/mach-omap2/pm_bus.c:64: error: implicit declaration of function
 'platform_bus_get_pm_ops'
 arch/arm/mach-omap2/pm_bus.c:64: warning: assignment makes pointer from
 integer without a cast
 arch/arm/mach-omap2/pm_bus.c:81: error: implicit declaration of function
 'platform_bus_set_pm_ops'
 make[1]: *** [arch/arm/mach-omap2/pm_bus.o] Error 1
 make: *** [arch/arm/mach-omap2] Error 2


I am trying using following commit as latest

Kevin Hilman
7ad0e386d46e9edff64705ab25337ad9130baf63
OMAP2+: defconfig: disable CPUfreq

Best Regards
Abraham
--
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