|
@@ -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,
|
|
|
},
|
|
|
};
|
|
|
|