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>
  */
 
 #define DRV_NAME       "xen_wdt"
-#define DRV_VERSION    "0.01"
 
 #include <linux/bug.h>
 #include <linux/errno.h>
        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;
 
 MODULE_AUTHOR("Jan Beulich <jbeulich@novell.com>");
 MODULE_DESCRIPTION("Xen WatchDog Timer Driver");
-MODULE_VERSION(DRV_VERSION);
 MODULE_LICENSE("GPL");