aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/linux/pstore.h6
-rw-r--r--include/linux/pstore_ram.h1
2 files changed, 7 insertions, 0 deletions
diff --git a/include/linux/pstore.h b/include/linux/pstore.h
index 120443b0fda..c892587d9b8 100644
--- a/include/linux/pstore.h
+++ b/include/linux/pstore.h
@@ -24,6 +24,10 @@
24 24
25#include <linux/time.h> 25#include <linux/time.h>
26#include <linux/kmsg_dump.h> 26#include <linux/kmsg_dump.h>
27#include <linux/mutex.h>
28#include <linux/types.h>
29#include <linux/spinlock.h>
30#include <linux/errno.h>
27 31
28/* types */ 32/* types */
29enum pstore_type_id { 33enum pstore_type_id {
@@ -34,6 +38,8 @@ enum pstore_type_id {
34 PSTORE_TYPE_UNKNOWN = 255 38 PSTORE_TYPE_UNKNOWN = 255
35}; 39};
36 40
41struct module;
42
37struct pstore_info { 43struct pstore_info {
38 struct module *owner; 44 struct module *owner;
39 char *name; 45 char *name;
diff --git a/include/linux/pstore_ram.h b/include/linux/pstore_ram.h
index af848e1593b..ba2b211aaa8 100644
--- a/include/linux/pstore_ram.h
+++ b/include/linux/pstore_ram.h
@@ -24,6 +24,7 @@
24#include <linux/init.h> 24#include <linux/init.h>
25 25
26struct persistent_ram_buffer; 26struct persistent_ram_buffer;
27struct rs_control;
27 28
28struct persistent_ram_zone { 29struct persistent_ram_zone {
29 phys_addr_t paddr; 30 phys_addr_t paddr;