x86: include proper prototypes for rodata_test

extern should not appear in C files.  Also, the definitions
do not match the prototype currently, not sure what way you
want to go with this, I've switched the prototype to return
int, but I can see going to the void return as well.

Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
Harvey Harrison
2008-02-12 12:12:01 -08:00
committed by Ingo Molnar
parent 184652eb6f
commit 7bfeab9af9
4 changed files with 8 additions and 3 deletions

View File

@@ -48,12 +48,15 @@ void cpa_init(void);
#ifdef CONFIG_DEBUG_RODATA
void mark_rodata_ro(void);
extern const int rodata_test_data;
#endif
#ifdef CONFIG_DEBUG_RODATA_TEST
void rodata_test(void);
int rodata_test(void);
#else
static inline void rodata_test(void)
static inline int rodata_test(void)
{
return 0;
}
#endif