summary refs log tree commit diff
path: root/drivers/watchdog
diff options
context:
space:
mode:
authorRadu Rendec <rrendec@arista.com>2017-11-15 19:34:42 +0000
committerWim Van Sebroeck <wim@iguana.be>2017-12-28 20:45:44 +0100
commitc41fe7cdbd548121a59323a26d45e20ff08cc2eb (patch)
tree0ca9bf1af4530a71d5d0ed33a426bc56e622a405 /drivers/watchdog
parent18cffd68e0c44fc09817ea2fb66bebe8a9188093 (diff)
downloadlinux-c41fe7cdbd548121a59323a26d45e20ff08cc2eb.tar.gz
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 <rrendec@arista.com>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'drivers/watchdog')
-rw-r--r--drivers/watchdog/xen_wdt.c4
1 files changed, 0 insertions, 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);
-
 	err = platform_driver_register(&xen_wdt_driver);
 	if (err)
 		return err;
@@ -216,5 +213,4 @@ module_exit(xen_wdt_cleanup_module);
 
 MODULE_AUTHOR("Jan Beulich <jbeulich@novell.com>");
 MODULE_DESCRIPTION("Xen WatchDog Timer Driver");
-MODULE_VERSION(DRV_VERSION);
 MODULE_LICENSE("GPL");