summaryrefslogtreecommitdiffstats
path: root/src/arch/i386/include/relocate.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/i386/include/relocate.h')
-rw-r--r--src/arch/i386/include/relocate.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/arch/i386/include/relocate.h b/src/arch/i386/include/relocate.h
index 5e87c693..d8002185 100644
--- a/src/arch/i386/include/relocate.h
+++ b/src/arch/i386/include/relocate.h
@@ -15,10 +15,10 @@ struct post_reloc_fn {
#define POST_RELOC_LIBRM 00
/* Macro for creating a post-relocation function table entry */
-#define POST_RELOC_FN( order, post_reloc_func ) \
- static struct post_reloc_fn PREFIX_OBJECT(post_reloc_fn__) \
- __table ( post_reloc_fn, order ) = { \
- .post_reloc = post_reloc_func, \
+#define POST_RELOC_FN( order, post_reloc_func ) \
+ struct post_reloc_fn PREFIX_OBJECT(post_reloc_fn__) \
+ __table ( post_reloc_fn, order ) = { \
+ .post_reloc = post_reloc_func, \
};
#endif