From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:50825) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TWocj-0007C0-Nb for qemu-devel@nongnu.org; Fri, 09 Nov 2012 08:27:55 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TWocg-0002mF-ND for qemu-devel@nongnu.org; Fri, 09 Nov 2012 08:27:53 -0500 Received: from mx1.redhat.com ([209.132.183.28]:25206) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TWocg-0002m5-Dk for qemu-devel@nongnu.org; Fri, 09 Nov 2012 08:27:50 -0500 From: Amit Shah Date: Fri, 9 Nov 2012 14:27:31 +0100 Message-Id: <24c7735b460164617d102aa44fdf669cd29f9182.1352466944.git.amit.shah@redhat.com> In-Reply-To: References: In-Reply-To: References: Subject: [Qemu-devel] [PATCH 3/3] virtio-rng: fix typos, comments List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Anthony Liguori Cc: Amit Shah , pbonzini@redhat.com, hpa@zytor.com, qemu list , afaerber@suse.de Fix typos and update comments to match current implementation. Signed-off-by: Amit Shah --- hw/virtio-rng.c | 1 - include/qemu/rng.h | 6 +++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/hw/virtio-rng.c b/hw/virtio-rng.c index bb19cfa..290b2b6 100644 --- a/hw/virtio-rng.c +++ b/hw/virtio-rng.c @@ -23,7 +23,6 @@ typedef struct VirtIORNG { /* Only one vq - guest puts buffer(s) on it when it needs entropy */ VirtQueue *vq; - /* Config data for the device -- currently only chardev */ VirtIORNGConf *conf; RngBackend *rng; diff --git a/include/qemu/rng.h b/include/qemu/rng.h index 7e9d672..9836463 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 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 -- 1.7.7.6