|
@@ -38,7 +38,6 @@ struct virtrng_info {
|
|
|
bool hwrng_register_done;
|
|
|
};
|
|
|
|
|
|
-static bool probe_done;
|
|
|
|
|
|
static void random_recv_done(struct virtqueue *vq)
|
|
|
{
|
|
@@ -69,13 +68,6 @@ static int virtio_read(struct hwrng *rng, void *buf, size_t size, bool wait)
|
|
|
int ret;
|
|
|
struct virtrng_info *vi = (struct virtrng_info *)rng->priv;
|
|
|
|
|
|
- /*
|
|
|
- * Don't ask host for data till we're setup. This call can
|
|
|
- * happen during hwrng_register(), after commit d9e7972619.
|
|
|
- */
|
|
|
- if (unlikely(!probe_done))
|
|
|
- return 0;
|
|
|
-
|
|
|
if (!vi->busy) {
|
|
|
vi->busy = true;
|
|
|
init_completion(&vi->have_data);
|
|
@@ -137,7 +129,6 @@ static int probe_common(struct virtio_device *vdev)
|
|
|
return err;
|
|
|
}
|
|
|
|
|
|
- probe_done = true;
|
|
|
return 0;
|
|
|
}
|
|
|
|