summaryrefslogtreecommitdiffstats
path: root/include/asm-arm/arch-nexuspci/system.h
blob: 7042dc4369e0a7934aa95ea4450aaa2b8e27d8b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * linux/include/asm-arm/arch-nexuspci/system.h
 *
 * Copyright (c) 1996,1997,1998 Russell King.
 */
#ifndef __ASM_ARCH_SYSTEM_H
#define __ASM_ARCH_SYSTEM_H

extern __inline__ void arch_hard_reset (void)
{
	/*
	 * loop endlessly - the watchdog will reset us if it's enabled.
	 */
	cli();
	while (1);
}

#endif