]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/sh/cpu/sh3/watchdog.c
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / arch / sh / cpu / sh3 / watchdog.c
CommitLineData
f9913a8e 1/*
754613f7
NI
2 * (C) Copyright 2010
3 * Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
4 *
f9913a8e
YS
5 * (C) Copyright 2007
6 * Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
7 *
1a459660 8 * SPDX-License-Identifier: GPL-2.0+
f9913a8e
YS
9 */
10
11#include <common.h>
12#include <asm/processor.h>
754613f7 13#include <asm/system.h>
f9913a8e
YS
14
15int watchdog_init(void)
16{
17 return 0;
18}
19
20void reset_cpu(unsigned long ignored)
21{
754613f7
NI
22 /* Address error with SR.BL=1 first. */
23 trigger_address_error();
24
f9913a8e
YS
25 while (1)
26 ;
27}