arm64: kasan: fix issues reported by sparse
authorWill Deacon <will.deacon@arm.com>
Tue, 13 Oct 2015 13:01:06 +0000 (14:01 +0100)
committerCatalin Marinas <catalin.marinas@arm.com>
Tue, 13 Oct 2015 13:54:42 +0000 (14:54 +0100)
commit83040123fde42ec532d3b632efb5f7f84024e61d
tree668de0164f4db8ac50f426839770edd5139a8b51
parent4fc57692268bf841a3cc90b3b056640de2bb1605
arm64: kasan: fix issues reported by sparse

Sparse reports some new issues introduced by the kasan patches:

  arch/arm64/mm/kasan_init.c:91:13: warning: no previous prototype for
  'kasan_early_init' [-Wmissing-prototypes] void __init kasan_early_init(void)
             ^
  arch/arm64/mm/kasan_init.c:91:13: warning: symbol 'kasan_early_init'
  was not declared. Should it be static? [sparse]

This patch resolves the problem by adding a prototype for
kasan_early_init and marking the function as asmlinkage, since it's only
called from head.S.

Signed-off-by: Will Deacon <will.deacon@arm.com>
Acked-by: Andrey Ryabinin <ryabinin.a.a@gmail.com>
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
arch/arm64/include/asm/kasan.h
arch/arm64/mm/kasan_init.c