Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -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)
{
{