[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1328886133-22757-1-git-send-email-danny.kukawka@bisect.de>
Date: Fri, 10 Feb 2012 16:02:13 +0100
From: Danny Kukawka <danny.kukawka@...ect.de>
To: "John W. Linville" <linville@...driver.com>
Cc: Danny Kukawka <dkukawka@...e.de>,
"David S. Miller" <davem@...emloft.net>,
Jiri Pirko <jpirko@...hat.com>,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
linux-wireless@...r.kernel.org,
orinoco-devel@...ts.sourceforge.net, netdev@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: [PATCH] orinoco_usb: fix -Wunused-variable, remove version
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@...ect.de>
---
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-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists