mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-04 20:19:47 +08:00
make C=1:
arch/arm/mach-shmobile/smp-emev2.c:51:29: warning: symbol 'emev2_smp_ops' was not declared. Should it be static?
To fix this, move the forward declaration of emev2_smp_ops to a header
file, and include it where appropriate.
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
7 lines
129 B
C
7 lines
129 B
C
#ifndef __ASM_EMEV2_H__
|
|
#define __ASM_EMEV2_H__
|
|
|
|
extern const struct smp_operations emev2_smp_ops;
|
|
|
|
#endif /* __ASM_EMEV2_H__ */
|