1. 02 12月, 2011 1 次提交
    • A
      ARM: exynos4: Fix build error due to 'gic_bank_offset' undeclared · 69676c37
      Axel Lin 提交于
      Fix below build error:
        CC      arch/arm/mach-exynos/cpu.o
      arch/arm/mach-exynos/cpu.c: In function 'exynos4_init_irq':
      arch/arm/mach-exynos/cpu.c:245: error: 'gic_bank_offset' undeclared (first use in this function)
      arch/arm/mach-exynos/cpu.c:245: error: (Each undeclared identifier is reported only once
      arch/arm/mach-exynos/cpu.c:245: error: for each function it appears in.)
      arch/arm/mach-exynos/cpu.c:243: warning: unused variable 'bank_offset'
      make[1]: *** [arch/arm/mach-exynos/cpu.o] Error 1
      make: *** [arch/arm/mach-exynos] Error 2
      Signed-off-by: NAxel Lin <axel.lin@gmail.com>
      Signed-off-by: NMarc Zyngier <marc.zyngier@arm.com>
      69676c37
  2. 16 11月, 2011 38 次提交
  3. 15 11月, 2011 1 次提交
    • L
      fsl-rio: fix compile error · e0ce42e1
      Liu Gang 提交于
      The "#include <linux/module.h>" was replaced by "#include <linux/export.h>"
      in the patch "powerpc: various straight conversions from module.h --> export.h".
      This will cause the following compile problem:
      arch/powerpc/sysdev/fsl_rio.c: In function 'fsl_rio_mcheck_exception':
      arch/powerpc/sysdev/fsl_rio.c:296: error: implicit declaration of function 'search_exception_tables'.
      
      The file fsl_rio.c needs the declaration of function "search_exception_tables"
      in the header file "linux/module.h".
      Signed-off-by: NLiu Gang <Gang.Liu@freescale.com>
      Signed-off-by: NPaul Gortmaker <paul.gortmaker@windriver.com>
      e0ce42e1