Re: [PATCH] PCI: Fix regression in pci_restore_state()
From: Linus Torvalds <torvalds@linux-foundation.org>
Date: 2012-04-15 18:59:43
Also in:
linux-pci, lkml
From: Linus Torvalds <torvalds@linux-foundation.org>
Date: 2012-04-15 18:59:43
Also in:
linux-pci, lkml
On Sun, Apr 15, 2012 at 11:47 AM, Rafael J. Wysocki [off-list ref] wrote:
mdelay(10) doesn't really look good either to me in this case, though.
Oh, I agree. What kind of ass-backwards device actually needs that
kind of crazy delays? It is almost certainly buggy.
With retries, 10ms delays are totally unacceptable. There's something wrong.
A single ms *may* be ok.
Anyway, can you also split the actual "write _one_ register with
retry" into a function of its own? The code looks like crap with those
multiple levels of looping, with conditionals inside them etc. With a
simple helper function, you could change the break into return, and it
would look much better, I bet.
Linus