Skip to content

Commit

Permalink
spi: Fix reversed args to time_before() in Freescale stmp driver.
Browse files Browse the repository at this point in the history
Signed-off-by: Robert P. J. Day <[email protected]>
Signed-off-by: Grant Likely <[email protected]>
  • Loading branch information
rpjday authored and glikely committed Jan 20, 2010
1 parent 358934a commit 68ea2d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/spi/spi_stmp.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ struct stmp_spi {
break; \
} \
cpu_relax(); \
} while (time_before(end_jiffies, jiffies)); \
} while (time_before(jiffies, end_jiffies)); \
succeeded; \
})

Expand Down

0 comments on commit 68ea2d8

Please sign in to comment.