Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1338959 > unrolled thread

[PATCH] hw_random: brcm63xx-rng: fix non device tree compatibility

Started byÁlvaro Fernández Rojas <noltari@gmail.com>
First post2016-02-21 20:20 +0100
Last post2016-02-21 20:20 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH] hw_random: brcm63xx-rng: fix non device tree compatibility Álvaro Fernández Rojas   <noltari@gmail.com> - 2016-02-21 20:20 +0100

#1338959 — [PATCH] hw_random: brcm63xx-rng: fix non device tree compatibility

FromÁlvaro Fernández Rojas <noltari@gmail.com>
Date2016-02-21 20:20 +0100
Subject[PATCH] hw_random: brcm63xx-rng: fix non device tree compatibility
Message-ID<r4HHX-2e1-1@gated-at.bofh.it>
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

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web