From 4a4358cfc2e64172ba01970f55644eef6a96a333 Mon Sep 17 00:00:00 2001 From: James H Edwards Date: Sun, 3 Apr 2016 11:47:05 -0700 Subject: [PATCH] Update initcall.md Change a single misspelled word Original line "Acutally the main point of the `initcall` mechanism is" New line "Actually the main point of the `initcall` mechanism is" Change: Acutally changed to Actually There are no other changes --- Concepts/initcall.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Concepts/initcall.md b/Concepts/initcall.md index a93a1e3..287e6fe 100644 --- a/Concepts/initcall.md +++ b/Concepts/initcall.md @@ -16,7 +16,7 @@ or arch_initcall(init_pit_clocksource); ``` -in some parts of the Linux kernel. Before we will see how this mechanism is implemented in the Linux kernel, we must know actually what is it and how the Linux kernel uses it. Definitions like these represent a [callback](https://en.wikipedia.org/wiki/Callback_%28computer_programming%29) function which is will be called during initialization of the Linux kernel of right after. Acutally the main point of the `initcall` mechanism is to determine correct order of the built-in modules and subsystems initialization. For example let's look at the following function: +in some parts of the Linux kernel. Before we will see how this mechanism is implemented in the Linux kernel, we must know actually what is it and how the Linux kernel uses it. Definitions like these represent a [callback](https://en.wikipedia.org/wiki/Callback_%28computer_programming%29) function which is will be called during initialization of the Linux kernel of right after. Actually the main point of the `initcall` mechanism is to determine correct order of the built-in modules and subsystems initialization. For example let's look at the following function: ```C static int __init nmi_warning_debugfs(void)