aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/platform
diff options
context:
space:
mode:
authorOlof Johansson <olofj@chromium.org>2016-02-16 08:25:16 +0100
committerOlof Johansson <olof@lixom.net>2016-05-11 11:55:47 -0700
commitf929efb06578d2f9afd869911a8b4cc21b2e6e73 (patch)
treec449a90839f98ddf9381bcf88ddc851c506b67dd /drivers/platform
parentplatform/chrome: pstore: probe for ramoops buffer using acpi (diff)
downloadlinux-dev-f929efb06578d2f9afd869911a8b4cc21b2e6e73.tar.xz
linux-dev-f929efb06578d2f9afd869911a8b4cc21b2e6e73.zip
platform/chrome: pstore: Move to larger record size.
Accidentally specified a smaller record size, bring it back to the same size as we had when we used the config file. Signed-off-by: Olof Johansson <olofj@chromium.org> Signed-off-by: Enric Balletbo i Serra <enric.balletbo@collabora.com> Reviewed-by: Sameer Nanda <snanda@chromium.org> Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'drivers/platform')
-rw-r--r--drivers/platform/chrome/chromeos_pstore.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/chrome/chromeos_pstore.c b/drivers/platform/chrome/chromeos_pstore.c
index ca001926ad40..308a853ac4f1 100644
--- a/drivers/platform/chrome/chromeos_pstore.c
+++ b/drivers/platform/chrome/chromeos_pstore.c
@@ -59,7 +59,7 @@ MODULE_DEVICE_TABLE(dmi, chromeos_pstore_dmi_table);
static struct ramoops_platform_data chromeos_ramoops_data = {
.mem_size = 0x100000,
.mem_address = 0xf00000,
- .record_size = 0x20000,
+ .record_size = 0x40000,
.console_size = 0x20000,
.ftrace_size = 0x20000,
.dump_oops = 1,