1 /* SPDX-License-Identifier: GPL-2.0+ */
10 * This source code is part of the generic code that can be used
11 * by all the watchdog timer drivers.
13 * Based on source code of the following authors:
20 * Neither Alan Cox, CymruNet Ltd., Wim Van Sebroeck nor Iguana vzw.
21 * admit liability nor provide warranty for any of this software.
22 * This material is provided "AS-IS" and at no charge.
25 #define MAX_DOGS 32 /* Maximum number of watchdog devices */
28 * Functions/procedures to be called by the core
30 extern int watchdog_dev_register(struct watchdog_device *);
31 extern void watchdog_dev_unregister(struct watchdog_device *);
32 extern int __init watchdog_dev_init(void);
33 extern void __exit watchdog_dev_exit(void);