aboutsummaryrefslogtreecommitdiff
path: root/include/qemu/rng.h
diff options
context:
space:
mode:
authorAmit Shah <amit.shah@redhat.com>2012-11-21 11:21:21 +0530
committerAnthony Liguori <aliguori@us.ibm.com>2012-11-26 14:26:37 -0600
commit42015c9acb9fb418c97c42f6e0d44c84999c769d (patch)
treed4eda87582843a5170af630c2b5682b892863bcc /include/qemu/rng.h
parent8cc677435498561d8fe213bb44a02cf4f75cc685 (diff)
virtio-rng: fix typos, comments
Fix typos, whitespace and update comments to match current implementation. Signed-off-by: Amit Shah <amit.shah@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'include/qemu/rng.h')
-rw-r--r--include/qemu/rng.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/qemu/rng.h b/include/qemu/rng.h
index 7e9d6723ff..d094bf8d4c 100644
--- a/include/qemu/rng.h
+++ b/include/qemu/rng.h
@@ -61,10 +61,10 @@ struct RngBackend
* This function is used by the front-end to request entropy from an entropy
* source. This function can be called multiple times before @receive_entropy
* is invoked with different values of @receive_entropy and @opaque. The
- * backend will queue each request and handle appropriate.
+ * backend will queue each request and handle appropriately.
*
* The backend does not need to pass the full amount of data to @receive_entropy
- * but will pass at a value greater than 0.
+ * but will pass a value greater than 0.
*/
void rng_backend_request_entropy(RngBackend *s, size_t size,
EntropyReceiveFunc *receive_entropy,
@@ -87,7 +87,7 @@ void rng_backend_cancel_requests(RngBackend *s);
*
* This function will open the backend if it is not already open. Calling this
* function on an already opened backend will not result in an error.
- */
+ */
void rng_backend_open(RngBackend *s, Error **errp);
#endif