summaryrefslogtreecommitdiff
path: root/ANDROID_3.4.5/include/acpi/apei.h
diff options
context:
space:
mode:
authorSrikant Patnaik2015-01-11 12:28:04 +0530
committerSrikant Patnaik2015-01-11 12:28:04 +0530
commit871480933a1c28f8a9fed4c4d34d06c439a7a422 (patch)
tree8718f573808810c2a1e8cb8fb6ac469093ca2784 /ANDROID_3.4.5/include/acpi/apei.h
parent9d40ac5867b9aefe0722bc1f110b965ff294d30d (diff)
downloadFOSSEE-netbook-kernel-source-871480933a1c28f8a9fed4c4d34d06c439a7a422.tar.gz
FOSSEE-netbook-kernel-source-871480933a1c28f8a9fed4c4d34d06c439a7a422.tar.bz2
FOSSEE-netbook-kernel-source-871480933a1c28f8a9fed4c4d34d06c439a7a422.zip
Moved, renamed, and deleted files
The original directory structure was scattered and unorganized. Changes are basically to make it look like kernel structure.
Diffstat (limited to 'ANDROID_3.4.5/include/acpi/apei.h')
-rw-r--r--ANDROID_3.4.5/include/acpi/apei.h46
1 files changed, 0 insertions, 46 deletions
diff --git a/ANDROID_3.4.5/include/acpi/apei.h b/ANDROID_3.4.5/include/acpi/apei.h
deleted file mode 100644
index 04f349d8..00000000
--- a/ANDROID_3.4.5/include/acpi/apei.h
+++ /dev/null
@@ -1,46 +0,0 @@
-/*
- * apei.h - ACPI Platform Error Interface
- */
-
-#ifndef ACPI_APEI_H
-#define ACPI_APEI_H
-
-#include <linux/acpi.h>
-#include <linux/cper.h>
-#include <asm/ioctls.h>
-
-#define APEI_ERST_INVALID_RECORD_ID 0xffffffffffffffffULL
-
-#define APEI_ERST_CLEAR_RECORD _IOW('E', 1, u64)
-#define APEI_ERST_GET_RECORD_COUNT _IOR('E', 2, u32)
-
-#ifdef __KERNEL__
-
-extern bool hest_disable;
-extern int erst_disable;
-#ifdef CONFIG_ACPI_APEI_GHES
-extern bool ghes_disable;
-#else
-#define ghes_disable 1
-#endif
-
-#ifdef CONFIG_ACPI_APEI
-void __init acpi_hest_init(void);
-#else
-static inline void acpi_hest_init(void) { return; }
-#endif
-
-typedef int (*apei_hest_func_t)(struct acpi_hest_header *hest_hdr, void *data);
-int apei_hest_parse(apei_hest_func_t func, void *data);
-
-int erst_write(const struct cper_record_header *record);
-ssize_t erst_get_record_count(void);
-int erst_get_record_id_begin(int *pos);
-int erst_get_record_id_next(int *pos, u64 *record_id);
-void erst_get_record_id_end(void);
-ssize_t erst_read(u64 record_id, struct cper_record_header *record,
- size_t buflen);
-int erst_clear(u64 record_id);
-
-#endif
-#endif