From: Stefan Hajnoczi Date: Fri, 1 May 2015 23:12:29 +0000 (+0930) Subject: virtio: fix typo in vring_need_event() doc comment X-Git-Tag: v4.1-rc2~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e412d3a32badcf17541d7443b033769fdf39b545;p=profile%2Fcommon%2Fplatform%2Fkernel%2Flinux-artik7.git virtio: fix typo in vring_need_event() doc comment Here the "other side" refers to the guest or host. Signed-off-by: Stefan Hajnoczi Signed-off-by: Rusty Russell Signed-off-by: Linus Torvalds --- diff --git a/include/uapi/linux/virtio_ring.h b/include/uapi/linux/virtio_ring.h index a3318f3..915980a 100644 --- a/include/uapi/linux/virtio_ring.h +++ b/include/uapi/linux/virtio_ring.h @@ -155,7 +155,7 @@ static inline unsigned vring_size(unsigned int num, unsigned long align) } /* The following is used with USED_EVENT_IDX and AVAIL_EVENT_IDX */ -/* Assuming a given event_idx value from the other size, if +/* Assuming a given event_idx value from the other side, if * we have just incremented index from old to new_idx, * should we trigger an event? */ static inline int vring_need_event(__u16 event_idx, __u16 new_idx, __u16 old)