mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] hw_random: brcm63xx-rng: fix non device tree compatibility
@ 2016-02-21  9:53 Álvaro Fernández Rojas
  2016-02-27 19:34 ` Herbert Xu
  0 siblings, 1 reply; 2+ messages in thread
From: Álvaro Fernández Rojas @ 2016-02-21  9:53 UTC (permalink / raw)
  To: linux-crypto, herbert, linux-kernel, f.fainelli, jogo, cernekee
  Cc: Álvaro Fernández Rojas

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>
---
 drivers/char/hw_random/bcm63xx-rng.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/drivers/char/hw_random/bcm63xx-rng.c b/drivers/char/hw_random/bcm63xx-rng.c
index 38553f0..ca9c403 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),
 	},
 };
 
-- 
1.9.1

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] hw_random: brcm63xx-rng: fix non device tree compatibility
  2016-02-21  9:53 [PATCH] hw_random: brcm63xx-rng: fix non device tree compatibility Álvaro Fernández Rojas
@ 2016-02-27 19:34 ` Herbert Xu
  0 siblings, 0 replies; 2+ messages in thread
From: Herbert Xu @ 2016-02-27 19:34 UTC (permalink / raw)
  To: Álvaro Fernández Rojas
  Cc: linux-crypto, linux-kernel, f.fainelli, jogo, cernekee

On Sun, Feb 21, 2016 at 10:53:35AM +0100, Álvaro Fernández Rojas wrote:
> 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>

Applied.
-- 
Email: Herbert Xu <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-02-27 19:35 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-02-21  9:53 [PATCH] hw_random: brcm63xx-rng: fix non device tree compatibility Álvaro Fernández Rojas
2016-02-27 19:34 ` Herbert Xu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome