Initialize kconsole data structures * * This is the most basic initialization, almost no * other kernel subsystem is ready yet. * */
| 95 | * |
| 96 | */ |
| 97 | void kconsole_init(void) |
| 98 | { |
| 99 | unsigned int i; |
| 100 | |
| 101 | cmd_init(); |
| 102 | for (i = 0; i < KCONSOLE_HISTORY; i++) |
| 103 | history[i][0] = 0; |
| 104 | } |
| 105 | |
| 106 | /** Register kconsole command. |
| 107 | * |
no test coverage detected