Skip to content

Commit

Permalink
linux-next: build failure after merge of the crypto tree
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Herbert Xu committed Mar 17, 2015
1 parent 656d7e7 commit 7094e8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/crypto/img-hash.c
Original file line number Diff line number Diff line change
@@ -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)
{

0 comments on commit 7094e8e

Please sign in to comment.