From: Rafał Miłecki Date: Wed, 11 May 2011 22:01:47 +0000 (+0200) Subject: bcma: pci: trivial: correct amount of maximum retries X-Git-Tag: v3.0-rc2~7^2~16^2~90 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f1a9c1e694f84938e6526590d23e88a791a8069f;p=profile%2Fivi%2Fkernel-x86-ivi.git bcma: pci: trivial: correct amount of maximum retries Signed-off-by: Rafał Miłecki Signed-off-by: John W. Linville --- diff --git a/drivers/bcma/driver_pci.c b/drivers/bcma/driver_pci.c index b98b835..e757e4e 100644 --- a/drivers/bcma/driver_pci.c +++ b/drivers/bcma/driver_pci.c @@ -81,7 +81,7 @@ static u16 bcma_pcie_mdio_read(struct bcma_drv_pci *pc, u8 device, u8 address) pcicore_write32(pc, mdio_data, v); /* Wait for the device to complete the transaction */ udelay(10); - for (i = 0; i < 200; i++) { + for (i = 0; i < max_retries; i++) { v = pcicore_read32(pc, mdio_control); if (v & 0x100 /* Trans complete */) { udelay(10);