Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 254767
b: refs/heads/master
c: 3075741
h: refs/heads/master
i:
  254765: 2042c68
  254763: 2b930d2
  254759: cc63878
  254751: 183b2eb
v: v3
  • Loading branch information
Padmavathi Venna authored and Kukjin Kim committed Jul 6, 2011
1 parent a983976 commit 5cd633e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 8918034dfb7b0f625ba9eb0329d5750a9573f62e
refs/heads/master: 3075741417d47cccc890ed30da9ece666006553a
4 changes: 1 addition & 3 deletions trunk/drivers/spi/spi_s3c64xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -116,9 +116,7 @@
(((i)->fifo_lvl_mask + 1))) \
? 1 : 0)

#define S3C64XX_SPI_ST_TX_DONE(v, i) ((((v) >> (i)->rx_lvl_offset) & \
(((i)->fifo_lvl_mask + 1) << 1)) \
? 1 : 0)
#define S3C64XX_SPI_ST_TX_DONE(v, i) (((v) & (1 << (i)->tx_st_done)) ? 1 : 0)
#define TX_FIFO_LVL(v, i) (((v) >> 6) & (i)->fifo_lvl_mask)
#define RX_FIFO_LVL(v, i) (((v) >> (i)->rx_lvl_offset) & (i)->fifo_lvl_mask)

Expand Down

0 comments on commit 5cd633e

Please sign in to comment.