From: =?utf-8?q?Kristian_H=C3=B8gsberg?= Subject: firewire: Increase the number of config rom retries and the retry delay. Date: Tue, 27 Mar 2007 01:43:43 -0400 Some devices have a really long power-on cycle, and we fail to successfully probe these if they're plugged in and then turned on. There's really no down-side to bumping the number of retries and the retry delay, and most devices will get picked up within the first couple of retries anyway. Signed-off-by: Kristian Høgsberg Signed-off-by: Stefan Richter --- drivers/firewire/fw-device.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/firewire/fw-device.c b/drivers/firewire/fw-device.c index 2bf86aa..b786fce 100644 --- a/drivers/firewire/fw-device.c +++ b/drivers/firewire/fw-device.c @@ -604,8 +604,8 @@ static struct device_type fw_device_type = { * aggressive than that, since it scales pretty well; if 10 devices * are plugged in, they're all getting read within one second. */ -#define MAX_RETRIES 5 -#define RETRY_DELAY (2 * HZ) +#define MAX_RETRIES 10 +#define RETRY_DELAY (3 * HZ) #define INITIAL_DELAY (HZ / 2) static void fw_device_init(struct work_struct *work) -- 1.5.0.5