Holger Schurig <hs4233@xxxxxxxxxxxxxxxxxxxx> writes: > Keep the timeout the same (1000*500 == 100000 * 5), but take shorter > naps. Makes downloading the firmware slightly faster. > > Signed-off-by: Holger Schurig <hs4233@xxxxxxxxxxxxxxxxxxxx> > > --- linux.orig/drivers/net/wireless/libertas/if_cs.c > +++ linux/drivers/net/wireless/libertas/if_cs.c > @@ -148,11 +148,11 @@ > { > int i; > > - for (i = 0; i < 1000; i++) { > + for (i = 0; i < 100000; i++) { > u8 val = if_cs_read8(card, addr); > if (val == reg) > return i; That changes the return value. Although it doesn't matter since all callers only check for < 0, it should perhaps be changed to return 0 here to avoid confusion. Andreas. -- Andreas Schwab, SuSE Labs, schwab@xxxxxxx SuSE Linux Products GmbH, Maxfeldstraße 5, 90409 Nürnberg, Germany PGP key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 "And now for something completely different." -- 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