/* * Copyright (C) 2015-2016 Mentor Graphics * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * */ #include <linux/kernel.h> #include <linux/module.h> #include <linux/watchdog.h> #include "watchdog_pretimeout.h" /** * pretimeout_panic - Panic on watchdog pretimeout event * @wdd - watchdog_device * * Panic, watchdog has not been fed till pretimeout event. */
static void pretimeout_panic(struct watchdog_device *wdd) { panic("watchdog pretimeout event\n"); }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Vladimir Zapolskiy | 16 | 100.00% | 1 | 100.00% |
Total | 16 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Vladimir Zapolskiy | 16 | 100.00% | 1 | 100.00% |
Total | 16 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Vladimir Zapolskiy | 15 | 100.00% | 1 | 100.00% |
Total | 15 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Vladimir Zapolskiy | 103 | 100.00% | 1 | 100.00% |
Total | 103 | 100.00% | 1 | 100.00% |