| 1 | --- a/drivers/char/hw_random/Kconfig |
| 2 | +++ b/drivers/char/hw_random/Kconfig |
| 3 | @@ -188,6 +188,18 @@ config HW_RANDOM_TX4939 |
| 4 | |
| 5 | If unsure, say Y. |
| 6 | |
| 7 | +config HW_RANDOM_MCS814X |
| 8 | + tristate "Moschip MCS814x Random Number Generator" |
| 9 | + depends on HW_RANDOM && ARCH_MCS814X |
| 10 | + ---help--- |
| 11 | + This driver provides kernel-side support for the Random Number |
| 12 | + Generator hardware found on Moschip MCS814x processors. |
| 13 | + |
| 14 | + To compile this driver as a module, choose M here: the |
| 15 | + module will be called mcs814x-rng. |
| 16 | + |
| 17 | + If unusure, say Y. |
| 18 | + |
| 19 | config HW_RANDOM_MXC_RNGA |
| 20 | tristate "Freescale i.MX RNGA Random Number Generator" |
| 21 | depends on HW_RANDOM && ARCH_HAS_RNGA |
| 22 | --- a/drivers/char/hw_random/Makefile |
| 23 | +++ b/drivers/char/hw_random/Makefile |
| 24 | @@ -17,6 +17,7 @@ obj-$(CONFIG_HW_RANDOM_OMAP) += omap-rng |
| 25 | obj-$(CONFIG_HW_RANDOM_PASEMI) += pasemi-rng.o |
| 26 | obj-$(CONFIG_HW_RANDOM_VIRTIO) += virtio-rng.o |
| 27 | obj-$(CONFIG_HW_RANDOM_TX4939) += tx4939-rng.o |
| 28 | +obj-$(CONFIG_HW_RANDOM_MCS814X) += mcs814x-rng.o |
| 29 | obj-$(CONFIG_HW_RANDOM_MXC_RNGA) += mxc-rnga.o |
| 30 | obj-$(CONFIG_HW_RANDOM_OCTEON) += octeon-rng.o |
| 31 | obj-$(CONFIG_HW_RANDOM_NOMADIK) += nomadik-rng.o |
| 32 | |