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>
This commit is contained in:
parent
656d7e7ee3
commit
7094e8ea4d
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue