Commit 68ea2d82c3671d2eccb600e6871fcbec1cac7fca

Authored by Robert P. J. Day
Committed by Grant Likely
1 parent 358934a60d

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>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

drivers/spi/spi_stmp.c
... ... @@ -76,7 +76,7 @@
76 76 break; \
77 77 } \
78 78 cpu_relax(); \
79   - } while (time_before(end_jiffies, jiffies)); \
  79 + } while (time_before(jiffies, end_jiffies)); \
80 80 succeeded; \
81 81 })
82 82