diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2014-12-07 18:20:47 +0100 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2014-12-07 18:20:47 +0100 |
commit | 887d02274d367018873a6533c658708cb0056be7 (patch) | |
tree | c8f876a3c686c9d079b3e55f8f6dcfd6088ac0a9 /sys/src/9/pc/ethervirtio.c | |
parent | 6b5d69391cb9351b49c480a3cc40f67e184a8d39 (diff) |
ethervirtio: fix missing */
Diffstat (limited to 'sys/src/9/pc/ethervirtio.c')
-rw-r--r-- | sys/src/9/pc/ethervirtio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/9/pc/ethervirtio.c b/sys/src/9/pc/ethervirtio.c index 69f2713e6..9392f327d 100644 --- a/sys/src/9/pc/ethervirtio.c +++ b/sys/src/9/pc/ethervirtio.c @@ -543,7 +543,7 @@ pciprobe(int typ) for(p = nil; p = pcimatch(p, 0, 0);){ if(p->vid != 0x1AF4) continue; - /* the two possible DIDs for virtio-net + /* the two possible DIDs for virtio-net */ if(p->did != 0x1000 && p->did != 0x1041) continue; /* non-transitional devices will have a revision > 0 */ |