Commit 68ea2d82 authored by Robert P. J. Day's avatar Robert P. J. Day Committed by Grant Likely

spi: Fix reversed args to time_before() in Freescale stmp driver.

Signed-off-by: default avatarRobert P. J. Day <rpjday@crashcourse.ca>
Signed-off-by: default avatarGrant Likely <grant.likely@secretlab.ca>
parent 358934a6
......@@ -76,7 +76,7 @@ struct stmp_spi {
break; \
} \
cpu_relax(); \
} while (time_before(end_jiffies, jiffies)); \
} while (time_before(jiffies, end_jiffies)); \
succeeded; \
})
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment