diff options
| author | Jim Cromie <[email protected]> | 2020-07-19 17:10:42 -0600 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2020-07-24 17:00:08 +0200 |
| commit | fa0805207066ce3bdc414fb14fda95a3b7ba87bb (patch) | |
| tree | 4679d161cfa9475169c6d742531020369d94ce5e | |
| parent | e20e310c8195ef36d46cd4a768a79e1ea93c20a4 (diff) | |
dyndbg-docs: initialization is done early, not arch
since cf964976484 in 2012, initialization is done with early_initcall,
update the Docs, which still say arch_initcall.
Acked-by: <[email protected]>
Signed-off-by: Jim Cromie <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
| -rw-r--r-- | Documentation/admin-guide/dynamic-debug-howto.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/admin-guide/dynamic-debug-howto.rst b/Documentation/admin-guide/dynamic-debug-howto.rst index 57108f64afc8..1423af580bed 100644 --- a/Documentation/admin-guide/dynamic-debug-howto.rst +++ b/Documentation/admin-guide/dynamic-debug-howto.rst @@ -250,8 +250,8 @@ the syntax described above, but must not exceed 1023 characters. Your bootloader may impose lower limits. These ``dyndbg`` params are processed just after the ddebug tables are -processed, as part of the arch_initcall. Thus you can enable debug -messages in all code run after this arch_initcall via this boot +processed, as part of the early_initcall. Thus you can enable debug +messages in all code run after this early_initcall via this boot parameter. On an x86 system for example ACPI enablement is a subsys_initcall and:: |