diff --git a/[refs] b/[refs] index 4d8024963b0c..4c4d004b834d 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 6988d647231d284733f6c8bfea473a17dccdd39f +refs/heads/master: 41309b7a22805f1650c600723d729af453d52719 diff --git a/trunk/arch/sh/kernel/setup.c b/trunk/arch/sh/kernel/setup.c index 58bff45d1156..1a0e946679a4 100644 --- a/trunk/arch/sh/kernel/setup.c +++ b/trunk/arch/sh/kernel/setup.c @@ -211,13 +211,16 @@ void __init __add_active_range(unsigned int nid, unsigned long start_pfn, } /* - * We don't know which RAM region contains kernel data, - * so we try it repeatedly and let the resource manager - * test it. + * We don't know which RAM region contains kernel data or + * the reserved crashkernel region, so try it repeatedly + * and let the resource manager test it. */ request_resource(res, &code_resource); request_resource(res, &data_resource); request_resource(res, &bss_resource); +#ifdef CONFIG_KEXEC + request_resource(res, &crashk_res); +#endif /* * Also make sure that there is a PMB mapping that covers this diff --git a/trunk/arch/sh/kernel/topology.c b/trunk/arch/sh/kernel/topology.c index ecc2d3d0f54a..38e862852dd0 100644 --- a/trunk/arch/sh/kernel/topology.c +++ b/trunk/arch/sh/kernel/topology.c @@ -11,7 +11,6 @@ #include #include #include -#include #include #include