summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Ruigrok van der Werven <asmodai@FreeBSD.org>2001-02-08 20:28:57 +0000
committerJeroen Ruigrok van der Werven <asmodai@FreeBSD.org>2001-02-08 20:28:57 +0000
commit58d8a85e29b86679b334dbe24cc6491fff172c9f (patch)
tree2ae3a232848c4282295a6505945402e8573b9fa0
parent1d538861ff9fb368743b47dd66df2b4812059f74 (diff)
Notes
-rw-r--r--sys/dev/random/yarrow.c10
-rw-r--r--sys/sys/kobj.h2
2 files changed, 6 insertions, 6 deletions
diff --git a/sys/dev/random/yarrow.c b/sys/dev/random/yarrow.c
index c28fc7474fae..816ab2380472 100644
--- a/sys/dev/random/yarrow.c
+++ b/sys/dev/random/yarrow.c
@@ -214,7 +214,7 @@ random_init(void)
#ifdef DEBUG
mtx_enter(&Giant, MTX_DEF);
- printf("Random initalise finish\n");
+ printf("Random initialise finish\n");
mtx_exit(&Giant, MTX_DEF);
#endif
@@ -226,7 +226,7 @@ random_deinit(void)
{
#ifdef DEBUG
mtx_enter(&Giant, MTX_DEF);
- printf("Random deinitalise\n");
+ printf("Random deinitialise\n");
mtx_exit(&Giant, MTX_DEF);
#endif
@@ -235,7 +235,7 @@ random_deinit(void)
#ifdef DEBUG
mtx_enter(&Giant, MTX_DEF);
- printf("Random deinitalise waiting for thread to terminate\n");
+ printf("Random deinitialise waiting for thread to terminate\n");
mtx_exit(&Giant, MTX_DEF);
#endif
@@ -248,7 +248,7 @@ random_deinit(void)
#ifdef DEBUG
mtx_enter(&Giant, MTX_DEF);
- printf("Random deinitalise removing mutexes\n");
+ printf("Random deinitialise removing mutexes\n");
mtx_exit(&Giant, MTX_DEF);
#endif
@@ -258,7 +258,7 @@ random_deinit(void)
#ifdef DEBUG
mtx_enter(&Giant, MTX_DEF);
- printf("Random deinitalise finish\n");
+ printf("Random deinitialise finish\n");
mtx_exit(&Giant, MTX_DEF);
#endif
}
diff --git a/sys/sys/kobj.h b/sys/sys/kobj.h
index c2919636419d..64e8faaf740e 100644
--- a/sys/sys/kobj.h
+++ b/sys/sys/kobj.h
@@ -116,7 +116,7 @@ void kobj_class_compile_static(kobj_class_t cls, kobj_ops_t ops);
void kobj_class_free(kobj_class_t cls);
/*
- * Allocate memory for and initalise a new object.
+ * Allocate memory for and initialise a new object.
*/
kobj_t kobj_create(kobj_class_t cls,
struct malloc_type *mtype,