From: Ulrich Kunitz Date: Mon, 29 Jan 2007 00:59:28 +0000 (+0000) Subject: [PATCH] zd1211rw: Reset device in the probe call X-Git-Tag: v2.6.21-rc1~74^2~36^2~7 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=6e3632f66110b144183d53d550a51cbbbabc178f;p=karo-tx-linux.git [PATCH] zd1211rw: Reset device in the probe call This resets the device in the probe call. It does work with 2.6.19.2 including the softmac patches. It might fix the reboot/reset problems a lot of people reported. Signed-off-by: Ulrich Kunitz Signed-off-by: Daniel Drake Signed-off-by: John W. Linville --- diff --git a/drivers/net/wireless/zd1211rw/zd_usb.c b/drivers/net/wireless/zd1211rw/zd_usb.c index 2468ad662d3d..3ac308af24ae 100644 --- a/drivers/net/wireless/zd1211rw/zd_usb.c +++ b/drivers/net/wireless/zd1211rw/zd_usb.c @@ -1027,6 +1027,8 @@ static int probe(struct usb_interface *intf, const struct usb_device_id *id) goto error; } + usb_reset_device(interface_to_usbdev(intf)); + netdev = zd_netdev_alloc(intf); if (netdev == NULL) { r = -ENOMEM;