/* * 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/module.h> #include <linux/printk.h> #include <linux/watchdog.h> #include "watchdog_pretimeout.h" /** * pretimeout_noop - No operation on watchdog pretimeout event * @wdd - watchdog_device * * This function prints a message about pretimeout to kernel log. */
static void pretimeout_noop(struct watchdog_device *wdd) { pr_alert("watchdog%d: pretimeout event\n", wdd->id); }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Vladimir Zapolskiy | 20 | 100.00% | 1 | 100.00% |
Total | 20 | 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 | 107 | 100.00% | 1 | 100.00% |
Total | 107 | 100.00% | 1 | 100.00% |