Home
last modified time | relevance | path

Searched refs:einj_buf (Results 1 – 1 of 1) sorted by relevance

/linux/drivers/acpi/apei/
H A Deinj-core.c799 static char einj_buf[32]; variable
845 return simple_read_from_buffer(buf, count, ppos, einj_buf, strlen(einj_buf)); in error_type_get()
885 if (count > sizeof(einj_buf) - 1) in error_type_set()
888 memset(einj_buf, 0, sizeof(einj_buf)); in error_type_set()
889 if (copy_from_user(einj_buf, buf, count)) in error_type_set()
892 if (strncmp(einj_buf, "V2_", 3) == 0) { in error_type_set()
893 if (!sscanf(einj_buf, "V2_%llx", &val)) in error_type_set()
897 if (!sscanf(einj_buf, "%llx", &val)) in error_type_set()