Browse Source

kernel: fix crashlog build error on 4.9

Signed-off-by: Felix Fietkau <[email protected]>
Felix Fietkau 9 years ago
parent
commit
478be1d371
1 changed files with 2 additions and 2 deletions
  1. 2 2
      target/linux/generic/patches-4.9/930-crashlog.patch

+ 2 - 2
target/linux/generic/patches-4.9/930-crashlog.patch

@@ -212,8 +212,8 @@
 +		crashlog_printf("Modules:");
 +		list_for_each_entry(m, crashlog_modules, list) {
 +			crashlog_printf("\t%s@%p+%x", m->name,
-+			m->module_core, m->core_size,
-+			m->module_init, m->init_size);
++			m->core_layout.base, m->core_layout.size,
++			m->init_layout.base, m->init_layout.size);
 +		}
 +		crashlog_printf("\n");
 +		first = false;