mirror of
https://github.com/torvalds/linux.git
synced 2025-11-07 12:10:52 +02: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>
6 lines
129 B
C
6 lines
129 B
C
#ifndef __ASM_EMEV2_H__
|
|
#define __ASM_EMEV2_H__
|
|
|
|
extern const struct smp_operations emev2_smp_ops;
|
|
|
|
#endif /* __ASM_EMEV2_H__ */
|