projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3947b33
)
hwrng: bcm63xx - add device tree support
author
Álvaro Fernández Rojas
<
[email protected]
>
Sun, 17 Jan 2016 09:03:55 +0000
(10:03 +0100)
committer
Herbert Xu
<
[email protected]
>
Mon, 25 Jan 2016 14:42:08 +0000
(22:42 +0800)
Adds device tree support for BCM6368, which seems to be the only BCM63xx with
bcm63xx-rng support.
Signed-off-by: Álvaro Fernández Rojas <
[email protected]
>
Reviewed-by: Florian Fainelli <
[email protected]
>
Signed-off-by: Herbert Xu <
[email protected]
>
drivers/char/hw_random/bcm63xx-rng.c
patch
|
blob
|
history
diff --git
a/drivers/char/hw_random/bcm63xx-rng.c
b/drivers/char/hw_random/bcm63xx-rng.c
index c303f302fb0ba76232be3806ab3951f726226fca..38553f0500c90955b2f188fd54ff5548eb16786b 100644
(file)
--- a/
drivers/char/hw_random/bcm63xx-rng.c
+++ b/
drivers/char/hw_random/bcm63xx-rng.c
@@
-130,10
+130,17
@@
static int bcm63xx_rng_probe(struct platform_device *pdev)
return 0;
}
+static const struct of_device_id bcm63xx_rng_of_match[] = {
+ { .compatible = "brcm,bcm6368-rng", },
+ {},
+};
+MODULE_DEVICE_TABLE(of, bcm63xx_rng_of_match);
+
static struct platform_driver bcm63xx_rng_driver = {
.probe = bcm63xx_rng_probe,
.driver = {
.name = "bcm63xx-rng",
+ .of_match_table = bcm63xx_rng_of_match,
},
};