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

Commit 1879f40a authored by Álvaro Fernández Rojas's avatar Álvaro Fernández Rojas Committed by Herbert Xu
Browse files

hwrng: bcm63xx - fix non device tree compatibility



Allow building when OF is not enabled as suggested by Florian

Signed-off-by: default avatarÁlvaro Fernández Rojas <noltari@gmail.com>
Reported-by: default avatarFlorian Fainelli <f.fainelli@gmail.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 8888690e
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -130,17 +130,19 @@ static int bcm63xx_rng_probe(struct platform_device *pdev)
	return 0;
}

#ifdef CONFIG_OF
static const struct of_device_id bcm63xx_rng_of_match[] = {
	{ .compatible = "brcm,bcm6368-rng", },
	{},
};
MODULE_DEVICE_TABLE(of, bcm63xx_rng_of_match);
#endif

static struct platform_driver bcm63xx_rng_driver = {
	.probe		= bcm63xx_rng_probe,
	.driver		= {
		.name	= "bcm63xx-rng",
		.of_match_table = bcm63xx_rng_of_match,
		.of_match_table = of_match_ptr(bcm63xx_rng_of_match),
	},
};