Skip to content
  1. Dec 02, 2011
    • Axel Lin's avatar
      ARM: exynos4: Fix build error due to 'gic_bank_offset' undeclared · 69676c37
      Axel Lin authored
      
      
      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: default avatarAxel Lin <axel.lin@gmail.com>
      Signed-off-by: default avatarMarc Zyngier <marc.zyngier@arm.com>
      69676c37
  2. Nov 16, 2011
  3. Nov 15, 2011
    • Liu Gang's avatar
      fsl-rio: fix compile error · e0ce42e1
      Liu Gang authored
      
      
      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: default avatarLiu Gang <Gang.Liu@freescale.com>
      Signed-off-by: default avatarPaul Gortmaker <paul.gortmaker@windriver.com>
      e0ce42e1