1. 01 4月, 2015 2 次提交
  2. 27 3月, 2015 2 次提交
  3. 27 10月, 2014 3 次提交
  4. 16 5月, 2014 1 次提交
  5. 13 11月, 2012 1 次提交
    • P
      ARM: OMAP2: Fix compillation error in cm_common · cc4b1e24
      Peter Ujfalusi 提交于
      Fixes the following error:
        CC      arch/arm/mach-omap2/cm_common.o
      arch/arm/mach-omap2/cm_common.c: In function ‘cm_register’:
      arch/arm/mach-omap2/cm_common.c:42:11: error: ‘EINVAL’ undeclared (first use in this function)
      arch/arm/mach-omap2/cm_common.c:42:11: note: each undeclared identifier is reported only once for each function it appears in
      arch/arm/mach-omap2/cm_common.c:45:11: error: ‘EEXIST’ undeclared (first use in this function)
      arch/arm/mach-omap2/cm_common.c: In function ‘cm_unregister’:
      arch/arm/mach-omap2/cm_common.c:66:11: error: ‘EINVAL’ undeclared (first use in this function)
      make[1]: *** [arch/arm/mach-omap2/cm_common.o] Error 1
      make: *** [arch/arm/mach-omap2] Error 2
      Signed-off-by: NPeter Ujfalusi <peter.ujfalusi@ti.com>
      Acked-by: NPaul Walmsley <paul@pwsan.com>
      Signed-off-by: NTony Lindgren <tony@atomide.com>
      cc4b1e24
  6. 09 11月, 2012 2 次提交
  7. 21 10月, 2012 1 次提交
    • P
      ARM: OMAP2+: CM: prepare for use of cm_ll_data function pointers · 21325b25
      Paul Walmsley 提交于
      There are several CM operations which behave similarly across OMAP2+
      SoCs, but which have slight differences in their underlying
      implementations.
      
      This patch creates the support code for this function pointer
      registration process.  No function pointers are included yet, but a
      subsequent patch will create these for the module IDLEST registers.
      
      This patch allows other code to use CM-provided data and operations
      without needing to know which SoC is currently in use.  A further
      description of the concept is provided in the patch entitled
      "ARM: OMAP2+: PRM: prepare for use of prm_ll_data function pointers".
      Signed-off-by: NPaul Walmsley <paul@pwsan.com>
      21325b25