]> git.sur5r.net Git - u-boot/blobdiff - common/cmd_date.c
Conditionally perform common relocation fixups
[u-boot] / common / cmd_date.c
index b69e93508583be1e5ad0e426640ff6b64c324694..9f50f8956e5fad880887f29fd3ed2f9dab15e20c 100644 (file)
@@ -35,7 +35,11 @@ const char *weekdays[] = {
        "Sun", "Mon", "Tues", "Wednes", "Thurs", "Fri", "Satur",
 };
 
+#ifdef CONFIG_RELOC_FIXUP_WORKS
+#define RELOC(a)       a
+#else
 #define RELOC(a)       ((typeof(a))((unsigned long)(a) + gd->reloc_off))
+#endif
 
 int mk_date (char *, struct rtc_time *);