Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 247795
b: refs/heads/master
c: 2a025f5
h: refs/heads/master
i:
  247793: be9c320
  247791: 975fb42
v: v3
  • Loading branch information
Phil Sutter authored and Herbert Xu committed May 11, 2011
1 parent d459b28 commit 506ea30
Show file tree
Hide file tree
Showing 2 changed files with 9 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: 811e6ed62347f1042ab1c560e5e2ebc8892f7f8f
refs/heads/master: 2a025f5dfcfaf7348fff6bda3ea007144f7eb47c
10 changes: 8 additions & 2 deletions trunk/drivers/crypto/mv_cesa.c
Original file line number Diff line number Diff line change
Expand Up @@ -1061,12 +1061,18 @@ static int mv_probe(struct platform_device *pdev)
writel(SRAM_CONFIG, cpg->reg + SEC_ACCEL_DESC_P0);

ret = crypto_register_alg(&mv_aes_alg_ecb);
if (ret)
if (ret) {
printk(KERN_WARNING MV_CESA
"Could not register aes-ecb driver\n");
goto err_irq;
}

ret = crypto_register_alg(&mv_aes_alg_cbc);
if (ret)
if (ret) {
printk(KERN_WARNING MV_CESA
"Could not register aes-cbc driver\n");
goto err_unreg_ecb;
}

ret = crypto_register_ahash(&mv_sha1_alg);
if (ret == 0)
Expand Down

0 comments on commit 506ea30

Please sign in to comment.