summaryrefslogtreecommitdiffstats
path: root/sys/dev/softraid.c
diff options
context:
space:
mode:
authortedu <tedu@openbsd.org>2007-03-26 01:44:06 +0000
committertedu <tedu@openbsd.org>2007-03-26 01:44:06 +0000
commitf5c7759ac59848d23a1c57b10217e085aa668c78 (patch)
tree50f432be32c438276d0ec65c69060a092bea9d2d /sys/dev/softraid.c
parenti shouldn't be shy about commiting ahci to this. (diff)
downloadwireguard-openbsd-f5c7759ac59848d23a1c57b10217e085aa668c78.tar.xz
wireguard-openbsd-f5c7759ac59848d23a1c57b10217e085aa668c78.zip
typos in comments
Diffstat (limited to 'sys/dev/softraid.c')
-rw-r--r--sys/dev/softraid.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/softraid.c b/sys/dev/softraid.c
index 55554e44c70..5e995ffc367 100644
--- a/sys/dev/softraid.c
+++ b/sys/dev/softraid.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: softraid.c,v 1.7 2007/03/24 05:15:19 tedu Exp $ */
+/* $OpenBSD: softraid.c,v 1.8 2007/03/26 01:44:06 tedu Exp $ */
/*
* Copyright (c) 2007 Marco Peereboom <marco@peereboom.us>
*
@@ -804,7 +804,7 @@ sr_parse_chunks(struct sr_softc *sc, char *lst, struct sr_chunk_head *cl)
s = e = lst;
ch_prev = NULL;
- /* make sure we have a valid device lst like /dev/sdNa,/dev/sdNNa */
+ /* make sure we have a valid device list like /dev/sdNa,/dev/sdNNa */
while (*e != '\0') {
if (*e == ',')
s = e + 1;
@@ -1113,7 +1113,7 @@ sr_raid1_start_stop(struct sr_workunit *wu)
/* START */
if (sd->sd_vol.sv_meta.svm_status == BIOC_SVOFFLINE) {
/* bring volume online */
- /* XXX check to see if volume can be brough online */
+ /* XXX check to see if volume can be brought online */
sd->sd_vol.sv_meta.svm_status = BIOC_SVONLINE;
}
rv = 0;