Skip to content

Commit

Permalink
hwrng: bcm63xx - add device tree support
Browse files Browse the repository at this point in the history
Adds device tree support for BCM6368, which seems to be the only BCM63xx with
bcm63xx-rng support.

Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
  • Loading branch information
Álvaro Fernández Rojas authored and Herbert Xu committed Jan 25, 2016
1 parent 3947b33 commit 7b65170
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions drivers/char/hw_random/bcm63xx-rng.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
};

Expand Down

0 comments on commit 7b65170

Please sign in to comment.