From: Will Deacon Date: Tue, 7 Aug 2012 16:59:54 +0000 (+0100) Subject: openrisc: delay: fix handling of counter overflow X-Git-Tag: v3.7-rc1~13^2~5 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=807607f79b9d0ed81561746e4e1121905e75cf0f;p=pandora-kernel.git openrisc: delay: fix handling of counter overflow If the counter overflows during a __delay operation, we will exit the loop prematurely. For example, calling __delay(0x100) with the counter at 0xffffff00 gives us a target of 0x0. The unsigned comparison in the while loop will likely be false on the first iteration (if the counter is now anything other than 0) and we will return early. This patch fixes the problem by comparing deltas in the loop rather than absolute values. Cc: Jon Masters Signed-off-by: Will Deacon Signed-off-by: Jonas Bonn --- Reading git-diff-tree failed