diff options
| author | Herbert Xu <herbert@gondor.apana.org.au> | 2015-03-17 07:11:31 -0400 |
|---|---|---|
| committer | Herbert Xu <herbert@gondor.apana.org.au> | 2015-03-17 07:32:05 -0400 |
| commit | 7094e8ea4da3077ad03eb027fd45a7617dba3d95 (patch) | |
| tree | ead1cb2780229e8531ed0c1e4e6baa8e90aaf1bf | |
| parent | 656d7e7ee3f3dae71862054c0893546d261a1ee7 (diff) | |
linux-next: build failure after merge of the crypto tree
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>
| -rw-r--r-- | drivers/crypto/img-hash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/crypto/img-hash.c b/drivers/crypto/img-hash.c index 027417273649..fec61fc09f08 100644 --- 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[] = { | |||
| 873 | { .compatible = "img,hash-accelerator" }, | 873 | { .compatible = "img,hash-accelerator" }, |
| 874 | {} | 874 | {} |
| 875 | }; | 875 | }; |
| 876 | MODULE_DEVICE_TABLE(of, img_hash_match) | 876 | MODULE_DEVICE_TABLE(of, img_hash_match); |
| 877 | 877 | ||
| 878 | static int img_hash_probe(struct platform_device *pdev) | 878 | static int img_hash_probe(struct platform_device *pdev) |
| 879 | { | 879 | { |
