Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/pci Fix word-o of function name in comment



details:   https://anonhg.NetBSD.org/src/rev/5a7a23c42dae
branches:  trunk
changeset: 938872:5a7a23c42dae
user:      jakllsch <jakllsch%NetBSD.org@localhost>
date:      Thu Sep 17 17:09:59 2020 +0000

description:
Fix word-o of function name in comment

diffstat:

 sys/dev/pci/virtio.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r ec084c0cf71a -r 5a7a23c42dae sys/dev/pci/virtio.c
--- a/sys/dev/pci/virtio.c      Thu Sep 17 17:04:31 2020 +0000
+++ b/sys/dev/pci/virtio.c      Thu Sep 17 17:09:59 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: virtio.c,v 1.41 2020/05/25 07:52:16 yamaguchi Exp $    */
+/*     $NetBSD: virtio.c,v 1.42 2020/09/17 17:09:59 jakllsch Exp $     */
 
 /*
  * Copyright (c) 2010 Minoura Makoto.
@@ -26,7 +26,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: virtio.c,v 1.41 2020/05/25 07:52:16 yamaguchi Exp $");
+__KERNEL_RCSID(0, "$NetBSD: virtio.c,v 1.42 2020/09/17 17:09:59 jakllsch Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -61,7 +61,7 @@
  *     virtio_reset(sc);            // this will stop the device activity
  *     <dequeue finished requests>; // virtio_dequeue() still can be called
  *     <revoke pending requests in the vqs if any>;
- *     virtio_reinit_begin(sc);     // dequeue prohibitted
+ *     virtio_reinit_start(sc);     // dequeue prohibitted
  *     newfeatures = virtio_negotiate_features(sc, requestedfeatures);
  *     <some other initialization>;
  *     virtio_reinit_end(sc);       // device activated; enqueue allowed



Home | Main Index | Thread Index | Old Index