Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 110121
b: refs/heads/master
c: 20b918d
h: refs/heads/master
i:
  110119: 0bf5909
v: v3
  • Loading branch information
Mike Rapoport authored and Linus Torvalds committed Oct 1, 2008
1 parent 13108f0 commit 7f8a023
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: edfd222fc54664b789cec01e78d442ce9461e79b
refs/heads/master: 20b918dc77b383e9779dafceee3f2198a6f7b0e5
4 changes: 2 additions & 2 deletions trunk/drivers/spi/pxa2xx_spi.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ MODULE_ALIAS("platform:pxa2xx-spi");

#define DMA_INT_MASK (DCSR_ENDINTR | DCSR_STARTINTR | DCSR_BUSERR)
#define RESET_DMA_CHANNEL (DCSR_NODESC | DMA_INT_MASK)
#define IS_DMA_ALIGNED(x) (((x) & 0x07) == 0)
#define IS_DMA_ALIGNED(x) ((((u32)(x)) & 0x07) == 0)
#define MAX_DMA_LEN 8191

/*
Expand Down Expand Up @@ -896,7 +896,7 @@ static void pump_transfers(unsigned long data)
|| transfer->rx_dma || transfer->tx_dma) {
dev_err(&drv_data->pdev->dev,
"pump_transfers: mapped transfer length "
"of %lu is greater than %d\n",
"of %u is greater than %d\n",
transfer->len, MAX_DMA_LEN);
message->status = -EINVAL;
giveback(drv_data);
Expand Down

0 comments on commit 7f8a023

Please sign in to comment.