diff options
author | Felix Fietkau <nbd@nbd.name> | 2017-02-06 11:41:23 +0100 |
---|---|---|
committer | Felix Fietkau <nbd@nbd.name> | 2017-02-06 11:56:57 +0100 |
commit | 478be1d371adde09c1b13421fd51d0e209f0b625 (patch) | |
tree | a992f30d9aa49dc3b7c8890f50d93702925b5cd9 /target | |
parent | 9c18235b3a6b6c61d4517baedf3d775047885f7d (diff) | |
download | upstream-478be1d371adde09c1b13421fd51d0e209f0b625.tar.gz upstream-478be1d371adde09c1b13421fd51d0e209f0b625.tar.bz2 upstream-478be1d371adde09c1b13421fd51d0e209f0b625.zip |
kernel: fix crashlog build error on 4.9
Signed-off-by: Felix Fietkau <nbd@nbd.name>
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/generic/patches-4.9/930-crashlog.patch | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/generic/patches-4.9/930-crashlog.patch b/target/linux/generic/patches-4.9/930-crashlog.patch index 7877f5608c..a2e2180706 100644 --- a/target/linux/generic/patches-4.9/930-crashlog.patch +++ b/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; |