watchdog: xen_wdt: remove info message and version number
"Linux Kernel Mailing List" <[email protected]>
| Newsgroups | gmane.linux.kernel.commits.head |
|---|---|
| Message-ID | <[email protected]> |
Web: https://git.kernel.org/torvalds/c/c41fe7cdbd548121a59323a26d45e20ff08cc2eb Commit: c41fe7cdbd548121a59323a26d45e20ff08cc2eb Parent: 18cffd68e0c44fc09817ea2fb66bebe8a9188093 Refname: refs/heads/master Author: Radu Rendec <[email protected]> AuthorDate: Wed Nov 15 19:34:42 2017 +0000 Committer: Wim Van Sebroeck <[email protected]> CommitDate: Thu Dec 28 20:45:44 2017 +0100 watchdog: xen_wdt: remove info message and version number The initial info message (early in the xen_wdt_init_module() function) is not very useful and we already have a message on successful probe. If the probe fails, additional messages are printed anyway. The version number serves no useful purpose and it ran out of favor upstream anyway. Signed-off-by: Radu Rendec <[email protected]> Reviewed-by: Guenter Roeck <[email protected]> Signed-off-by: Guenter Roeck <[email protected]> Signed-off-by: Wim Van Sebroeck <[email protected]> --- drivers/watchdog/xen_wdt.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/drivers/watchdog/xen_wdt.c b/drivers/watchdog/xen_wdt.c index 51576e15a086..f1c016d015b3 100644 --- a/drivers/watchdog/xen_wdt.c +++ b/drivers/watchdog/xen_wdt.c @@ -10,7 +10,6 @@ */ #define DRV_NAME "xen_wdt" -#define DRV_VERSION "0.01" #include <linux/bug.h> #include <linux/errno.h> @@ -189,8 +188,6 @@ static int __init xen_wdt_init_module(void) if (!xen_domain()) return -ENODEV; - pr_info("Xen WatchDog Timer Driver v%s\n", DRV_VERSION);