Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 236119
b: refs/heads/master
c: 1af4791
h: refs/heads/master
i:
  236117: c4949c9
  236115: 1a8c84b
  236111: 5910231
v: v3
  • Loading branch information
Marcin Slusarz authored and Greg Kroah-Hartman committed Feb 23, 2011
1 parent 70c927d commit 4de2c18
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: 3f60554cb121b951d250639b01c828cf41aa09da
refs/heads/master: 1af4791552e462b37d0174407dc3173917e35ea0
4 changes: 2 additions & 2 deletions trunk/drivers/staging/et131x/et1310_rx.c
Original file line number Diff line number Diff line change
Expand Up @@ -717,10 +717,10 @@ void et131x_rx_dma_disable(struct et131x_adapter *etdev)
/* Setup the receive dma configuration register */
writel(0x00002001, &etdev->regs->rxdma.csr);
csr = readl(&etdev->regs->rxdma.csr);
if ((csr & 0x00020000) != 1) { /* Check halt status (bit 17) */
if ((csr & 0x00020000) == 0) { /* Check halt status (bit 17) */
udelay(5);
csr = readl(&etdev->regs->rxdma.csr);
if ((csr & 0x00020000) != 1)
if ((csr & 0x00020000) == 0)
dev_err(&etdev->pdev->dev,
"RX Dma failed to enter halt state. CSR 0x%08x\n",
csr);
Expand Down

0 comments on commit 4de2c18

Please sign in to comment.