diff options
author | Theodore Ts'o <tytso@mit.edu> | 2012-07-14 20:27:52 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2012-07-19 10:38:32 -0400 |
commit | c5857ccf293968348e5eb4ebedc68074de3dcda6 (patch) | |
tree | 33b74f247459881a9dfdaafd6eb2756c3894521a /drivers/mfd/ab3100-core.c | |
parent | 27130f0cc3ab97560384da437e4621fc4e94f21c (diff) |
random: remove rand_initialize_irq()
With the new interrupt sampling system, we are no longer using the
timer_rand_state structure in the irq descriptor, so we can stop
initializing it now.
[ Merged in fixes from Sedat to find some last missing references to
rand_initialize_irq() ]
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Signed-off-by: Sedat Dilek <sedat.dilek@gmail.com>
Diffstat (limited to 'drivers/mfd/ab3100-core.c')
-rw-r--r-- | drivers/mfd/ab3100-core.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/mfd/ab3100-core.c b/drivers/mfd/ab3100-core.c index 9522d6bda4f7..1287645b984d 100644 --- a/drivers/mfd/ab3100-core.c +++ b/drivers/mfd/ab3100-core.c | |||
@@ -931,9 +931,6 @@ static int __devinit ab3100_probe(struct i2c_client *client, | |||
931 | 931 | ||
932 | err = request_threaded_irq(client->irq, NULL, ab3100_irq_handler, | 932 | err = request_threaded_irq(client->irq, NULL, ab3100_irq_handler, |
933 | IRQF_ONESHOT, "ab3100-core", ab3100); | 933 | IRQF_ONESHOT, "ab3100-core", ab3100); |
934 | /* This real unpredictable IRQ is of course sampled for entropy */ | ||
935 | rand_initialize_irq(client->irq); | ||
936 | |||
937 | if (err) | 934 | if (err) |
938 | goto exit_no_irq; | 935 | goto exit_no_irq; |
939 | 936 | ||