summaryrefslogtreecommitdiffstats
path: root/arch/mips/lib/end.S
blob: 78bd15ec179d281ae7cf9b23f6e8c5299c8e681e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
 * Copyright (C) 2018 Oleksij Rempel <linux@rempel-privat.de>
 */

#include <asm/asm.h>
#include <asm/regdef.h>

	.text
	.set	noreorder
LEAF(mips_dead_end)
__error:
	b	__error;
	 nop;

	END(mips_dead_end)