1. 04 4月, 2012 2 次提交
  2. 30 3月, 2012 1 次提交
    • G
      ARM: OMAP: pm: fix compilation break · 335aece5
      Govindraj.R 提交于
      Fix the compilation break observed on latest mainline caused
      by 9f97da78 (Disintegrate asm/system.h for ARM):
      
      arch/arm/mach-omap1/pm.c: In function 'omap_pm_prepare':
      arch/arm/mach-omap1/pm.c:587: error: implicit declaration of function 'disable_hlt'
      arch/arm/mach-omap1/pm.c: In function 'omap_pm_finish':
      arch/arm/mach-omap1/pm.c:624: error: implicit declaration of function 'enable_hlt'
      arch/arm/mach-omap1/pm.c: In function 'omap_pm_init':
      arch/arm/mach-omap1/pm.c:681: error: 'arm_pm_idle' undeclared (first use in this function)
      ...
      
      arch/arm/mach-omap2/pm.c: In function 'omap_pm_begin':
      arch/arm/mach-omap2/pm.c:239: error: implicit declaration of function 'disable_hlt'
      arch/arm/mach-omap2/pm.c: In function 'omap_pm_end':
      arch/arm/mach-omap2/pm.c:247: error: implicit declaration of function 'enable_hlt'
      Signed-off-by: NGovindraj.R <govindraj.raja@ti.com>
      Acked-by: NKevin Hilman <khilman@ti.com>
      [tony@atomide.com: updated to fix omap1 too]
      Signed-off-by: NTony Lindgren <tony@atomide.com>
      335aece5
  3. 29 3月, 2012 2 次提交
  4. 28 3月, 2012 1 次提交
  5. 22 3月, 2012 1 次提交
  6. 21 3月, 2012 2 次提交
  7. 20 3月, 2012 1 次提交
  8. 17 3月, 2012 1 次提交
  9. 14 3月, 2012 1 次提交
  10. 13 3月, 2012 1 次提交
  11. 12 3月, 2012 6 次提交
  12. 09 3月, 2012 1 次提交
    • T
      ARM: OMAP2+: Fix build for omap4 only builds with missing include of linux/bug.h · 4647ca57
      Tony Lindgren 提交于
      Found few more with randconfig generated .configs:
      
      In file included from arch/arm/mach-omap2/prm-regbits-34xx.h:17,
                       from arch/arm/mach-omap2/vc.c:18:
      arch/arm/mach-omap2/prm2xxx_3xxx.h: In function ‘omap2_prm_read_mod_reg’:
      arch/arm/mach-omap2/prm2xxx_3xxx.h:239: error: implicit declaration of function ‘WARN’
      
      In file included from arch/arm/mach-omap2/powerdomain44xx.c:22:
      arch/arm/mach-omap2/prm2xxx_3xxx.h: In function ‘omap2_prm_read_mod_reg’:
      arch/arm/mach-omap2/prm2xxx_3xxx.h:239: error: implicit declaration of function ‘WARN’
      
      This is because omap2_prm functions are currently just stubs for
      omap4 only builds.
      Signed-off-by: NTony Lindgren <tony@atomide.com>
      4647ca57
  13. 08 3月, 2012 3 次提交
    • T
      ARM: OMAP2+: Fix section warnings for hsmmc_init_one · 6028505c
      Tony Lindgren 提交于
      Otherwise we can get the following error depending on
      the compiler:
      
      WARNING: arch/arm/mach-omap2/built-in.o(.text+0xafe0):
      Section mismatch in reference from the function omap_hsmmc_init_one()
      to the function .init.text:omap_hsmmc_pdata_init()
      The function omap_hsmmc_init_one() references
      the function __init omap_hsmmc_pdata_init().
      This is often because omap_hsmmc_init_one lacks a __init
      annotation or the annotation of omap_hsmmc_pdata_init is wrong.
      Signed-off-by: NTony Lindgren <tony@atomide.com>
      6028505c
    • T
      ARM: OMAP2+: Fix build issues with missing include of linux/bug.h · d9a5f4dd
      Tony Lindgren 提交于
      Otherwise we can get the following if bug.h is not included from kernel.h:
      
      arch/arm/mach-omap2/powerdomain-common.c:
      In function 'omap2_pwrdm_get_mem_bank_onstate_mask':
      arch/arm/mach-omap2/powerdomain-common.c:64:3: error:
      implicit declaration of function 'WARN_ON' [-Werror=implicit-function-declaration]
      cc1: some warnings being treated as errors
      Signed-off-by: NTony Lindgren <tony@atomide.com>
      Signed-off-by: NOlof Johansson <olof@lixom.net>
      d9a5f4dd
    • T
      ARM: OMAP2+: Fix build error after merge · 2b43e4e5
      Tony Lindgren 提交于
      Commit 9890ce44 (ARM: get rid of asm/irq.h in asm/prom.h)
      removed include of asm/irq.h in asm/prom.h. This commit
      together with recent omap cleanup to remove io.h causes
      build breakage:
      
      arrch/arm/mach-omap2/control.c: In function 'omap3_ctrl_write_boot_mode':
      arch/arm/mach-omap2/control.c:238: error:
      'OMAP343X_CTRL_BASE' undeclared (first use in this function)
      ...
      
      Fix this by including hardware.h directly where needed
      instead of relying on asm/irq.h in asm/prom.h.
      Reported-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      Signed-off-by: NTony Lindgren <tony@atomide.com>
      2b43e4e5
  14. 07 3月, 2012 7 次提交
  15. 06 3月, 2012 10 次提交