1258546Sganbold/*-
2266337Sian * Copyright (c) 2013 Ganbold Tsagaankhuu <ganbold@freebsd.org>
3258546Sganbold * All rights reserved.
4258546Sganbold *
5258546Sganbold * Redistribution and use in source and binary forms, with or without
6258546Sganbold * modification, are permitted provided that the following conditions
7258546Sganbold * are met:
8258546Sganbold * 1. Redistributions of source code must retain the above copyright
9258546Sganbold *    notice, this list of conditions and the following disclaimer.
10258546Sganbold * 2. Redistributions in binary form must reproduce the above copyright
11258546Sganbold *    notice, this list of conditions and the following disclaimer in the
12258546Sganbold *    documentation and/or other materials provided with the distribution.
13258546Sganbold *
14258546Sganbold * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15258546Sganbold * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16258546Sganbold * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17258546Sganbold * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18258546Sganbold * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19258546Sganbold * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20258546Sganbold * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21258546Sganbold * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22258546Sganbold * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23258546Sganbold * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24258546Sganbold * SUCH DAMAGE.
25258546Sganbold *
26258546Sganbold * $FreeBSD$
27258546Sganbold *
28258546Sganbold */
29258546Sganbold#ifndef	__RK30XX_WDOG_H__
30258546Sganbold#define	__RK30XX_WDOG_H__
31258546Sganbold
32258546Sganboldvoid rk30_wd_watchdog_reset(void);
33258546Sganbold
34258546Sganbold#endif /*__RK30XX_WDOG_H__*/
35258546Sganbold
36