Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 357714
b: refs/heads/master
c: 17bebdc
h: refs/heads/master
v: v3
  • Loading branch information
Julia Lawall authored and Herbert Xu committed Jan 19, 2013
1 parent d4144c9 commit 47f2427
Show file tree
Hide file tree
Showing 2 changed files with 4 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: d20fb18be246d196225ed151c126832b2dab6506
refs/heads/master: 17bebdcd5c7c56cde82b8ccb02c5cea69e05f6d3
6 changes: 3 additions & 3 deletions trunk/drivers/crypto/bfin_crc.c
Original file line number Diff line number Diff line change
Expand Up @@ -694,7 +694,7 @@ static int __devinit bfin_crypto_crc_probe(struct platform_device *pdev)
dma_free_coherent(&pdev->dev, PAGE_SIZE, crc->sg_cpu, crc->sg_dma);
free_dma(crc->dma_ch);
out_error_irq:
free_irq(crc->irq, crc->dev);
free_irq(crc->irq, crc);
out_error_unmap:
iounmap((void *)crc->regs);
out_error_free_mem:
Expand All @@ -720,10 +720,10 @@ static int __devexit bfin_crypto_crc_remove(struct platform_device *pdev)

crypto_unregister_ahash(&algs);
tasklet_kill(&crc->done_task);
iounmap((void *)crc->regs);
free_dma(crc->dma_ch);
if (crc->irq > 0)
free_irq(crc->irq, crc->dev);
free_irq(crc->irq, crc);
iounmap((void *)crc->regs);
kfree(crc);

return 0;
Expand Down

0 comments on commit 47f2427

Please sign in to comment.