You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Devices described in the devicetree with the following `compatible`
string will now match:
`brcm,bcm2835-rng`
Example devicetree .dts:
```dts
&some_bus {
rng@7e104000 {
compatible = "brcm,bcm2835-rng";
reg = <0x7e104000 0x10>;
};
rng@7e104040 {
compatible = "brcm,bcm2835-rng";
reg = <0x7e104040 0x10>;
};
};
```
This will instantiate two hardware random-number generator devices.
Signed-off-by: Sven Van Asbroeck <thesven73@gmail.com>
0 commit comments