Changes in kernel/genarch/src/multiboot/multiboot2.c [3009164:c8cbd39] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/genarch/src/multiboot/multiboot2.c
r3009164 rc8cbd39 41 41 42 42 #define MULTIBOOT2_TAG_ALIGN 8 43 44 static void multiboot2_cmdline(const multiboot2_cmdline_t *module)45 {46 multiboot_cmdline(module->string);47 }48 43 49 44 static void multiboot2_module(const multiboot2_module_t *module) … … 122 117 while (tag->type != MULTIBOOT2_TAG_TERMINATOR) { 123 118 switch (tag->type) { 124 case MULTIBOOT2_TAG_CMDLINE:125 multiboot2_cmdline(&tag->cmdline);126 break;127 119 case MULTIBOOT2_TAG_MODULE: 128 120 multiboot2_module(&tag->module);
Note:
See TracChangeset
for help on using the changeset viewer.