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

Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
This commit is contained in:
Robert P. J. Day 2010-01-20 13:49:44 -07:00 committed by Grant Likely
parent 358934a60d
commit 68ea2d82c3
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ struct stmp_spi {
break; \
} \
cpu_relax(); \
} while (time_before(end_jiffies, jiffies)); \
} while (time_before(jiffies, end_jiffies)); \
succeeded; \
})