projects
/
firefly-linux-kernel-4.4.55.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
656d7e7
)
linux-next: build failure after merge of the crypto tree
author
Herbert Xu
<herbert@gondor.apana.org.au>
Tue, 17 Mar 2015 11:11:31 +0000
(22:11 +1100)
committer
Herbert Xu
<herbert@gondor.apana.org.au>
Tue, 17 Mar 2015 11:32:05 +0000
(22:32 +1100)
crypto: img-hash - Add missing semicolon to fix build error
There is a missing semicolon after MODULE_DEVICE_TABLE.
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
drivers/crypto/img-hash.c
patch
|
blob
|
history
diff --git
a/drivers/crypto/img-hash.c
b/drivers/crypto/img-hash.c
index 027417273649ec8ee0952fe91fd0bc0692b315ba..fec61fc09f0860e44b2be3e75c52d3c457078ab8 100644
(file)
--- a/
drivers/crypto/img-hash.c
+++ b/
drivers/crypto/img-hash.c
@@
-873,7
+873,7
@@
static const struct of_device_id img_hash_match[] = {
{ .compatible = "img,hash-accelerator" },
{}
};
-MODULE_DEVICE_TABLE(of, img_hash_match)
+MODULE_DEVICE_TABLE(of, img_hash_match)
;
static int img_hash_probe(struct platform_device *pdev)
{