From: Álvaro Fernández Rojas Date: Sun, 21 Feb 2016 09:53:35 +0000 (+0100) Subject: hwrng: bcm63xx - fix non device tree compatibility X-Git-Tag: next-20160301~71^2~3 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=1879f40af742b33ee1e09733854b1e89134b977f;p=karo-tx-linux.git 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 Reported-by: Florian Fainelli Signed-off-by: Herbert Xu --- diff --git a/drivers/char/hw_random/bcm63xx-rng.c b/drivers/char/hw_random/bcm63xx-rng.c index 38553f0500c9..ca9c40309757 100644 --- a/drivers/char/hw_random/bcm63xx-rng.c +++ b/drivers/char/hw_random/bcm63xx-rng.c @@ -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), }, };