Commit 57268aba authored by Christian Lamparter's avatar Christian Lamparter Committed by Herbert Xu

crypto: crypto4xx - fix missing irq devname

crypto4xx_device's name variable is not set to anything.
The common devname for request_irq seems to be the module
name. This will fix the seemingly anonymous interrupt
entry in /proc/interrupts for crypto4xx.
Signed-off-by: default avatarChristian Lamparter <chunkeey@gmail.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent b66c685a
...@@ -1370,7 +1370,7 @@ static int crypto4xx_probe(struct platform_device *ofdev) ...@@ -1370,7 +1370,7 @@ static int crypto4xx_probe(struct platform_device *ofdev)
rc = request_irq(core_dev->irq, is_revb ? rc = request_irq(core_dev->irq, is_revb ?
crypto4xx_ce_interrupt_handler_revb : crypto4xx_ce_interrupt_handler_revb :
crypto4xx_ce_interrupt_handler, 0, crypto4xx_ce_interrupt_handler, 0,
core_dev->dev->name, dev); KBUILD_MODNAME, dev);
if (rc) if (rc)
goto err_request_irq; goto err_request_irq;
......
...@@ -82,7 +82,6 @@ struct pd_uinfo { ...@@ -82,7 +82,6 @@ struct pd_uinfo {
struct crypto4xx_device { struct crypto4xx_device {
struct crypto4xx_core_device *core_dev; struct crypto4xx_core_device *core_dev;
char *name;
void __iomem *ce_base; void __iomem *ce_base;
void __iomem *trng_base; void __iomem *trng_base;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment