hwrng: bcm63xx - fix non device tree compatibility

Allow building when OF is not enabled as suggested by Florian

Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
Reported-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
Álvaro Fernández Rojas 2016-02-21 10:53:35 +01:00 committed by Herbert Xu
parent 8888690ef5
commit 1879f40af7

View file

@ -130,17 +130,19 @@ static int bcm63xx_rng_probe(struct platform_device *pdev)
return 0; return 0;
} }
#ifdef CONFIG_OF
static const struct of_device_id bcm63xx_rng_of_match[] = { static const struct of_device_id bcm63xx_rng_of_match[] = {
{ .compatible = "brcm,bcm6368-rng", }, { .compatible = "brcm,bcm6368-rng", },
{}, {},
}; };
MODULE_DEVICE_TABLE(of, bcm63xx_rng_of_match); MODULE_DEVICE_TABLE(of, bcm63xx_rng_of_match);
#endif
static struct platform_driver bcm63xx_rng_driver = { static struct platform_driver bcm63xx_rng_driver = {
.probe = bcm63xx_rng_probe, .probe = bcm63xx_rng_probe,
.driver = { .driver = {
.name = "bcm63xx-rng", .name = "bcm63xx-rng",
.of_match_table = bcm63xx_rng_of_match, .of_match_table = of_match_ptr(bcm63xx_rng_of_match),
}, },
}; };