summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authormbalmer <mbalmer@NetBSD.org>2009-12-23 09:17:40 +0000
committermbalmer <mbalmer@NetBSD.org>2009-12-23 09:17:40 +0000
commita72f71643dc9bbccd0aa515dc13d7b33fbcdaba3 (patch)
tree15623eca3a97e06cd57f6015dcc8f5c0bffa73b6 /sys
parent8a65aabe5b370f516bf22a5722113c1ea0cee13d (diff)
Fix typo in comments, no code change.
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/atari/conf/MILAN.in4
-rw-r--r--sys/fs/udf/ecma167-udf.h8
-rw-r--r--sys/fs/udf/udf_subr.c12
3 files changed, 12 insertions, 12 deletions
diff --git a/sys/arch/atari/conf/MILAN.in b/sys/arch/atari/conf/MILAN.in
index a35f8685783..4011d90842e 100644
--- a/sys/arch/atari/conf/MILAN.in
+++ b/sys/arch/atari/conf/MILAN.in
@@ -1,5 +1,5 @@
#
-# $NetBSD: MILAN.in,v 1.22 2009/01/24 00:19:47 abs Exp $
+# $NetBSD: MILAN.in,v 1.23 2009/12/23 09:17:41 mbalmer Exp $
#
# Milan
#
@@ -61,7 +61,7 @@ fdisa0 at fdcisa0 drive 0
# provided by the PCI_ISA bridge on the Milan. CDROM's are OK, but the data
# on the disk is swapped :-( Now luckily, both the Milan and HDDRIVER
# developers have thought up a solution, you can make a byteswapped disk
-# during the partioning with HDDRIVER and TOS supports booting from it!
+# during the partitioning with HDDRIVER and TOS supports booting from it!
# Ok, now you have to choose:
# - If _none_ of your disks are marked byteswapped by HDDRIVER, choose
# the MILAN-ISAIDE version.
diff --git a/sys/fs/udf/ecma167-udf.h b/sys/fs/udf/ecma167-udf.h
index 9aff8a208ca..3a9891a9f22 100644
--- a/sys/fs/udf/ecma167-udf.h
+++ b/sys/fs/udf/ecma167-udf.h
@@ -1,4 +1,4 @@
-/* $NetBSD: ecma167-udf.h,v 1.12 2009/05/18 20:51:03 reinoud Exp $ */
+/* $NetBSD: ecma167-udf.h,v 1.13 2009/12/23 09:17:41 mbalmer Exp $ */
/*-
* Copyright (c) 2003, 2004, 2005, 2006, 2008, 2009
@@ -483,8 +483,8 @@ union udf_pmap {
/* Sparing Map Entry [UDF 2.01/2.2.11] */
struct spare_map_entry {
- uint32_t org; /* partion relative address */
- uint32_t map; /* absolute disc address (!) can be in partion, but doesn't have to be */
+ uint32_t org; /* partition relative address */
+ uint32_t map; /* absolute disc address (!) can be in partition, but doesn't have to be */
} __packed;
@@ -564,7 +564,7 @@ struct part_desc {
uint8_t contents_use[128];
} _impl_use;
uint32_t access_type; /* R/W, WORM etc. */
- uint32_t start_loc; /* start of partion with given length */
+ uint32_t start_loc; /* start of partition with given length */
uint32_t part_len;
struct regid imp_id;
uint8_t imp_use[128];
diff --git a/sys/fs/udf/udf_subr.c b/sys/fs/udf/udf_subr.c
index c57441f3714..e39bdae2cc4 100644
--- a/sys/fs/udf/udf_subr.c
+++ b/sys/fs/udf/udf_subr.c
@@ -1,4 +1,4 @@
-/* $NetBSD: udf_subr.c,v 1.99 2009/07/27 13:13:33 reinoud Exp $ */
+/* $NetBSD: udf_subr.c,v 1.100 2009/12/23 09:17:41 mbalmer Exp $ */
/*
* Copyright (c) 2006, 2008 Reinoud Zandijk
@@ -29,7 +29,7 @@
#include <sys/cdefs.h>
#ifndef lint
-__KERNEL_RCSID(0, "$NetBSD: udf_subr.c,v 1.99 2009/07/27 13:13:33 reinoud Exp $");
+__KERNEL_RCSID(0, "$NetBSD: udf_subr.c,v 1.100 2009/12/23 09:17:41 mbalmer Exp $");
#endif /* not lint */
@@ -1022,7 +1022,7 @@ udf_process_vds_descriptor(struct udf_mount *ump, union dscrptr *dscr)
/*
* BUGALERT: some rogue implementations use random physical
- * partion numbers to break other implementations so lookup
+ * partition numbers to break other implementations so lookup
* the number.
*/
raw_phys_part = udf_rw16(dscr->pd.part_num);
@@ -1967,7 +1967,7 @@ udf_process_vds(struct udf_mount *ump) {
/*
* BUGALERT: some rogue implementations use random physical
- * partion numbers to break other implementations so lookup
+ * partition numbers to break other implementations so lookup
* the number.
*/
for (phys_part = 0; phys_part < UDF_PARTITIONS; phys_part++) {
@@ -2051,7 +2051,7 @@ udf_process_vds(struct udf_mount *ump) {
}
/*
- * Determine sheduler error behaviour. For virtual partions, update
+ * Determine sheduler error behaviour. For virtual partitions, update
* the trackinfo; for sparable partitions replace a whole block on the
* sparable table. Allways requeue.
*/
@@ -3226,7 +3226,7 @@ udf_read_vds_tables(struct udf_mount *ump)
if (error)
return error;
- /* also read in metadata partion spacebitmap if defined */
+ /* also read in metadata partition spacebitmap if defined */
error = udf_read_metadata_partition_spacetable(ump);
return error;
}