|
@@ -429,6 +429,7 @@ static int ramoops_probe(struct platform_device *pdev)
|
|
pr_err("memory size too small, minimum is %zu\n",
|
|
pr_err("memory size too small, minimum is %zu\n",
|
|
cxt->console_size + cxt->record_size +
|
|
cxt->console_size + cxt->record_size +
|
|
cxt->ftrace_size);
|
|
cxt->ftrace_size);
|
|
|
|
+ err = -EINVAL;
|
|
goto fail_cnt;
|
|
goto fail_cnt;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -446,6 +447,7 @@ static int ramoops_probe(struct platform_device *pdev)
|
|
spin_lock_init(&cxt->pstore.buf_lock);
|
|
spin_lock_init(&cxt->pstore.buf_lock);
|
|
if (!cxt->pstore.buf) {
|
|
if (!cxt->pstore.buf) {
|
|
pr_err("cannot allocate pstore buffer\n");
|
|
pr_err("cannot allocate pstore buffer\n");
|
|
|
|
+ err = -ENOMEM;
|
|
goto fail_clear;
|
|
goto fail_clear;
|
|
}
|
|
}
|
|
|
|
|