diff options
Diffstat (limited to 'include/linux/pstore.h')
-rw-r--r-- | include/linux/pstore.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/linux/pstore.h b/include/linux/pstore.h index b2f1d97f6909..12be8f193d09 100644 --- a/include/linux/pstore.h +++ b/include/linux/pstore.h | |||
@@ -39,9 +39,10 @@ struct pstore_info { | |||
39 | int (*close)(struct pstore_info *psi); | 39 | int (*close)(struct pstore_info *psi); |
40 | ssize_t (*read)(u64 *id, enum pstore_type_id *type, | 40 | ssize_t (*read)(u64 *id, enum pstore_type_id *type, |
41 | struct timespec *time, struct pstore_info *psi); | 41 | struct timespec *time, struct pstore_info *psi); |
42 | u64 (*write)(enum pstore_type_id type, size_t size, | 42 | u64 (*write)(enum pstore_type_id type, int part, |
43 | size_t size, struct pstore_info *psi); | ||
44 | int (*erase)(enum pstore_type_id type, u64 id, | ||
43 | struct pstore_info *psi); | 45 | struct pstore_info *psi); |
44 | int (*erase)(u64 id, struct pstore_info *psi); | ||
45 | void *data; | 46 | void *data; |
46 | }; | 47 | }; |
47 | 48 | ||