Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 56922
b: refs/heads/master
c: e5f1b19
h: refs/heads/master
v: v3
  • Loading branch information
Imre Deak authored and Linus Torvalds committed May 24, 2007
1 parent f151dec commit bd5f5ff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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: 81fc632355834b7133ec4f3341cfb171bd9edc31
refs/heads/master: e5f1b194a9afa3e686986839eb67620e6549e9ad
4 changes: 2 additions & 2 deletions trunk/drivers/spi/omap_uwire.c
Original file line number Diff line number Diff line change
Expand Up @@ -358,11 +358,11 @@ static int uwire_setup_transfer(struct spi_device *spi, struct spi_transfer *t)
switch (spi->mode & (SPI_CPOL | SPI_CPHA)) {
case SPI_MODE_0:
case SPI_MODE_3:
flags |= UWIRE_WRITE_RISING_EDGE | UWIRE_READ_FALLING_EDGE;
flags |= UWIRE_WRITE_FALLING_EDGE | UWIRE_READ_RISING_EDGE;
break;
case SPI_MODE_1:
case SPI_MODE_2:
flags |= UWIRE_WRITE_FALLING_EDGE | UWIRE_READ_RISING_EDGE;
flags |= UWIRE_WRITE_RISING_EDGE | UWIRE_READ_FALLING_EDGE;
break;
}

Expand Down

0 comments on commit bd5f5ff

Please sign in to comment.