mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-08 03:40:35 +09:00
ANDROID: pstore/ram: Add ramoops_console_write_buf api
Allow writing into the ramoops console buffer. Change-Id: Iff0d69b562e4dae33ea7f8d19412227bebb17e47 Signed-off-by: Arve Hjønnevåg <arve@android.com>
This commit is contained in:
committed by
Dmitry Shmidt
parent
f353d4f802
commit
085351ff20
@@ -549,6 +549,12 @@ static int ramoops_parse_dt(struct platform_device *pdev,
|
||||
return 0;
|
||||
}
|
||||
|
||||
void notrace ramoops_console_write_buf(const char *buf, size_t size)
|
||||
{
|
||||
struct ramoops_context *cxt = &oops_cxt;
|
||||
persistent_ram_write(cxt->cprz, buf, size);
|
||||
}
|
||||
|
||||
static int ramoops_probe(struct platform_device *pdev)
|
||||
{
|
||||
struct device *dev = &pdev->dev;
|
||||
|
||||
@@ -71,6 +71,8 @@ void persistent_ram_free_old(struct persistent_ram_zone *prz);
|
||||
ssize_t persistent_ram_ecc_string(struct persistent_ram_zone *prz,
|
||||
char *str, size_t len);
|
||||
|
||||
void ramoops_console_write_buf(const char *buf, size_t size);
|
||||
|
||||
/*
|
||||
* Ramoops platform data
|
||||
* @mem_size memory size for ramoops
|
||||
|
||||
Reference in New Issue
Block a user