diff options
author | Paul Walmsley <paul@pwsan.com> | 2012-09-23 19:28:27 -0400 |
---|---|---|
committer | Paul Walmsley <paul@pwsan.com> | 2012-09-23 19:28:27 -0400 |
commit | fe47c58ba82c967729c76869a5f10a94c38754f3 (patch) | |
tree | d3a0e62aca6904d839c846f7a94e2d356118ba1f /drivers/char | |
parent | 4848d460a7d4b2b5b22afda16b713cb753affa12 (diff) |
hwrng: OMAP: remove SoC restrictions from driver registration
Remove the SoC restriction code from the OMAP RNG driver. The
integration code in arch/arm/*omap* should handle this. The device
shouldn't be created if it doesn't exist on the currently-booted SoC.
This allows us to remove some OMAP-specific cpu_is_omap*() calls from
the driver. Also, if other OMAP chips have RNGs that can be used
by Linux, there will be no need to modify the driver.
Signed-off-by: Paul Walmsley <paul@pwsan.com>
Cc: Matt Mackall <mpm@selenic.com>
Cc: Herbert Xu <herbert@gondor.apana.org.au>
Acked-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/char')
-rw-r--r-- | drivers/char/hw_random/omap-rng.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/char/hw_random/omap-rng.c b/drivers/char/hw_random/omap-rng.c index 748fcc8892f3..a5effd813abd 100644 --- a/drivers/char/hw_random/omap-rng.c +++ b/drivers/char/hw_random/omap-rng.c | |||
@@ -220,9 +220,6 @@ static struct platform_driver omap_rng_driver = { | |||
220 | 220 | ||
221 | static int __init omap_rng_init(void) | 221 | static int __init omap_rng_init(void) |
222 | { | 222 | { |
223 | if (!cpu_is_omap16xx() && !cpu_is_omap24xx()) | ||
224 | return -ENODEV; | ||
225 | |||
226 | return platform_driver_register(&omap_rng_driver); | 223 | return platform_driver_register(&omap_rng_driver); |
227 | } | 224 | } |
228 | 225 | ||