X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=include%2Fwdt.h;h=aea5abc76803e62dcaded7d384355c8463ab60f4;hb=a1f5f4ac20c0947afda93f9b906facfbee2708fe;hp=9b90fbeeb3a304d44ce1149ffd7d1dc9899cc3c3;hpb=ceff355a5f3038ddb49618d9adc716b0ed978aea;p=platform%2Fkernel%2Fu-boot.git diff --git a/include/wdt.h b/include/wdt.h index 9b90fbe..aea5abc 100644 --- a/include/wdt.h +++ b/include/wdt.h @@ -1,12 +1,14 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ /* * Copyright 2017 Google, Inc - * - * SPDX-License-Identifier: GPL-2.0+ */ #ifndef _WDT_H_ #define _WDT_H_ +#include +#include + /* * Implement a simple watchdog uclass. Watchdog is basically a timer that * is used to detect or recover from malfunction. During normal operation @@ -104,4 +106,6 @@ struct wdt_ops { int (*expire_now)(struct udevice *dev, ulong flags); }; +int initr_watchdog(void); + #endif /* _WDT_H_ */