summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 c28fc74..816ab23 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 c291963..64e8faa 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,
OpenPOWER on IntegriCloud