summaryrefslogtreecommitdiffstats
path: root/arch/mips/include/asm/reloc.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/mips/include/asm/reloc.h')
-rw-r--r--arch/mips/include/asm/reloc.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/arch/mips/include/asm/reloc.h b/arch/mips/include/asm/reloc.h
new file mode 100644
index 0000000000..adffd6f1c7
--- /dev/null
+++ b/arch/mips/include/asm/reloc.h
@@ -0,0 +1,14 @@
+/* SPDX-License-Identifier: GPL-2.0-or-later */
+
+#ifndef _ASM_RELOC_H_
+#define _ASM_RELOC_H_
+
+static inline unsigned long get_runtime_offset(void)
+{
+ /* On MIPS, we always relocate before jumping into C */
+ return 0;
+}
+
+#include <asm-generic/reloc.h>
+
+#endif