Commit 7094e8ea authored by Herbert Xu's avatar Herbert Xu

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: default avatarStephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 656d7e7e
...@@ -873,7 +873,7 @@ static const struct of_device_id img_hash_match[] = { ...@@ -873,7 +873,7 @@ static const struct of_device_id img_hash_match[] = {
{ .compatible = "img,hash-accelerator" }, { .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) static int img_hash_probe(struct platform_device *pdev)
{ {
......
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