diff options
Diffstat (limited to 'fs/pstore')
-rw-r--r-- | fs/pstore/ram.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/pstore/ram.c b/fs/pstore/ram.c index 4027c2065842..fa8cef2cca3a 100644 --- a/fs/pstore/ram.c +++ b/fs/pstore/ram.c | |||
@@ -421,11 +421,11 @@ static int ramoops_probe(struct platform_device *pdev) | |||
421 | goto fail_out; | 421 | goto fail_out; |
422 | } | 422 | } |
423 | 423 | ||
424 | if (!is_power_of_2(pdata->record_size)) | 424 | if (pdata->record_size && !is_power_of_2(pdata->record_size)) |
425 | pdata->record_size = rounddown_pow_of_two(pdata->record_size); | 425 | pdata->record_size = rounddown_pow_of_two(pdata->record_size); |
426 | if (!is_power_of_2(pdata->console_size)) | 426 | if (pdata->console_size && !is_power_of_2(pdata->console_size)) |
427 | pdata->console_size = rounddown_pow_of_two(pdata->console_size); | 427 | pdata->console_size = rounddown_pow_of_two(pdata->console_size); |
428 | if (!is_power_of_2(pdata->ftrace_size)) | 428 | if (pdata->ftrace_size && !is_power_of_2(pdata->ftrace_size)) |
429 | pdata->ftrace_size = rounddown_pow_of_two(pdata->ftrace_size); | 429 | pdata->ftrace_size = rounddown_pow_of_two(pdata->ftrace_size); |
430 | 430 | ||
431 | cxt->dump_read_cnt = 0; | 431 | cxt->dump_read_cnt = 0; |