summaryrefslogtreecommitdiffstats
path: root/arch/mips/include/asm/reloc.h
blob: adffd6f1c7ef4e827db6d1a3f599e063de12879e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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