Commit d632eb1bf22e11def74e4e53cc47d790fbdba105 removed usage of version[], remove no longer needed variable and print version instead in ezusb_probe(). Signed-off-by: Danny Kukawka <danny.kukawka@xxxxxxxxx> --- drivers/net/wireless/orinoco/orinoco_usb.c | 7 ++----- 1 files changed, 2 insertions(+), 5 deletions(-) diff --git a/drivers/net/wireless/orinoco/orinoco_usb.c b/drivers/net/wireless/orinoco/orinoco_usb.c index ae8ce56..2b413cf 100644 --- a/drivers/net/wireless/orinoco/orinoco_usb.c +++ b/drivers/net/wireless/orinoco/orinoco_usb.c @@ -1583,6 +1583,8 @@ static int ezusb_probe(struct usb_interface *interface, int retval = 0; int i; + printk(KERN_DEBUG DRIVER_NAME " " DRIVER_VERSION); + priv = alloc_orinocodev(sizeof(*upriv), &udev->dev, ezusb_hard_reset, NULL); if (!priv) { @@ -1754,11 +1756,6 @@ static struct usb_driver orinoco_driver = { .id_table = ezusb_table, }; -/* Can't be declared "const" or the whole __initdata section will - * become const */ -static char version[] __initdata = DRIVER_NAME " " DRIVER_VERSION - " (Manuel Estrada Sainz)"; - module_usb_driver(orinoco_driver); MODULE_AUTHOR("Manuel Estrada Sainz"); -- 1.7.7.3 -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html