Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 142549
b: refs/heads/master
c: 04b95d2
h: refs/heads/master
i:
  142547: 4fdb1bf
v: v3
  • Loading branch information
Mike Frysinger authored and Linus Torvalds committed Apr 7, 2009
1 parent 332a0d1 commit 3f1633e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 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: ace32865a3767e4e385b883868c228a2a6db225a
refs/heads/master: 04b95d2f7453d64f89ca1d8c3e70bcc7cc38320f
16 changes: 11 additions & 5 deletions trunk/drivers/spi/spi_bfin5xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -559,6 +559,7 @@ static irqreturn_t dma_irq_handler(int irq, void *dev_id)
struct driver_data *drv_data = dev_id;
struct chip_data *chip = drv_data->cur_chip;
struct spi_message *msg = drv_data->cur_msg;
u16 spistat = read_STAT(drv_data);

dev_dbg(&drv_data->pdev->dev, "in dma_irq_handler\n");
clear_dma_irqstat(drv_data->dma_channel);
Expand All @@ -582,13 +583,18 @@ static irqreturn_t dma_irq_handler(int irq, void *dev_id)
while (!(read_STAT(drv_data) & SPIF))
cpu_relax();

msg->actual_length += drv_data->len_in_bytes;
if (spistat & RBSY) {
msg->state = ERROR_STATE;
dev_err(&drv_data->pdev->dev, "dma receive: fifo/buffer overflow\n");
} else {
msg->actual_length += drv_data->len_in_bytes;

if (drv_data->cs_change)
cs_deactive(drv_data, chip);
if (drv_data->cs_change)
cs_deactive(drv_data, chip);

/* Move to next transfer */
msg->state = next_transfer(drv_data);
/* Move to next transfer */
msg->state = next_transfer(drv_data);
}

/* Schedule transfer tasklet */
tasklet_schedule(&drv_data->pump_transfers);
Expand Down

0 comments on commit 3f1633e

Please sign in to comment.