From: Ivo van Doorn Date: Sun, 27 Jul 2008 13:06:50 +0000 (+0200) Subject: rt2x00: rt61pci needs another millisecond after firmware upload X-Git-Tag: v2.6.27-rc2~2^2~24^2~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e6d3e902088ac5da77b074f513e3cb80422ff471;p=platform%2Fkernel%2Flinux-3.10.git rt2x00: rt61pci needs another millisecond after firmware upload After the hardware has indicated the firmware upload has completed and the device is ready, we should wait another millisecond to make sure the device is really ready to continue. Without this timout, bringing the interface down and up again will fail due to incorrect register initialization. Signed-off-by: Ivo van Doorn Signed-off-by: John W. Linville --- diff --git a/drivers/net/wireless/rt2x00/rt61pci.c b/drivers/net/wireless/rt2x00/rt61pci.c index fbe2a65..087e90b 100644 --- a/drivers/net/wireless/rt2x00/rt61pci.c +++ b/drivers/net/wireless/rt2x00/rt61pci.c @@ -1004,6 +1004,11 @@ static int rt61pci_load_firmware(struct rt2x00_dev *rt2x00dev, const void *data, } /* + * Hardware needs another millisecond before it is ready. + */ + msleep(1); + + /* * Reset MAC and BBP registers. */ reg = 0;