diff options
Diffstat (limited to 'src/include/console.h')
| -rw-r--r-- | src/include/console.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/include/console.h b/src/include/console.h index fd1382b4a..9addd5265 100644 --- a/src/include/console.h +++ b/src/include/console.h @@ -21,19 +21,19 @@ * Must be made part of the console drivers table by using * #__console_driver. * - * @note Consoles that cannot be used before their INIT_FN() has - * completed should set #disabled=1 initially. This allows other - * console devices to still be used to print out early debugging - * messages. + * @note Consoles that cannot be used before their initialisation + * function has completed should set #disabled=1 initially. This + * allows other console devices to still be used to print out early + * debugging messages. * */ struct console_driver { /** Console is disabled. * * The console's putchar(), putline(), getchar() and iskey() - * methods will not be called while #disabled==1. Typically the - * console's initialisation functions (called via INIT_FN()) - * will set #disabled=0 upon completion. + * methods will not be called while #disabled==1. Typically + * the console's initialisation functions will set #disabled=0 + * upon completion. * */ int disabled; |
